Use this file to discover all available pages before exploring further.
Every agent output passes through 7 deterministic layers before being accepted. No layer uses an LLM. Every check is a function: same input, same output, every time.
File:core/tool_hooks.pyIntercepts tool calls before they execute — not after. The hook receives tool name + parameters, runs them through Constitution and AST, and either approves or blocks. Blocked calls return a REJECTED verdict with reason.
File:core/adversarial.pyRed/blue pipeline against prompt injection, jailbreaks, and indirect injection attacks.RedTeamAgent probes → GuardianAgent evaluates → DeterministicArbiter decides (no LLM arbitration).DLP hook: adversarial_dlp_hook(text) scans for API keys, private keys, PII, and JWT tokens before any output is accepted.
File:core/z3_verifier.pyFour mathematical invariants formally proven every cycle.In addition, core/transitions.py verifies state transitions across all 9 transition types. Results saved to logs/z3_proofs.json.