@coderifts/agent-guard 1.8.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/README.md +68 -23
  2. package/dist/cjs/deploy-gate.d.ts +10 -3
  3. package/dist/cjs/deploy-gate.d.ts.map +1 -1
  4. package/dist/cjs/deploy-gate.js +7 -0
  5. package/dist/cjs/deploy-gate.js.map +1 -1
  6. package/dist/cjs/index.d.ts +2 -2
  7. package/dist/cjs/index.d.ts.map +1 -1
  8. package/dist/cjs/index.js +4 -2
  9. package/dist/cjs/index.js.map +1 -1
  10. package/dist/cjs/merge-gate.d.ts +10 -3
  11. package/dist/cjs/merge-gate.d.ts.map +1 -1
  12. package/dist/cjs/merge-gate.js +6 -0
  13. package/dist/cjs/merge-gate.js.map +1 -1
  14. package/dist/cjs/tool-registry.d.ts.map +1 -1
  15. package/dist/cjs/tool-registry.js +7 -0
  16. package/dist/cjs/tool-registry.js.map +1 -1
  17. package/dist/cjs/with-coderifts.d.ts +108 -87
  18. package/dist/cjs/with-coderifts.d.ts.map +1 -1
  19. package/dist/cjs/with-coderifts.js +129 -114
  20. package/dist/cjs/with-coderifts.js.map +1 -1
  21. package/dist/esm/deploy-gate.d.ts +10 -3
  22. package/dist/esm/deploy-gate.d.ts.map +1 -1
  23. package/dist/esm/deploy-gate.js +7 -0
  24. package/dist/esm/deploy-gate.js.map +1 -1
  25. package/dist/esm/index.d.ts +2 -2
  26. package/dist/esm/index.d.ts.map +1 -1
  27. package/dist/esm/index.js +2 -2
  28. package/dist/esm/index.js.map +1 -1
  29. package/dist/esm/merge-gate.d.ts +10 -3
  30. package/dist/esm/merge-gate.d.ts.map +1 -1
  31. package/dist/esm/merge-gate.js +6 -0
  32. package/dist/esm/merge-gate.js.map +1 -1
  33. package/dist/esm/tool-registry.d.ts.map +1 -1
  34. package/dist/esm/tool-registry.js +7 -0
  35. package/dist/esm/tool-registry.js.map +1 -1
  36. package/dist/esm/with-coderifts.d.ts +108 -87
  37. package/dist/esm/with-coderifts.d.ts.map +1 -1
  38. package/dist/esm/with-coderifts.js +126 -113
  39. package/dist/esm/with-coderifts.js.map +1 -1
  40. package/package.json +1 -1
@@ -15,106 +15,88 @@
15
15
  * `composition_assurance` so the trace survives into any later coverageReport consumer. S2 adds NO
16
16
  * enforcement at call time.
17
17
  *
18
- * COMPOSITION OBSERVATION (this slice): optional `onEvent` is forwarded UNCHANGED onto the guard
19
- * config the composition builds (the same surface guardToolRegistry already spreads into
20
- * guardToolCall). Optional `onOutcome` is a composition-level hook: after each GUARDED tool's
21
- * execute returns a GuardOutcome, the composition invokes onOutcome then returns that outcome to the
22
- * host byte-identical. Observation is NOT enforcement — it does not change COMPOSITION_CALL_POLICY_COMPLETE,
23
- * coverage, residuals, or whether any tool runs.
18
+ * COMPOSITION OBSERVATION: optional `onEvent` is forwarded UNCHANGED onto the guard config.
19
+ * Optional `onSettledCall` is a composition-level hook: it fires EXACTLY ONCE for every SETTLED
20
+ * call through the RETURNED tool table (GUARDED | PASSTHROUGH | BYPASSED × RETURNED | THREW).
21
+ * Discriminant is an EXPLICIT TAG (`kind: 'settled_call'` plus route/terminal), never the absence of
22
+ * a field. On the GUARDED+RETURNED arm, `outcome` is non-optional. Observation is NOT enforcement —
23
+ * it does not change COMPOSITION_CALL_POLICY_COMPLETE, coverage, residuals, or whether any tool runs.
24
+ * The package holds NO counters and computes NO ratios at runtime; pure fold helpers are optional
25
+ * host-side tools (see foldTableSettledCalls / guardedFractionAmongRoutes).
24
26
  *
25
27
  * TELEMETRY GAPS (honest boundaries — read before claiming "every mutation was checked"):
26
28
  * - onEvent does NOT emit a dedicated event for BLOCK or REQUIRE_APPROVAL; after preflight_result
27
- * those paths return blocked with no further emit. Those outcomes ARE visible via onOutcome
28
- * (outcome.executed === false, outcome.verdict.kind === 'BLOCK' | 'APPROVAL'), not via onEvent.
29
+ * those paths return blocked with no further emit. Those outcomes ARE visible via onSettledCall
30
+ * on the GUARDED arm (outcome.executed === false, outcome.verdict.kind === 'BLOCK' | 'APPROVAL').
29
31
  * - The GuardEvent payload carries no envelope, receipt, or fingerprint — only optional decisionId
30
- * (and action/cause/signals/…). onOutcome carries the full GuardOutcome, including
31
- * outcome.verdict.envelope where the frozen path attached one (BLOCK / APPROVAL / ALLOW / MONITOR).
32
- * - onOutcome fires ONLY for guarded tools (_coderifts.guarded === true). Readonly passthrough
33
- * tools never enter guardToolCall and produce no GuardOutcome; they are not wrapped and never
34
- * fire onOutcome.
32
+ * (and action/cause/signals/…). GUARDED+RETURNED onSettledCall carries the full GuardOutcome,
33
+ * including outcome.verdict.envelope where the frozen path attached one.
34
+ * - onSettledCall sees ONLY calls through the table withCodeRifts returned. Host-invoked raw tools
35
+ * outside that table are invisible. Never treat observation as "total operations" or "100%
36
+ * enforcement coverage".
35
37
  * - onEvent is partial even for other branches (e.g. closed-availability stops may emit only
36
38
  * preflight_start; the declared type 'execution_skipped' is never emitted by the frozen core).
37
39
  * - Neither hook alone is a complete substrate for receipt carry-forward: onEvent lacks the
38
- * envelope/receipt; onOutcome exposes them when present but does not retain or re-inject them
39
- * across calls (that is a later slice).
40
+ * envelope/receipt; onSettledCall exposes them when present on the GUARDED+RETURNED arm but does
41
+ * not retain or re-inject them across calls (that is a later slice).
40
42
  *
41
43
  * S2 does NOT re-guard what the registry already fails closed on. A `forceReadonly`/`classify`
42
44
  * downgrade of a heuristic mutator is, under the registry's default `failOnUnguardedMutator:true`,
43
45
  * already a thrown `FORCE_READONLY_MUTATOR` (no report exists); when the caller passes
44
46
  * `failOnUnguardedMutator:false` it is already registry coverage 'BYPASSED', which fails any
45
- * `requireCoverage` above BYPASSED by the ordering alone. So there is deliberately NO second
46
- * composition-level abort for weakening overrides that would create two places that must agree. The
47
- * composition merely RECORDS the residual (composition_forced_readonly_on_heuristic_mutator /
48
- * composition_unknown_treated_as_readonly) so the reason the composition is narrower than it looks is
49
- * preserved on the assurance object. Registry-thrown errors propagate UNCHANGED (never wrapped or
50
- * swallowed).
51
- *
52
- * How the weakening residuals are derived, and their KNOWN LIMITATION (a frozen-registry property, not
53
- * a composition property): both residuals are read SOLELY from `registry_report.warnings` — the
54
- * composition never recomputes classification. The registry emits `force_readonly_on_mutator_heuristic`
55
- * ONLY for the downgrade of a HEURISTIC-classified mutator (a tool with no `classify` entry and no
56
- * `mutationClass`, whose NAME heuristic is mutating), reached via `forceReadonly` OR a `classify`
57
- * entry. Crucially, `forceReadonly` has NO effect on a tool the caller declared with an explicit
58
- * `mutationClass`: `resolveClass` (tool-registry.ts:154-165) returns on `tool.mutationClass` at :157,
59
- * BEFORE `forceReadonly` is consulted at :158 — so such a tool resolves `mutating`, stays guarded,
60
- * yields coverage 'COMPLETE', and emits NO warning. The composition therefore produces NO residual in
61
- * that case and CANNOT detect it: the caller's `forceReadonly` was silently ignored by the frozen
62
- * registry. This is a limitation of the frozen registry surface, recorded (not worked around) here and
63
- * pinned by a "documented limitation" test. The residual is named
64
- * `composition_forced_readonly_on_heuristic_mutator` so it does not promise coverage of the case it
65
- * cannot see.
47
+ * `requireCoverage` above BYPASSED by the ordering alone. The composition RECORDS residuals from
48
+ * registry warnings. When forceReadonly lists a tool that declared explicit mutationClass, the
49
+ * registry emits `force_readonly_ignored_explicit_mutation_class:<name>` (break-glass ignored).
66
50
  *
67
51
  * COMPOSITION_CALL_POLICY_COMPLETE (when the composition may claim product-level runtime
68
52
  * inescapability) requires ALL of the following — do not flip the constant when only a subset lands:
69
53
  * (1) Automatic binders for call shapes that ALREADY carry both sides of the change (old_string/
70
- * new_string, edits[]) — DONE (commit 582504a / defaultBinder lift). Not the same as covering
71
- * every real agent edit shape.
54
+ * new_string, edits[]) — DONE. Not the same as covering every real agent edit shape.
72
55
  * (2) Receipt carry-forward (S5) — host-threaded chaining is POSSIBLE (optional previousReceipt +
73
- * verifyReceiptChainLinkage; commit 588a376). NOT met for this constant: the composition holds
74
- * no cursor (decision, not omission 3/5 design reviews against a package-held prior).
75
- * (3) A freshness-safe source of prior content for write-style calls (path + new content only),
76
- * where the host never supplied `before` — NOT done. The package performs no IO, so a prior it
77
- * was not given cannot be obtained; inventing one (including empty-string before) would send a
78
- * fabricated artifact to the oracle. That needs a host/guard freshness protocol, not another
79
- * binder rename. Flipping this constant on (1)+(2) alone is incorrect.
80
- *
81
- * STILL DELIBERATELY OUT OF SCOPE (later slices; not stubbed, not implied here): receipt carry-forward;
82
- * freshness-safe prior content for write-style calls; call-time STOP re-implementation (already
83
- * complete in the frozen guardToolCall path); WARN monitoring policy beyond the frozen sink gate;
84
- * framework adapters. (Both-sides edit-side lifting in defaultBinder is landed — see (1) above.)
56
+ * verifyReceiptChainLinkage). NOT met for this constant: the composition holds no cursor.
57
+ * (3) A freshness-safe source of prior content for write-style calls (path + new content only)
58
+ * NOT done.
85
59
  *
86
60
  * THE TWO-SCOPE RULE (never merged):
87
- * - `registry_report` is EXACTLY what `guardToolRegistry` returned, passed through untouched. It may
88
- * legitimately state coverage 'COMPLETE' and claim.inescapable_runtime true that is the runtime
89
- * tool-boundary's own honest truth (Placement A).
90
- * - `composition_assurance` is the narrower PRODUCT-level statement — what withCodeRifts as a whole
91
- * is willing to claim today. It is computed SEPARATELY and never rewrites the registry's verdict.
92
- * Its S1 semantics are UNCHANGED in S2 and under observation: coverage stays 'PARTIAL',
93
- * inescapable_runtime stays false via the same COMPOSITION_CALL_POLICY_COMPLETE conjunction.
94
- * The two truths coexist; neither is derived by mutating the other.
95
- *
96
- * `requireCoverage` scope (read this before trusting a green construction): it constrains the
97
- * REGISTRY-level coverage ONLY. It CANNOT be used to demand composition-level runtime inescapability —
98
- * that remains unreachable while COMPOSITION_CALL_POLICY_COMPLETE is false (see the three conditions
99
- * above, not merely "binders + receipts"). A caller passing `requireCoverage:'COMPLETE'` is asserting
100
- * an expectation about the registry tool-boundary surface — NOT a product-level guarantee. The abort
101
- * text and this doc say so explicitly so nobody reads a green construction as product-level
102
- * enforcement.
61
+ * - `registry_report` is EXACTLY what `guardToolRegistry` returned, passed through untouched.
62
+ * - `composition_assurance` is the narrower PRODUCT-level statement, computed SEPARATELY.
63
+ */
64
+ import { guardToolRegistry } from './tool-registry.js';
65
+ /**
66
+ * Pure fold: count routes in a host-owned list of settled-call observations.
67
+ * The package never accumulates these at runtime.
68
+ */
69
+ export function foldTableSettledCalls(events) {
70
+ const counts = { GUARDED: 0, PASSTHROUGH: 0, BYPASSED: 0 };
71
+ for (const e of events) {
72
+ if (e.kind !== 'settled_call')
73
+ continue;
74
+ counts[e.route] += 1;
75
+ }
76
+ return counts;
77
+ }
78
+ /**
79
+ * Fraction of GUARDED among observed routes, or ABSENT when a ratio would be misleading.
103
80
  *
104
- * Operation semantics (accurate scope): `operationForClass` (tool-registry.ts) already derives a
105
- * per-tool operation from the tool's mutation class, OVERRIDING the guard config for specialised
106
- * classes (deploy→'deploy', publish→'publish', vcs-merge→'merge', …). The mandatory `operation` here
107
- * therefore governs generic mutating tools and acts as the session-level default; it does NOT override
108
- * a deploy-class tool's 'deploy'. It is mandatory because receipts bind to an operation and
109
- * merge != deploy: a silent default would risk evaluating a deploy under merge semantics.
81
+ * Returns `kind: 'absent'` (not zero) when:
82
+ * - no settled calls were observed, or
83
+ * - only a single route tag has a non-zero count (one-sided observation).
110
84
  *
111
- * Abort discipline: pre-registry input problems (missing/empty operation, missing client, an invalid
112
- * requireCoverage value) are collected and thrown as ONE error listing ALL of them. The
113
- * requireCoverage-vs-actual check is necessarily sequenced AFTER the registry call (it needs the
114
- * registry's coverage), so it is its own abort; it cannot be batched with the pre-registry problems
115
- * because a valid operation+client are required even to reach the registry.
85
+ * Never returns a number that could be read as "0% enforcement" or "100% coverage" from partial data.
86
+ * The package does not call this automatically.
116
87
  */
117
- import { guardToolRegistry } from './tool-registry.js';
88
+ export function guardedFractionAmongRoutes(counts) {
89
+ const routesWithCalls = ['GUARDED', 'PASSTHROUGH', 'BYPASSED']
90
+ .filter((r) => counts[r] > 0);
91
+ if (routesWithCalls.length === 0) {
92
+ return { kind: 'absent', why: 'no_settled_calls' };
93
+ }
94
+ if (routesWithCalls.length === 1) {
95
+ return { kind: 'absent', why: 'one_route_only' };
96
+ }
97
+ const sum = counts.GUARDED + counts.PASSTHROUGH + counts.BYPASSED;
98
+ return { kind: 'present', fraction: counts.GUARDED / sum };
99
+ }
118
100
  /**
119
101
  * Whether the composition's call-time / content policy is complete enough to claim product-level
120
102
  * runtime inescapability. Stays FALSE until EVERY condition below is delivered — later slices ADD
@@ -122,23 +104,15 @@ import { guardToolRegistry } from './tool-registry.js';
122
104
  *
123
105
  * Conditions (all required; do NOT flip this constant because a subset landed):
124
106
  * (1) DONE — automatic binders for shapes that already carry both edit sides (old_string/new_string,
125
- * edits[] → artifacts). Commit 582504a. Does NOT cover write-style path+new-content-only calls.
107
+ * edits[] → artifacts). Does NOT cover write-style path+new-content-only calls.
126
108
  * (2) NOT DONE — receipt carry-forward (S5).
127
- * (3) NOT DONE — freshness-safe prior content for write-style calls. The package does no IO, so a
128
- * `before` the host never supplied cannot be obtained; inventing one (including empty string)
129
- * fabricates an oracle input. Needs a host/guard freshness protocol, not binder renaming.
130
- *
131
- * Historically this comment named only (1) and (2). That wording is narrower than reality: after (1)
132
- * shipped, a reader could think "binders + S5" was enough and flip the flag incorrectly. Do not.
109
+ * (3) NOT DONE — freshness-safe prior content for write-style calls.
133
110
  *
134
111
  * UNCHANGED by S2 / composition observation (observing ≠ enforcing). Value stays false until all three.
135
112
  */
136
113
  const COMPOSITION_CALL_POLICY_COMPLETE = false;
137
114
  const RESIDUAL_CALL_POLICY_INCOMPLETE = 'composition_call_policy_incomplete';
138
115
  // S2 weakening-override residuals — derived SOLELY from registry report.warnings (never recomputed).
139
- // The name says "heuristic_mutator" on purpose: the registry only emits the underlying warning for a
140
- // downgrade of a HEURISTIC-classified mutator (see the header limitation), so the residual must not
141
- // promise coverage of a downgrade it cannot see (an explicit-mutationClass tool).
142
116
  const RESIDUAL_FORCED_READONLY = 'composition_forced_readonly_on_heuristic_mutator';
143
117
  const RESIDUAL_UNKNOWN_READONLY = 'composition_unknown_treated_as_readonly';
144
118
  /**
@@ -161,25 +135,23 @@ function coverageRank(coverage) {
161
135
  : undefined;
162
136
  }
163
137
  /**
164
- * Invoke onOutcome without affecting the host call. Swallows synchronous throws AND rejected
138
+ * Invoke onSettledCall without affecting the host call. Swallows synchronous throws AND rejected
165
139
  * promises (unlike the frozen emit hook, which only try/catches sync throws and ignores returned
166
140
  * promises — that host-side footgun is deliberately not reproduced here).
167
141
  */
168
- async function safeOnOutcome(onOutcome, payload) {
142
+ async function safeOnSettledCall(onSettledCall, payload) {
169
143
  try {
170
- await Promise.resolve(onOutcome(payload));
144
+ await Promise.resolve(onSettledCall(payload));
171
145
  }
172
146
  catch {
173
147
  /* observation never changes execution */
174
148
  }
175
149
  }
176
150
  /**
177
- * Build a NEW ProtectedTool shell around a frozen guarded tool so we can replace execute without
178
- * mutating the frozen registry object. name / description / inputSchema / meta / _coderifts are
179
- * copied by reference (the _coderifts bag is already frozen by the registry). The new shell is
180
- * frozen for parity with registry tools.
151
+ * Build a NEW ProtectedTool shell so we can observe settle without mutating the frozen registry object.
152
+ * name / description / inputSchema / meta / _coderifts are copied by reference.
181
153
  */
182
- function wrapGuardedForObservation(tool, onOutcome) {
154
+ function wrapForSettledCallObservation(tool, route, onSettledCall) {
183
155
  const innerExecute = tool.execute;
184
156
  const toolName = tool.name;
185
157
  const shell = {
@@ -189,22 +161,63 @@ function wrapGuardedForObservation(tool, onOutcome) {
189
161
  meta: tool.meta,
190
162
  _coderifts: tool._coderifts,
191
163
  execute: async (args) => {
192
- // If the inner execute rejects, do NOT invent an outcome — propagate the rejection unchanged.
193
- const outcome = await innerExecute(args);
194
- await safeOnOutcome(onOutcome, {
195
- toolName,
196
- // Guarded execute always returns a GuardOutcome from guardToolCall; assert the type for callers.
197
- outcome: outcome,
198
- });
199
- // Host must receive the same object the unwrapped tool returned (reference-identical).
200
- return outcome;
164
+ try {
165
+ const result = await innerExecute(args);
166
+ if (route === 'GUARDED') {
167
+ await safeOnSettledCall(onSettledCall, {
168
+ kind: 'settled_call',
169
+ route: 'GUARDED',
170
+ terminal: 'RETURNED',
171
+ toolName,
172
+ // Guarded execute always returns a GuardOutcome from guardToolCall.
173
+ outcome: result,
174
+ });
175
+ }
176
+ else {
177
+ await safeOnSettledCall(onSettledCall, {
178
+ kind: 'settled_call',
179
+ route,
180
+ terminal: 'RETURNED',
181
+ toolName,
182
+ result,
183
+ });
184
+ }
185
+ // Host must receive the same object/value the unwrapped tool returned (reference-identical for objects).
186
+ return result;
187
+ }
188
+ catch (error) {
189
+ await safeOnSettledCall(onSettledCall, {
190
+ kind: 'settled_call',
191
+ route,
192
+ terminal: 'THREW',
193
+ toolName,
194
+ error,
195
+ });
196
+ throw error;
197
+ }
201
198
  },
202
199
  };
203
- // Match registry freeze discipline: freeze _coderifts if not already, freeze the shell.
204
200
  if (!Object.isFrozen(shell._coderifts))
205
201
  Object.freeze(shell._coderifts);
206
202
  return Object.freeze(shell);
207
203
  }
204
+ /** Tools forced to readonly via heuristic break-glass — observed as BYPASSED, not true PASSTHROUGH. */
205
+ function bypassedToolNames(report) {
206
+ const names = new Set();
207
+ for (const w of report.warnings) {
208
+ const prefix = 'force_readonly_on_mutator_heuristic:';
209
+ if (w.startsWith(prefix))
210
+ names.add(w.slice(prefix.length));
211
+ }
212
+ return names;
213
+ }
214
+ function routeForTool(tool, bypassed) {
215
+ if (tool._coderifts.guarded)
216
+ return 'GUARDED';
217
+ if (bypassed.has(tool.name))
218
+ return 'BYPASSED';
219
+ return 'PASSTHROUGH';
220
+ }
208
221
  /**
209
222
  * Wrap guardToolRegistry with a mandatory operation and a separately-computed composition assurance.
210
223
  * Fails at CONSTRUCTION (never at first tool call) for a missing client, a missing/empty operation, an
@@ -294,14 +307,14 @@ export function withCodeRifts(input) {
294
307
  inescapable_runtime: compositionInescapableRuntime,
295
308
  residuals,
296
309
  };
297
- // Outcome observation: registry returns FROZEN ProtectedTool objects (and a frozen tools array).
298
- // We cannot reassign execute on a frozen tool, so we build NEW shells for guarded tools only when
299
- // onOutcome is provided. Readonly tools are left as the same object references (no GuardOutcome).
300
- // The tools ARRAY is also frozen by the registry — always return a fresh array when we wrap.
310
+ // Settled-call observation: registry returns FROZEN ProtectedTool objects (and a frozen tools array).
311
+ // We cannot reassign execute on a frozen tool, so we build NEW shells for EVERY tool in the table
312
+ // when onSettledCall is provided including passthrough and forced-bypass (readonly) tools.
301
313
  let toolsOut = tools;
302
- if (input.onOutcome) {
303
- const onOutcome = input.onOutcome;
304
- toolsOut = Object.freeze(tools.map((t) => (t._coderifts.guarded ? wrapGuardedForObservation(t, onOutcome) : t)));
314
+ if (input.onSettledCall) {
315
+ const onSettledCall = input.onSettledCall;
316
+ const bypassed = bypassedToolNames(report);
317
+ toolsOut = Object.freeze(tools.map((t) => wrapForSettledCallObservation(t, routeForTool(t, bypassed), onSettledCall)));
305
318
  }
306
319
  const result = {
307
320
  tools: toolsOut,
@@ -1 +1 @@
1
- {"version":3,"file":"with-coderifts.js","sourceRoot":"","sources":["../../src/with-coderifts.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"with-coderifts.js","sourceRoot":"","sources":["../../src/with-coderifts.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coderifts/agent-guard",
3
- "version": "1.8.0",
3
+ "version": "2.0.0",
4
4
  "description": "Fail-closed guard for AI agent tool calls — preflight contract changes before they execute. Security core frozen (agent-guard-api v1.0); v1.1 adds client-side enforcement: receipt→envelope binding, decision↔action reconciliation, safe_for_agent + degraded fail-closed, and enforced⟺executed (P0 client-enforcement pack).",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",