You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix weaver-spec compatibility table and CI job name
- README I-01: correct claim that raw output is 'never returned';
raw mode exists but is restricted to admin principals only
- README I-06: fix revoke_token() → revoke(token_id) and
revoke_all() → revoke_all(principal_id) to match actual API
- ci.yml: rename job conformance → conformance_stub and display
name to make stub status unambiguous in PR check summaries
- ci.yml: add comment clarifying weaver-contracts (pip) vs
weaver_contracts (Python module) naming difference
Addresses copilot-pull-request-reviewer comments on PR #65.
|**I-01**| LLM never sees raw tool output by default |`Context Firewall` always transforms `RawResult → Frame`; raw driver output is never returned to the caller|
120
+
|**I-01**| LLM never sees raw tool output by default |`Context Firewall` always transforms `RawResult → Frame`; raw driver output is not returned by default, and non-admin principals cannot obtain `raw` response mode|
121
121
|**I-02**| Every execution is authorized and auditable |`PolicyEngine` evaluates every invocation; `TraceStore` records every `ActionTrace`; `HMACTokenProvider` validates tokens before execution |
122
-
|**I-06**| CapabilityTokens are scoped | Tokens bind `principal_id + capability_id + constraints` with an explicit TTL; `revoke_token()` / `revoke_all()` are supported |
122
+
|**I-06**| CapabilityTokens are scoped | Tokens bind `principal_id + capability_id + constraints` with an explicit TTL; `revoke(token_id)` / `revoke_all(principal_id)` are supported |
123
123
124
124
See [docs/agent-context/invariants.md](docs/agent-context/invariants.md) for the full internal invariant list and [weaver-spec INVARIANTS.md](https://github.com/dgenio/weaver-spec/blob/main/docs/INVARIANTS.md) for the specification.
0 commit comments