Conversation
AAH20
force-pushed
the
codex/tool-effect-outcome-conventions
branch
from
August 21, 2026 18:34
5a207f8 to
fcdee05
Compare
Pull request dashboard statusWaiting on the author · refreshed 2026-09-17 08:01 UTC Move out of draft to request review. Status above doesn't look right?
|
|
I’m testing SABLE from the evidence side: whether a real tool execution can become a compact, independently verifiable Reliability Record without exposing raw tool arguments/results. Your privacy-preserving hash work looks directly adjacent. Rather than asking you to adopt anything, I’m looking for the next network node who can stress-test this against a real runtime/observability stack. Who is the one person you’d recommend I talk to next — ideally someone working on runtime integrity, telemetry verification, or agent observability? SABLE: https://github.com/socksninja/sable-agent-reliability |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
gen_ai.tool.call.arguments_hashandgen_ai.tool.call.result_hashto execute-tool spansThis implements the content-hashing portion of #402 as a focused first change. It deliberately leaves side-effect classification for a separate SIG design discussion because generic instrumentation cannot reliably infer whether an arbitrary tool is read-only, proposed, executed, ambiguous, verified, or compensated.
Why
Raw tool arguments and results are opt-in because they may contain PII or proprietary data. Their hashes let operators verify a known input/output pair after an incident without putting the raw payload in general-purpose trace storage. The attributes hash the exact serialized representation observed at the execution boundary; semantically equivalent values serialized differently are intentionally not comparable.
A concrete implementation of hash-linked effect receipts and explicit ambiguous/verified/compensated outcomes is available as prior art in AAH20/verified-effects-runtime. Those outcome states are not included here pending agreement on a broadly capturable model.
Validation
make check-policiespassesgit diff --checkpassesThe OpenAI Agents conformance scenario is included but could not complete locally: the conformance runner's WeaverLiveCheck child resolved the registry and then exited before its localhost health endpoint became ready. This reproduced twice on different ephemeral ports before scenario execution; CI should determine whether it is specific to this macOS environment.
Closes the content-hashing portion of #402.