Circuit Breaker
Four enforcement actions — BYPASS, ENHANCE, HIJACK, KILL — evaluated per tool call in under 50ms. SOPs define the rules; the circuit breaker intercepts, rewrites, or blocks actions before they reach your infrastructure.
Intutic sits in the tool-call path between your AI agents and production. Every file write, API call, and shell command passes through a <5ms evaluation chain — blocking bad actions and steering agentic loops in real time.
# Install global CLI and native Rust proxy binary
npm install -g @intutic/cli @intutic/proxy
# Start the local proxy gateway (no account needed)
intutic startYour workspace is now governed. Every AI agent request flows through the Intutic proxy, where SOPs are enforced and traces are recorded.
Intutic's circuit breaker evaluates every tool call against your policy stack. Here's what gets caught:
| Threat | How It's Blocked |
|---|---|
| 🗂️ File system destruction | rm -rf, mass deletes, and recursive overwrites are intercepted by path-pattern SOPs |
| 🔐 Secrets in prompts | API keys, tokens, and credentials are redacted before they reach the model |
| 🏭 Production writes | Database mutations against prod connections are blocked or routed to review queue |
| 🔀 Unauthorized git ops | Force pushes, branch deletions, and pushes to protected branches are killed |
| 💸 Budget overruns | Token spend exceeding session ceilings triggers automatic session suspension |
| 🌐 Unapproved API calls | Outbound HTTP to non-allowlisted domains is blocked at the proxy layer |
| 🧩 MCP tool violations | Calls to unapproved MCP servers or tools are intercepted before execution |
| 💉 SQL injection | Destructive SQL patterns (DROP, TRUNCATE, DELETE without WHERE) are caught and blocked |
Every blocked action generates an audit log entry with full context — who, what, when, and why it was stopped.
If you are using an agentic coding assistant (such as Claude Code, Cursor, Google Antigravity, or OpenAI Codex), you can download our pre-configured Kitkat Governance Skill to load rules directly into your workspace:
.agents/skills/intutic-governance-kitkat/ inside your project root).