Context Firewall
Use the public AIWG CLI to inspect context that can enter provider sessions. Keep
scans read-only, never print source bodies as part of a threat finding, and treat
baseline confirmation as an attestation that every planned record was reviewed.
Triggers
- "audit context" → run the read-only firewall scan
- "check context budget" → scan and explain budget attribution
- "review memory baseline" → produce the full baseline plan without writing
- "approve the context baseline" → plan first, then request explicit write authorization
- "doctor says the context baseline is missing" → route to the plan-first workflow
Process
- Run
aiwg context-firewall scan, adding repeatable --provider <name>,
--strict, or --json only when the task needs them.
- Report violations and warnings using paths, trust labels, review states,
digests, sizes, and signal identifiers. Do not reproduce suspicious content.
- If a baseline is requested, run
aiwg context-firewall baseline --plan.
Inspect every emitted record and surface any quarantined, stale, external, or
changed entry before considering a write.
- Do not infer approval from a request to scan, diagnose, plan, or repair.
Baseline mutation requires explicit user authorization after the plan has
been presented and reviewed.
- Only after that authorization, run
aiwg context-firewall baseline --write --confirm-reviewed. Use
--output <project-relative-path> only when the user requested a custom
destination.
- Re-run
aiwg context-firewall scan --strict and report the resulting status.
The writer fails closed for unsafe records, paths outside the project root,
symlink escapes, and missing confirmation. Do not bypass those checks or invoke
the underlying implementation script directly.
Output
Report:
- providers and total portable context budget;
- attribution by memory, rule, skill, agent, generated bridge, and project-local;
- trust and review findings by path, without source bodies;
- whether the operation was read-only or changed the reviewed baseline;
- the final strict scan status.
References
- @$AIWG_ROOT/docs/security/context-memory-firewall.md — operator model and remediation guide
- @$AIWG_ROOT/docs/agents/cli-reference.md — public CLI contract
- @$AIWG_ROOT/tools/security/context-memory-firewall.mjs — packaged engine; never invoke directly for user remediation
1---2name: context-firewall3description: Audit provider-facing context, trust, drift, poisoning signals, and budget, then manage the reviewed baseline through a plan-first public CLI workflow4---56# Context Firewall78Use the public AIWG CLI to inspect context that can enter provider sessions. Keep9scans read-only, never print source bodies as part of a threat finding, and treat10baseline confirmation as an attestation that every planned record was reviewed.1112## Triggers1314- "audit context" → run the read-only firewall scan15- "check context budget" → scan and explain budget attribution16- "review memory baseline" → produce the full baseline plan without writing17- "approve the context baseline" → plan first, then request explicit write authorization18- "doctor says the context baseline is missing" → route to the plan-first workflow1920## Process21221. Run `aiwg context-firewall scan`, adding repeatable `--provider <name>`,23 `--strict`, or `--json` only when the task needs them.242. Report violations and warnings using paths, trust labels, review states,25 digests, sizes, and signal identifiers. Do not reproduce suspicious content.263. If a baseline is requested, run `aiwg context-firewall baseline --plan`.27 Inspect every emitted record and surface any quarantined, stale, external, or28 changed entry before considering a write.294. Do not infer approval from a request to scan, diagnose, plan, or repair.30 Baseline mutation requires explicit user authorization after the plan has31 been presented and reviewed.325. Only after that authorization, run33 `aiwg context-firewall baseline --write --confirm-reviewed`. Use34 `--output <project-relative-path>` only when the user requested a custom35 destination.366. Re-run `aiwg context-firewall scan --strict` and report the resulting status.3738The writer fails closed for unsafe records, paths outside the project root,39symlink escapes, and missing confirmation. Do not bypass those checks or invoke40the underlying implementation script directly.4142## Output4344Report:4546- providers and total portable context budget;47- attribution by memory, rule, skill, agent, generated bridge, and project-local;48- trust and review findings by path, without source bodies;49- whether the operation was read-only or changed the reviewed baseline;50- the final strict scan status.5152## References5354- @$AIWG_ROOT/docs/security/context-memory-firewall.md — operator model and remediation guide55- @$AIWG_ROOT/docs/agents/cli-reference.md — public CLI contract56- @$AIWG_ROOT/tools/security/context-memory-firewall.mjs — packaged engine; never invoke directly for user remediation