Add adapters/ with Claude Code, Cursor, and NAT reference implementations - #22
Add adapters/ with Claude Code, Cursor, and NAT reference implementations#22bar-capsule wants to merge 1 commit into
Conversation
98470b4 to
8e65380
Compare
rocklambros
left a comment
There was a problem hiding this comment.
@bar-capsule I went deep on this branch before writing anything. Checked it out, ran the three suites, read each adapter against the v0.1.0 schemas. The config-only pattern is the right call, and the per-adapter docs are honest about what's deferred. I want to flag a gap before "reference implementation" sticks, because people copy reference adapters line for line, and a few of these would ride along into their deployments. Marking this request-changes so the wire-format and fail-open items get a look before merge, not as a veto on the direction.
I checked all of this against the open issues first (#10 through #19). Those are spec-level: capability resolution, HMAC key management, the conformance program. Nothing below is a dupe. This is adapter-implementation ground. Three of mine have a protocol-level twin and I'll point those out.
The one that matters most: the adapters don't emit the v0.1.0 wire format. In claude-code/acs_adapter.py the request puts acs_version, request_id, timestamp, and metadata at the top level, but request-envelope.json wants them inside params and sets additionalProperties: false. A schema-validating Guardian rejects every request. timestamp goes out as epoch millis (int(time.time() * 1000)) where the schema asks for an ISO-8601 string. The payload uses tool / name / arguments where the hook schema wants the payload wrapper with arguments as {value, provenance}. Same shape in the cursor and nat adapters. The tests stay green because example_guardian.py reads params.get("tool") too, so both sides agree with each other and disagree with the spec. Nothing validates an emitted envelope against acs_schema.json. One test that does would have caught all of it, and it's the highest-leverage thing you can add here.
The deny path fails open on anything it doesn't recognize. In translate_response, an unknown or empty decision returns {}, which Claude Code and Cursor both read as "proceed." ACS_DEFAULT_DENY only kicks in on an exception (Guardian unreachable), not on a Guardian that answers with a verdict the map doesn't know. So a v0.2 disposition, a typo, even a trailing space surviving .lower(), all proceed. NAT already does the right thing and blocks under default_deny. The other two should match it. One line each.
No signing at all (this one's adjacent to #11, not the same). The adapters don't HMAC the envelope, and the example Guardian neither verifies a signature nor checks for replays. The READMEs call this "deferred to transport," but conformance.md:28 lists the baseline signature as a Core MUST, and :67 says transport doesn't satisfy it. #11 is about key distribution and rotation once you're signing. This is the step before: the reference ships with no signing, so every copy starts from an unauthenticated channel. The default http://127.0.0.1:8787/acs in the config keeps that invisible until someone repoints the URL at another host.
Delegation walks around the gate. SubagentStart isn't in HOOK_MAP, Claude Code can't block on it anyway, and example_guardian.py allows Task by default. A subagent spawn isn't evaluated before it acts. That's the adapter-level version of #16, and it lands on the exact confused-deputy path the subagent hooks were promoted to cover. At minimum I'd surface it in mapping.md's "not mapped" list instead of leaving it silent.
On the tests: "40 tests, all passing" is true on your machine, not in CI. NAT's 12 tests skip when nvidia-nat-core isn't installed (I got Ran 12 tests in 0.000s, OK (skipped=12)), Cursor's live test is a skip placeholder, and no workflow runs the adapter tests at all (only sync_version.yml). Skips read as passes, so a regression that lets a denied call through lands green. There's no requirements.txt under adapters/, and the NAT install is unpinned (pip install nvidia-nat-core, no ==). The NAT deny test also catches ACSGuardianDenied and returns without asserting the call was actually aborted, so it passes as long as something raised. This cluster worries me second-most, because green tests on a security control are worse than no tests. Pin the dep, run the unit tests in CI, and have the deny tests assert a real side effect didn't happen (the file wasn't written, the counter stayed at 0).
Smaller stuff, and I'm less sure these are worth blocking on:
example_guardian.py's regex missesrm -fr /,rm --recursive --force /,rm -rf ~, andfind / -delete. It's labeled illustrative so I won't die on this hill, but it's the only thing a newcomer can run on day one, so I'd make it harder to fool or louder about being a toy.- A PostToolUse deny can't undo a side effect that already ran (Claude Code's own hook docs say PostToolUse can't block the action). Cursor's
beforeReadFilereturns{}, so a denied file read still happens. The pre-hooks are the only real gate, and the docs should say so plainly. - NAT's
_build_requestisn't inside the try/except, so a non-serializable kwarg throws beforedefault_denycan catch it. Andpost_invokeignores a result-side deny. mapping.mdand the code disagree on the deny shape for non-PreToolUse hooks. The doc says{"continue": false, "stopReason": ...}, the code emits{"decision": "block", "reason": ...}. One is wrong against Claude Code's contract.
None of this changes my read on the direction. I like where this is going, and the cross-adapter table in the README is genuinely useful. I'd hold the "reference implementation" label until the envelope matches the schema and the deny paths fail closed, since those are the parts people copy without reading the footnotes. Happy to send a PR with the schema-validation test, or pair on the envelope fix if that's faster.
Tracking: I cross-linked the delegation gap onto #16 and the no-signing gap onto #11 so the protocol-level and adapter-level views sit together. The rest of the findings here are adapter-specific with no matching issue.
(cc @afogel since the envelope and signing points touch conformance.md.)
|
Merge-order note: this should land after #21, and after the change-request items above are addressed.
No git conflict with #20 or #21 (this only touches |
Rock's PR GenAI-Security-Project#22 review caught that the three reference adapters and the example Guardian shared a wire format that diverged from specification/v0.1.0/request-envelope.json: acs_version / request_id / timestamp / metadata at the envelope's top level instead of inside params, timestamp as epoch milliseconds instead of ISO-8601 string, tool payload missing the required payload wrapper, arguments not wrapped per tool-call-request.json. Tests passed because the adapter and the example Guardian agreed with each other; the canonical spec was outside the test loop. This commit: - Restructures every adapter's envelope to nest the AcsParams fields inside params, ISO-8601 timestamps, metadata.{agent_id, session_id} populated, payload wrapped per the relevant hook schema, arguments wrapped as {value: ...} per tool-call-request.json:26-37. - Updates example_guardian.py to read from params.payload, gate the Task subagent tool by default, and expand the destructive-Bash regex set (rm -fr, --recursive --force, ~, --no-preserve-root, find / -delete / -exec rm, chmod 777 on system paths). - Fixes the fail-open-on-unknown-disposition bug in claude-code and cursor translate_response; NAT pre_invoke and post_invoke now default-deny on unknown verdicts. - NAT post_invoke now honors a Guardian deny verdict by clearing context.output and setting acs_post_invoke_redacted, matching Specification §6.4's output-redaction gate. - NAT _build_request is now inside the try/except in both pre_invoke and post_invoke so build errors apply the same fail posture as transport errors. - Adds tests/test_envelope_schema.py to each adapter. These validate every adapter-emitted envelope and per-hook payload against the canonical v0.1.0 JSON schemas loaded from $ACS_SPEC_DIR. They are hard-FAIL if the schemas are missing — not skipped — because spec validation is non-negotiable. - Adds .github/workflows/adapter_tests.yml to run the schema + round- trip + live tests per adapter on every push and PR, with the spec schemas pulled from upstream Agent-Control-Standard/ACS:main. - Pins nvidia-nat-core==1.7.0 (adapters/nat/requirements.txt) and jsonschema>=4.20,<5 (adapters/requirements-test.txt). - Updates each adapter's README conformance table to be MUST-honest against docs/spec/conformance.md: handshake, baseline HMAC-SHA256 integrity, replay nonce, system/ping, wrapped MCP are now marked ✗ not implemented, with citations. The previous "deferred to transport layer" claim for baseline integrity was inconsistent with conformance.md:28 and :67. Test counts (all pass, zero hidden skips): claude-code: 17 schema + 13 round-trip cursor: 36 schema + 13 round-trip nat: 6 schema + 7 round-trip + 5 live (NAT 1.7.0) Co-Authored-By: Claude Opus 4.7 <[email protected]>
The original adapter_tests.yml had three bugs that made it non-functional and reproduced the exact failure mode PR GenAI-Security-Project#22 review flagged: tests "passing" via skips that operators read as green. Fixes: - Python 3.13 → 3.12. NAT 1.7.0 has no 3.13 wheel; the install step would fail silently in skip mode on any NAT-dependent test. - Drop `example-guardian` from the matrix — no tests/ directory there; the matrix entry crashed on `unittest discover tests`. - Add the cross-adapter conformance suite (`adapters/test_acs_core_ conformance.py`) as its own job. That 48-test file was previously not run by CI at all. Skip handling, per Rock's "skips read as passes" point: - NAT job: NAT is installed (pinned `nvidia-nat-core==1.7.0` + matching `nvidia-nat-langchain`), so ANY skipped test means the test gating is buggy. Hard fail. - Conformance job: zero skips allowed — every ACS-Core MUST runs. - Other adapters: surface skips as warnings (Claude Code's live tests legitimately skip when the `claude` CLI isn't installed in CI; Cursor has a manual-procedure placeholder). Both intentional. Now exercises ~190 tests on every push to adapters/ or specification/, with the load-bearing security tests pinned and required. Co-Authored-By: Claude Opus 4.7 <[email protected]>
|
Thanks @rocklambros for the thorough review! every item addressed. Wire format vs request-envelope.json - Every emitted envelope is schema-validated against canonical request-envelope.json from $ACS_SPEC_DIR (not against fixtures, not against the example Guardian's shape). params wrapper, ISO-8601 timestamps, payload + {value, provenance} arg wrapping - all to spec. Deny fails open on unknown - _fail(cause=…) taxonomy across all three adapters covering transport, adapter exception, signature failure, and 7 JSON-RPC error codes via shared guardian_error_cause(). Unknown disposition + ACS_DEFAULT_DENY=1 → block; otherwise an ACS_AUDIT fail_open_bypass event with the cause label. Signing - HMAC-SHA256 across all three adapters via adapters/_common/. Every envelope signed; every response verified. SIGNATURE_INVALID / REPLAY_DETECTED / TIMESTAMP_OUT_OF_WINDOW each map to a distinct audit cause. Subagent delegation - example_guardian gates Task by default (subagent_gated); opt-in via ACS_ALLOW_SUBAGENT=1. Each adapter's mapping.md lists where delegation hooks aren't honorable by the framework. Tests on tests - Deny tests now assert the real side effect didn't happen, the way you described — counter checks plus, for NAT, a canary-file pattern (if rm -rf runs despite the deny, the canary file vanishes regardless of what the counter says). A real Vertex/Gemini react_agent run surfaced silent-bypass bugs the synthetic tests would have shipped; all have regression tests. CI workflow - Pinned nvidia-nat-core==1.7.0 + nvidia-nat-langchain==1.7.0, Python 3.12, runs the per-adapter + conformance suites on every push to adapters/ or specification/, hard-fails on any skipped NAT or conformance test. Smaller items: rm regex hardened (-rfv, -fr, --recursive --force, --no-preserve-root). READMEs say plainly that pre-hooks are the gate; post-hooks redact via output=None + audit. NAT _build_request moved inside try; post_invoke result-side deny propagates. mapping.md and code now agree on deny shape. Would appreciate re-review when you have a window. |
…w Wrapped MCP claim Two findings from Rock's review of PR GenAI-Security-Project#22: P1.1 — Conformance CI fails for the right reason now. Without rfc3339-validator installed, jsonschema's date-time format checker silently no-ops and test_timestamp_is_iso8601 false-passes (invalid "yesterday" passes validation; assertion sees an empty error list; CI shows green on a real wire-format bug). Pin rfc3339-validator in adapters/requirements-test.txt + add a fail-fast setUpClass guard that rejects any future degradation: if the date-time checker accepts "not-a-date", the whole conformance class refuses to run with a pointed error message. P2.2 — Wrapped MCP claim narrowed. conformance.md:26 lists protocols/MCP/* as part of the Core baseline. Our Core10_WrappedMcp suite verifies the WIRE-FORMAT shape (envelope validates, Guardian returns a structured response, no crash) but not full MCP request wrapping; the reference Guardian routes incoming MCP through the standard toolCallRequest path with the tool name reflecting the MCP method. The module docstring and the top-level adapters/README now say plainly that a green run = "ACS-Core baseline minus full Wrapped MCP", not "the whole baseline". v0.2 deferral marked explicitly. Deployments needing full wrapping must extend the Guardian. Co-Authored-By: Claude Opus 4.7 <[email protected]>
… to malformed base64
Reviewer caught that base64.b64decode() in verify_signature() ran
without exception handling. A malformed signature value
("not-base64", padding garbage, truncated input) raised
binascii.Error up to the Guardian's request handler, which only
catches GuardianError. Result: a bad signature tore down the
request path on the wire (uncaught exception, 500-class response)
instead of returning the spec's SIGNATURE_INVALID (-32004). Same
risk on the adapter side for malformed signed responses. Security
control was a DoS vector.
verify_signature() now catches binascii.Error / ValueError /
TypeError around the b64decode and returns False — the existing
caller chain (Guardian's check_signature, adapter's response
verification) then emits -32004 with cause=signature_invalid_*
and the audit event fires correctly.
Regression test: Item15_VerifySignatureRobustToMalformedBase64
exercises 7 forms of unparseable input (garbage, padding-only,
mid-string padding, oversized, empty); every one must return
False, none may raise.
Co-Authored-By: Claude Opus 4.7 <[email protected]>
…ation-only on every adapter
Reviewer caught that ACS-Core §hooks.md describes agentResponse as
decision-eligible (ALLOW / DENY / MODIFY), but every adapter
silently drops denies on the hook that produces it. Claude Code
maps Notification → agentResponse and returns {} on deny; Cursor
afterAgentResponse does the same; NAT lifecycle hooks are
fire-and-forget through the IntermediateStepManager subscription.
The framework constraint is real and not fixable in this PR:
- Claude Code's Notification fires AFTER assistant message
delivery — no veto path.
- Cursor's afterAgentResponse fires AFTER the message — same.
- NAT's IntermediateStepManager is a notification stream;
subscriber callbacks cannot abort an event after it fires.
This commit makes the docs honest about that. Each adapter's
mapping.md now marks the relevant hook explicitly as
"observation-only" with an explanation of which framework
boundary blocks pre-delivery enforcement. The per-adapter
README conformance tables narrow the dispositions claim to
"ALLOW / DENY / MODIFY on pre-execution hooks" with a pointer to
mapping.md for lifecycle / post-execution observation-only
posture.
Also includes a hunk missed from the previous Wrapped MCP commit:
adapters/README.md's top-level claim now says "ACS-Core baseline
minus full Wrapped MCP" to match what the conformance suite
actually verifies.
Co-Authored-By: Claude Opus 4.7 <[email protected]>
…claim on post_invoke redaction Reviewer caught that the Post-tool-deny-redaction row still said post_invoke sets acs_post_invoke_redacted=True, contradicting the code in adapters/nat/acs_adapter.py:294 / :717 — InvocationContext is a strict Pydantic model and that extra attribute would crash. The real redaction signal is context.output = None plus the ACS_AUDIT post_invoke_redacted event. README now says so. Co-Authored-By: Claude Opus 4.7 <[email protected]>
|
I ran this rather than just reading it, and the first thing I hit is that the CI job can't fail. Everything else I found is downstream of that in one way or another, so I'll start there. This is a long comment because it's a 14,515-line PR that turns a docs repo into a code repo. The work is real and the threat model in The CI gate reports success when the tests failBoth test steps pipe into python -m unittest test_acs_core_conformance -v 2>&1 | tee out.log # line 39
python -m unittest discover -v tests 2>&1 | tee out.log # line 83GitHub's implicit shell for I checked rather than assuming: The header comment says the workflow "addresses the 'skips read as passes' failure mode," and the skip grep at lines 41 and 91 does work. So right now the job catches "a test didn't run" and misses "a test ran and failed," which I'd argue is worse than no workflow, because the badge certifies something false.
The conformance suite can't run from a fresh clone
Running the documented command from Two things make this worse than a broken default. The documented remedy in
The Claude Code adapter drops subagent events entirelyI said something wrong about this earlier and want to correct it. HOOK_MAP: dict[str, str] = {
"SessionStart": ..., "SessionEnd": ..., "UserPromptSubmit": ...,
"PreToolUse": ..., "PostToolUse": ..., "Notification": ..., "Stop": ...,
}
if hook_name not in HOOK_MAP:
return 0Feeding it a Cursor has the mirror-image problem. NAT's And even if all three emitted,
|
…d honest scoping (PR GenAI-Security-Project#22 review) Squashed response to the full PR GenAI-Security-Project#22 review. Ships the three reference adapters (Claude Code, Cursor, NAT) as ACS v0.1.0 EMISSION conformance: the adapters, driven through their real production entry points, emit schema-valid, signed Core traffic and honor the decisions the suite tests — validated against the canonical schemas by an independent oracle. It is deliberately NOT a full ACS-Core deployment-conformance claim (that spans Guardian + framework wiring + production config and is tracked as milestone GenAI-Security-Project#33). Enforcement correctness - Guardian REFUSALS (SIGNATURE_INVALID, REPLAY_DETECTED, TIMESTAMP_OUT_ OF_WINDOW, malformed/oversized envelope) fail CLOSED regardless of posture — each is attacker-reachable, so routing them through the §6.4 fail-open posture was a bypass primitive. HTTP-layer refusals (413/400) and oversized envelopes are caught before the wire. - Error responses are signed (schema + Guardian + adapters); an unsigned spoofable error under fail-open is an allow. - Handshakes are signed (only system/ping is signature-exempt, §13); forward-compat accepts matching-major versions; malformed ClientHello and non-object/batch JSON-RPC return -32600 instead of crashing. - Claude Task spawns emit steps/subagentStart (confused-deputy gate); Cursor default installer + example wire it fail-closed on BOTH ACS_DEFAULT_DENY=1 and failClosed:true; the Guardian gate is deny-by-default; no fabricated subagent lineage. - ServerHello on_decision_failure is honored (most-restrictive-wins); handshake failures negative-cached; secret-file-unreadable and unsigned-mode are loud, not silent; rfc8785 is a hard dependency. Emission conformance suite - CaptureGuardian oracle validates the exact bytes each production adapter sends (real subprocess for Claude/Cursor; real middleware pre/post_invoke + lifecycle observer for NAT) against the canonical schemas, with an INDEPENDENT HKDF+HMAC+JCS signature verifier (not acs_common) pinned by a frozen known-answer vector, and proven non-vacuous by negative self-tests. - Per-event: each Core method emitted once, envelope+payload valid, UUID/RFC3339/metadata/{value}-wrapper invariants. Per-session: handshake-once, unique request_ids, request_id_ref correlation, advertised==emitted (both directions). Truthful gating - One authoritative runner with platform selection (claude|cursor|nat), pass/skip/fail reported separately, exact (suite,test,reason) skip allowlist, fails on any UNEXPECTED skip. CI: shell:bash/pipefail (failing suites can't read green), DCO check, pinned deps + SHA-pinned actions, NAT installed so its tests run. - Example configs are under test (the file people copy), not just wire.py output. De-duplication - Emission is the sole schema-validation owner; the double-validating build_request() schema tests were removed after moving every mapped native event into the emission matrix (coverage verified preserved). Suite reflects distinct assertions, not overlapping layers. Docs - Claim scoped to emission conformance throughout; hard-coded test counts removed; Wrapped-MCP kept as shape-only with its Core status flagged as a pending spec-owner decision. Co-Authored-By: Claude Opus 4.8 <[email protected]> Signed-off-by: Bar Kaduri <[email protected]>
There was a problem hiding this comment.
Five findings from running the branch , with four of the five are one mistake in different places.
- A Guardian DENY with a trailing space executes the tool call. §6.4:158 says an arrived decision must be honored regardless of posture, and §6.3:146 already rules that an unusable one is a DENY.
- Failing closed on
StopandSubagentStopemits{"decision":"block"}, which Claude Code reads as "do not stop, continue".subagent-stop.json:5marks both hooks not decision-eligible. settings.json.examplepasses all four settings through a per-hook"env"object that Claude Code does not implement, so a copied config runs unsigned, fail-open, with no audit sink. The test guarding that file asserts the same discarded field.- Without
rfc8785the adapter exits 1 with empty stdout, which Claude Code treats as non-blocking, so the tool runs with no audit event and no regard forACS_DEFAULT_DENY. - The cached ServerHello is read without verifying its signature, so the observed agent flips its own fail posture by editing one word in a predictable path, or by touching an empty
.failedmarker.
The tests have a similar blind spot. The suite covers a Guardian that says nothing, thoroughly, across all three adapters. It does not cover a Guardian that says something unusable, or a framework that ignores what the config tried to say. §6.4:156 and §6.4:158 draw exactly that line, and the suggested expectations put it under test.
Two notes on scope, neither one a code comment.
§6.4:156 lists "malformed response" among the transport failures, which is where treating an unreadable decision as a decision failure finds cover. Line 158 then says an arrived decision must be honored regardless of posture. Those rub against each other for the case in finding 1. A clarifying sentence in §6.4 would turn that comment from an argument into a bug report, and settle the same question for whoever writes a fourth adapter. It fits with #32 rather than this PR.
This branch also carries three normative schema edits: subagent-stop.json drops final_chain_hash from required, response-envelope.json adds a signature to the error object, and otel-mapping.json moves an attribute to optional. The reasoning behind each looks sound. The PR description still says the change set touches no normative spec text. They want their own PR and a spec-owner decision, especially with #21, #31 and #32 open on adjacent ground.
…apter gaps
One batch covering the five review findings from running the branch, the
adversarial/spec/host-contract audits they triggered, and the fixes those
audits surfaced. Every behavioral change ships with a regression test
that was verified to FAIL against the pre-change code (red-checked).
Review findings (all five fixed, with the reviewer's suggested tests):
- Unusable disposition fails closed: an arrived verdict that cannot be
interpreted (padding, unknown value, non-string type, non-object
modifications) is DENY on every adapter, never the fail posture; a
never-raising normalize_decision() makes verdict reading total, and a
translate-layer guard turns any future translation bug fail-closed.
- Stop/SubagentStop are audit-only: {"decision":"block"} there means
"keep going" in Claude Code, so deny/decision-failure on those hooks
records unenforceable_decision and emits nothing.
- settings.json.example regenerated from wire.py itself: all settings
ride inline in the command string (Claude Code has no per-hook env
field); the config test asserts the command string and pins
example == wire.py output so they cannot drift again.
- Degraded bootstrap: a missing rfc8785 no longer dies as a silent
exit-1 no-op — both shell adapters audit adapter_unavailable and honor
ACS_DEFAULT_DENY with stdlib only; per-adapter requirements.txt pins
rfc8785; NAT fails LOUDLY (UNGOVERNED banner + re-raise) since its
in-process middleware cannot degrade per-hook.
- Handshake cache holds the whole signed ServerHello envelope and
re-verifies the signature on every read; tampering is audited
(handshake_cache_signature_invalid) and falls to re-handshake; the
negative-cache branch is audited per §4.1.
Spec-conformance fixes (from re-deriving the normative requirements):
- Negotiated timeout honored: the ServerHello's timeout_config.default_ms
replaces the hardcoded 5s deadline on all three adapters; a decision
timeout is audited distinctly (decision_timeout) from an unreachable
Guardian.
- Prompt gates fail closed: modify/ask/defer on a prompt (which the
hosts cannot apply there) block instead of silently proceeding.
- MODIFY merges: parameter_overrides are per-argument edits, so they are
merged onto the original input before updatedInput/updated_input
(which replace wholesale); a modify carrying redactions the host
cannot express is refused rather than half-applied, and NAT's output
gate redacts rather than leaking unmodified output on structured
modify.
- §6.3 composition check implemented: a modifications object combining
wholesale + structured shapes, or with overlapping JSON-Pointer
targets, is refused as DENY (shared checker with proper pointer-prefix
comparison and a false-positive guard test).
- Honesty: profiles_supported advertises acs-core only when signing is
configured; ACS_HANDSHAKE=0 is audited as non-conformant;
ACS_DISABLED writes a structured audit event to the durable sink;
ahead-of-spec behaviors (refusal fail-closed, posture merge,
ask/defer substitutions) are labeled as deliberate hardening or
deployment behavior pending the open spec decisions, not cited as
mandated.
Turn tracking (Claude Code + Cursor):
- A prompt opens a turn with an explicit decision-eligible
steps/turnStart (a Guardian deny blocks the prompt), the userMessage
and every in-turn step carry metadata.turn_id, and Stop/stop closes it
with steps/turnEnd — replacing the wrong Stop->sessionEnd mapping that
sealed the audit chain after every reply. A stop with no open turn is
skipped and audited, never a fabricated turn_id. Guardian round-trip
handling is factored into one shared helper so both POSTs get
identical binding/signature/refusal treatment.
Cursor host-contract fixes (verified against the official hooks docs):
- Payload builders now read only fields Cursor actually sends:
workspace_roots (not workspace_path), tool_name/tool_input(+url|command)
for MCP (not mcp_server/mcp_tool), result_json, text (not
response/thought), error_message/failure_type (mapped onto the ACS
exit_status enum incl. timeout and blocked), command/output/duration/
sandbox for shell results. JSON-stringified inputs are parsed, never
crashed on. postToolUse's embedded exitCode drives an honest failure
status; sessionEnd reasons and stop status map onto the ACS enums;
subagentStart lineage derives from the real tool_call_id;
beforeSubmitPrompt emits the documented {"continue": false,
"user_message"} block alongside exit 2; output fields are emitted only
on postToolUse (the one event that documents them). Emission tests
feed the documented shapes and assert the content lands in the ACS
payloads, so schema-valid-but-empty can no longer pass. Claude Code's
subagent gate matches the current `Agent` tool name (legacy Task kept);
duration_ms is coerced to the schema's integer.
Docs: mapping.md/README rewritten to match the code (block-shape hooks,
turn model, per-event field sources, correlation gaps stated instead of
papered over); PR GenAI-Security-Project#21 is referenced only as an open proposal not in this
branch; the three normative schema edits carried here are flagged for
explicit spec-owner approval.
Co-Authored-By: Claude Fable 5 <[email protected]>
Signed-off-by: Bar Kaduri <[email protected]>
|
This is close. The August commits cleared everything I raised in July and everything @afogel raised in August, and I checked by running the suites instead of reading the diff. claude-code, cursor, and That last part turned into the one thing I want settled. NAT never got added to the Core suite. Cursor did, back in August, and Either way NAT ends up in the Core suite. Whether that happens here or in a follow-up is your call. Doing it here means the conformance job installs the NVIDIA runtime as well. If you'd rather push it out, The pins need fixing either way.
The DCO job you added runs on
Please split the schema edits into their own PR. @afogel asked for that in August and never got an answer from me, which I should have handled at the time. It's nine lines across Ignore what I told you in July about holding for #21. I wanted that sequencing because the suite cited
|
The site build depends on a bare `uv run pytest -v` running in the environment uv.lock produces. With no testpaths, pytest collects the whole repository, so any suite whose dependencies sit outside the lockfile fails at collection and takes the deploy down with it. PR #22 adds 23 adapter test files needing rfc8785, nvidia-nat-core, and ruamel, none of them locked: against a merged tree that is 22 collection errors and an interrupted run, which fails the test job and stops the build job that depends on it. Scoping collection to tests/ keeps the deploy gate about the guards it was written for. Suites carrying their own dependencies run from their own workflow, which is what adapter_tests.yml already does. CONTRIBUTING now says where guards live and why a test written elsewhere never runs, since that silence is what let both contributors build suites CI would not have executed. Signed-off-by: rocklambros <[email protected]>
The table mapped ten specific paths and stopped, so a new top-level directory arrived governed by nothing until someone noticed it was unlisted. The adapters/ directory in PR #22 is the next one due to land. Apache 2.0 is the default because a new directory is usually code, and an over-permissive grant on prose costs less than a ShareAlike obligation attaching by accident to reference code adopters copy into their own systems. A prose directory still wants its own explicit CC-BY-SA-4.0 row. Signed-off-by: rocklambros <[email protected]>
Nobody does, in v0.1.0. profiles_supported and profiles_accepted are self-declaration on the wire, and the release ships no conformance suite, no registry, and no steward to arbitrate a disputed claim. The page described what the label guarantees without saying that the label is the implementer's own assertion, which is the gap issue #19 raised against a standard that markets itself as a control standard rather than a wire format. The paragraph sits below the ACS-Core requirement list rather than inside it, so the line numbers PR #22's citation guard pins do not move. Signed-off-by: rocklambros <[email protected]>
|
One more thing landed on main, and it's the kind of thing that would have looked like your fault.
Fixed in dbbd92d. |
The skill lifecycle hooks are missing from all three adapters, and the spec page is whyNone of the three adapters emit
This is our fault, not the contributor's. The hook taxonomy table in Specification section 5 listed sixteen hooks and omitted the entire skill lifecycle set. The Hooks page says nineteen. Both were correct about everything else, so there was no signal that the shorter list was the stale one. Anyone building against the specification page, which is the page that reads as canonical, never learned that skills are a governable surface at all. I have a fix queued that adds the three hooks to the taxonomy table, renumbers it to nineteen, and adds a guard test that reads the schema titles under Worth noting the harness in this PR is already ahead of the spec page: What this is worth doing about hereSkill emission is SHOULD, not MUST ( For claude-code and cursor there is an observable event: both invoke skills through a tool call, so The real obstacle is that
A gap on our side that would block youIf you do emit skill hooks and want them under ACS-Trace, there is nothing to map them to. The skill lifecycle has no OpenTelemetry span name and no OCSF class, in either the docs tables or the normative mappings: Same root cause, wider blast radius than the one table. That one is ours to close and I am raising it separately. |
One squashed commit carrying the full PR GenAI-Security-Project#22 branch, rebuilt on current main (DCO: all history signed; branch is a direct child of main). Adapters (each: acs_adapter, wire.py, mapping.md, README, tests): - Claude Code: hook-to-steps translation with explicit turn tracking (turnStart/turnEnd, per-session state), native allow/deny/ask, modify via merged updatedInput, defer substituted to deny + audit. SubagentStop is deliberately unmapped: steps/subagentStop requires final_chain_hash, which a chain-less framework cannot honestly produce; a separate schema PR proposes making it optional. ADAPTER_VERSION 0.1.3. - Cursor: documented-field payload builders (docs.cursor.com, 2026-08-22), turn tracking, beforeSubmitPrompt exit-2 blocking, failure_type-to-exit_status mapping, fail-closed contradictory modifications per §6.3. - NAT: pre/post-invoke middleware with negotiated timeouts, durable audit sink, redaction-or-deny output gate. Shared infrastructure: - acs_common: RFC 8785 (JCS) + HKDF per-session HMAC signing (§10), handshake with signed ServerHello binding and negative cache, total decision normalization, §6.3 composition-violation check. - example_guardian: signed error envelopes, capped regex scanning, durable file-locked replay state, subagent gate no weaker than the generic tool gate. Binds --port 0 and announces the assigned port on stdout so test spawns own their port by construction. - Conformance + emission suites (230 checks) driving both CLI adapters and the Guardian; NAT covered by its own suite (35). Guardian refusal handling is deliberately stricter than v0.1 spec text (always fail closed); tracked as spec issue GenAI-Security-Project#32. Co-Authored-By: Claude Fable 5 <[email protected]> Signed-off-by: Bar Kaduri <[email protected]>
aae26f8 to
1b99678
Compare
Summary
Introduces a top-level
adapters/directory holding reference implementations that wire popular agent frameworks to an ACS Guardian through configuration only, with no agent code changes. Ships three working adapters with passing tests for each.What lands
adapters/claude-code/claude --printround-trip, ALLOW + DENY paths (test_live_claude_code.py)adapters/nat/function_middleware_invokeagainstnvidia-nat-core1.7.0 (test_live_nat_workflow.py)adapters/cursor/tests/live_verification.md(Cursor is a desktop app with no documented headless mode)adapters/example-guardian/Total: 40 automated tests + 1 documented manual verification procedure, all passing.
The adapter pattern
ACS-Core specifies what a hook event looks like on the wire and what the Guardian's decision looks like coming back. It does not dictate how a framework physically wires the interception in. Each adapter demonstrates the boundary choice for its framework:
hookSpecificOutput.permissionDecisionargv[1]permission(top-level, per-event) + exit code 2FunctionMiddlewareclassACSGuardianDenied(NAT 1.7.0) orInvocationAction.SKIP(NAT dev)All three send the same ACS JSON-RPC shape to the Guardian. The example Guardian (
adapters/example-guardian/example_guardian.py) is shared across all adapters — same wire format regardless of which framework emits the event.The top-level
adapters/README.mdcontains a step-by-step walkthrough with concrete JSON payloads at each step, a cross-adapter comparison table, and a flow diagram. Read that first.Claude Code adapter
Wire it up by editing
~/.claude/settings.json(seesettings.json.example); no code changes to your agent.Live verification:
tests/test_live_claude_code.pyspawnsclaude --printin a sub-process with a project-levelsettings.jsonwiring the adapter intoPreToolUse. Tests both:echocommand runs and the marker string appears in Claude Code's output.Both passing in ~18s.
Schema corrections discovered via the live test (real Claude Code differs from public docs):
hookSpecificOutput.permissionDecision = "deny", NOT top-leveldecision: "block".tool_response(object), NOTtool_output(string).tool_use_id,effort,duration_msnot mentioned in public docs.NAT adapter (NVIDIA Agent Toolkit)
Real NAT middleware class. Installs via
pip install nvidia-nat-core, configured in NAT workflow YAML:Live verification:
tests/test_live_nat_workflow.pyexercises NAT's actual orchestration method (FunctionMiddleware.function_middleware_invoke) — the same code path NAT's runtime calls when a function with middleware is invoked. Tests prove the load-bearing property: when the Guardian denies, the target function does not execute (the test's side-effect counter stays at 0).Covers: allow / deny / fail-closed / fail-open. 5/5 passing against
nvidia-nat-core1.7.0.Schema corrections discovered while building:
InvocationAction.SKIPis on the NAT dev branch, NOT in 1.7.0. Block by raising. Adapter feature-detects and prefers action-based path when available.FunctionMiddlewareBaseConfigwithname=class kwarg (NAT's TypedBaseModel registration). Plain PydanticBaseModelfails on@register_middleware.Cursor adapter
Real Cursor schema sourced from Cursor's own bundled
~/.cursor/skills-cursor/create-hook/SKILL.md. Maps all 20 documented Cursor hook events to ACSsteps/*methods.Cursor is a desktop application without a documented headless mode, so live verification is a documented manual procedure in
tests/live_verification.md. The procedure has been run end-to-end (5+ hooks flowed through the adapter, zero adapter errors); captured payloads from that reproduction are not committed because Cursor's events include session-identifying fields. Anyone with Cursor installed can reproduce.Why in-spec
adapters/and not separate reposSingle repo for spec + reference implementations on the first batch makes the spec evolve alongside the adapters that exercise it (the live tests on this PR found several real schema gaps between docs and actual behavior — that feedback loop is what makes the spec text trustworthy). When the pattern stabilizes and individual adapters need their own release cycle, splitting to separate repos is straightforward.
What this PR does NOT do
Running the tests
🤖 Generated with Claude Code