Skip to content

IntuticPolicy as Code for AI agents

Agent policies live as files in git. Intutic — the circuit breaker for AI agents — evaluates every file write, API call, and shell command against them in a synchronous, in-process enforcement chain: no model call, no network hop. Every decision becomes Continuous Compliance evidence and Continuous Enforcement action.

Quick Install

bash
# Install global CLI and native Rust proxy binary
npm install -g @intutic/cli @intutic/proxy

# Start the local proxy gateway (no account needed)
intutic start

Your workspace is now governed. Every AI agent request flows through the Intutic proxy, where SOPs are enforced and traces are recorded.

What Gets Blocked

Intutic's circuit breaker evaluates every tool call against your policy stack. Here's what gets caught:

ThreatHow It's Blocked
🗂️ File system destructionrm -rf, mass deletes, and recursive overwrites are intercepted by path-pattern SOPs
🔐 Secrets in promptsAPI keys, tokens, and credentials are redacted before they reach the model
🏭 Production writesDatabase mutations against prod connections are blocked or routed to review queue
🔀 Unauthorized git opsForce pushes, branch deletions, and pushes to protected branches are killed
💸 Budget overrunsToken spend exceeding session ceilings triggers automatic session suspension
🌐 Unapproved API callsOutbound HTTP to non-allowlisted domains is blocked at the proxy layer, and intutic enforce closes the escape hatch — a host firewall that makes the proxy the only path off the machine
🧩 MCP tool violationsCalls to unapproved MCP servers or tools are intercepted before execution
💉 SQL injectionDestructive 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.

🐱 Agentic Custom Skill (Kitkat)

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:

The circuit breaker for AI agents