Skip to content

chore: bump temper kernel pin to 804633e2 (observe action params/hints) - #457

Merged
rita-aga merged 2 commits into
mainfrom
claude/temper-pin-observe-params
Jul 26, 2026
Merged

chore: bump temper kernel pin to 804633e2 (observe action params/hints)#457
rita-aga merged 2 commits into
mainfrom
claude/temper-pin-observe-params

Conversation

@rita-aga

@rita-aga rita-aga commented Jul 25, 2026

Copy link
Copy Markdown
Collaborator

Picks up nerdsane/temper#413 — /observe/specs/{entity} now carries each action's typed parameter list and hint. This is the kernel half of Code Mode for katagami sessions (ARN-282/ARN-269 arc): katagami-curation's build_session_message renders a generated action-signature reference from the live specs, replacing hand-maintained procedure prose. Compiles clean; the observe payload change is purely additive (serde defaults both sides).

🤖 Generated with Claude Code

https://claude.ai/code/session_01Vw8tCkfnUW8p149yUNfSEE

Greptile Summary

This PR advances all server and worker Temper dependencies to revision 804633e2 for enriched observe action specifications.

  • Repins the Temper platform, observe, server, runtime, JIT, authorization, and storage crates used by temperpaw.
  • Repins paw-codex-worker's temper-observe dependency to the same revision.
  • Regenerates Cargo.lock so all resolved Temper packages use the new commit.

Confidence Score: 3/5

The PR should not merge until the hardcoded Temper revision expectations are updated, because the existing contract tests will fail against the new manifests.

The dependency pins and lockfile are internally coherent, but multiple repository tests still assert that manifests use the previous Temper commit and will reject the changed revision.

Files Needing Attention: crates/temperpaw/Cargo.toml, crates/paw-codex-worker/Cargo.toml, crates/temperpaw/tests/datadog_observability_contract.rs, crates/temperpaw/tests/paw_fs_hot_path.rs

Important Files Changed

Filename Overview
crates/temperpaw/Cargo.toml Repins eight Temper dependencies coherently, but leaves hardcoded dependency-revision contract tests expecting the old commit.
crates/paw-codex-worker/Cargo.toml Repins temper-observe consistently with temperpaw, but the repository's revision-coherence expectations were not updated.
Cargo.lock Updates every resolved Temper package source to the same 804633e2 revision without changing the listed registry dependency versions.

Fix All in Claude Code Fix All in Codex Fix All in Cursor

Prompt To Fix All With AI
Fix the following 1 code review issue. Work through them one at a time, proposing concise fixes.

---

### Issue 1 of 1
crates/temperpaw/Cargo.toml:14-21
**Stale revision contracts fail tests**

When the dependency-contract tests inspect these changed pins, they compare them with the previous hardcoded revision in `datadog_observability_contract.rs` and `paw_fs_hot_path.rs`, causing their assertions to fail instead of accepting `804633e2c5cab3b0bd334f78bfb5ea23aca1858d`. Update those expected-revision constants alongside this pin.

Reviews (1): Last reviewed commit: "chore: bump temper kernel pin a28fdb2e -..." | Re-trigger Greptile

Greptile also left 1 inline comment on this PR.

Picks up temper PR #413: /observe/specs/{entity} now exposes each action's
typed parameter list and hint. TemperPaw's katagami build_session_message
uses this to render a generated action-signature reference in session
prompts (Code Mode), replacing hand-maintained procedure prose.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Vw8tCkfnUW8p149yUNfSEE
Comment on lines 14 to +21
# Temper platform engine
temper-platform = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-observe = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-server = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e", features = ["observe"] }
temper-runtime = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-jit = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-authz = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-store-postgres = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-store-turso = { git = "https://github.com/nerdsane/temper.git", rev = "a28fdb2ed8b0e1e0ea15a99c3b4a1dfba20e160e" }
temper-platform = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d" }
temper-observe = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d" }
temper-server = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d", features = ["observe"] }
temper-runtime = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d" }
temper-jit = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d" }
temper-authz = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d" }
temper-store-postgres = { git = "https://github.com/nerdsane/temper.git", rev = "804633e2c5cab3b0bd334f78bfb5ea23aca1858d" }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Stale revision contracts fail tests

When the dependency-contract tests inspect these changed pins, they compare them with the previous hardcoded revision in datadog_observability_contract.rs and paw_fs_hot_path.rs, causing their assertions to fail instead of accepting 804633e2c5cab3b0bd334f78bfb5ea23aca1858d. Update those expected-revision constants alongside this pin.

Prompt To Fix With AI
This is a comment left during a code review.
Path: crates/temperpaw/Cargo.toml
Line: 14-21

Comment:
**Stale revision contracts fail tests**

When the dependency-contract tests inspect these changed pins, they compare them with the previous hardcoded revision in `datadog_observability_contract.rs` and `paw_fs_hot_path.rs`, causing their assertions to fail instead of accepting `804633e2c5cab3b0bd334f78bfb5ea23aca1858d`. Update those expected-revision constants alongside this pin.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Claude Code Fix in Codex Fix in Cursor

The datadog observability contract enforces one temper rev across server
crates, every wasm module's guest SDK (Cargo.toml + per-module Cargo.lock),
and the proof-probe manifest. temper-wasm-sdk is unchanged between
a28fdb2e and 804633e2 (the bump only adds observe action params/hints), so
this is a textual alignment: 78 toml/rs files + 27 module lockfiles.
Verified: the full contract suite passes (32/32) and a representative
module (workspace_fs) builds clean against the new resolution.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Vw8tCkfnUW8p149yUNfSEE
@greptile-apps

greptile-apps Bot commented Jul 25, 2026

Copy link
Copy Markdown

Too many files changed for review. (108 files found, 100 file limit)

Bypass the limit by tagging @greptile-apps to review.

@rita-aga
rita-aga merged commit d53099d into main Jul 26, 2026
1 check passed
@rita-aga
rita-aga deleted the claude/temper-pin-observe-params branch July 26, 2026 00:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant