Are you the author? Sign in to claim
The open source circuit breaker for AI agents. Real-time security, secret DLP, and loop burn prevention for Claude Code,
Real-time security, secret DLP, and loop burn prevention for autonomous AI coding agents.
Quickstart • Architecture • Key Features • Supported Harnesses • Docs
Existing AI observability tools (like LangSmith or Portkey) are passive. They record execution logs after an agent leaks a secret, deletes files, or loops into hundreds of dollars of API spend.
Intutic is an active, low-latency circuit breaker. It sits in the tool-call path between your AI agents and local shell/production APIs. Every tool execution passes through a sub-5ms policy evaluation chain — blocking dangerous commands before they run and steering agentic loops in real time.
Intutic runs as a high-performance local or self-hosted proxy (written in Rust) alongside a lightweight bidirectional config sync daemon (sync-daemon):
flowchart TD
subgraph DevEnvironment[" 💻 Developer Environment "]
Agent["🤖 AI Coding Agent<br><i>(Claude Code, Cursor, Aider, LangGraph)</i>"]
SOP["📝 Local SOP Rules<br><i>(CLAUDE.md / .cursorrules / SKILL.md)</i>"]
end
subgraph HotPathProxy[" ⚡ Intutic Hot-Path Proxy (:4000) "]
Engine["🔒 WASM Policy Engine<br><i>(<5ms Evaluation Latency)</i>"]
DLP["🔐 Secret DLP & Masking"]
PCAS["🛡️ PCAS Action Primitives<br><code>BYPASS</code> | <code>ENHANCE</code> | <code>HIJACK</code> | <code>KILL</code>"]
end
subgraph SyncDaemon[" 🔄 Sync Daemon "]
Reconcile["Bidirectional Config Reconciler<br><i>(Harness Config Sync)</i>"]
end
subgraph UpstreamProviders[" 🌐 Upstream Providers "]
Providers["Anthropic API / OpenAI / LiteLLM / Ollama"]
end
Agent -->|1. Tool Call / Prompt| HotPathProxy
SOP -->|2. Rule Sync| Reconcile
Reconcile -->|3. Hot-Reload Rules| Engine
HotPathProxy -->|4. Clean Request| UpstreamProviders
Engine -->|5. Block/Hijack Verdict| Agent
# Install global CLI and native Rust proxy binary
npm install -g @intutic/cli @intutic/proxy
# Or run the native proxy directly on-demand
npx @intutic/proxy
Run intutic connect inside your project folder. This boots the local high-speed Rust proxy on port 4000 and auto-detects installed coding assistants:
intutic connect
Point your favorite LLM client or agent framework to the local proxy:
export ANTHROPIC_BASE_URL="http://localhost:4000/v1"
export OPENAI_BASE_URL="http://localhost:4000/v1"
That's it! Your agent is now governed by real-time safety guardrails.
| Feature | Description |
|---|---|
| ⚡ Sub-5ms WASM Engine | Policy evaluation overhead stays under 5ms, preserving typing speed and agent execution fluidity. |
| 🛡️ Zero-Trust Tool Interception | Intercepts dangerous commands (rm -rf, git push --force, DROP TABLE) before they touch your system. |
| 🔐 Secret DLP & Masking | Automatically redacts API keys ([REDACTED_SECRET]), AWS credentials, and tokens in prompts & tool payloads. |
| 💰 Session Spend Ceilings | Prevents "loop burn" by enforcing token spending ceilings per session (e.g. $5.00 limit). |
| 🔄 18+ Harness Adapters | Pre-configured support for Claude Code CLI, Cursor, Windsurf, Aider, Antigravity, and LangGraph. |
| 🤖 Single & Multi-Agent Swarms | Governs single developer tools as well as multi-agent graph workflows (LangGraph, CrewAI, AutoGen). |
Every tool call and prompt evaluated by Intutic produces one of four PCAS Action Primitives:
┌──────────┐ ┌───────────┐ ┌────────────┐ ┌──────────┐
│ BYPASS │ │ ENHANCE │ │ HIJACK │ │ KILL │
└────┬─────┘ └─────┬─────┘ └─────┬──────┘ └────┬─────┘
│ │ │ │
▼ ▼ ▼ ▼
Direct Pass Inject Safety Redact Secrets Hard-Abort
(<1ms Overhead) Context SOP or Swap Args Runaway Loop
BYPASS: Standard safe execution passes through natively (<1ms overhead).ENHANCE: Inject contextual SOP prompt rules or architectural guidelines.HIJACK: Substitute dangerous tool parameters or redact secrets on the fly.KILL: Hard-abort execution thread if an agent attempts destructive file/git ops or hits loop caps.Intutic works out of the box with 18+ popular AI harnesses without modifying your agent's source code:
| Category | Supported Tools & Frameworks |
|---|---|
| Single-Agent Assistants | Claude Code CLI, Cursor, Windsurf, Aider, Antigravity, Cline, Roo Code, Codex, OpenWebUI |
| Multi-Agent Swarms | LangGraph, CrewAI, AutoGen, OpenHands, OpenClaw, Hermes, n8n |
Intutic governance rules are written in standard Markdown files inside your repository root (CLAUDE.md, .cursorrules, or .windsurfrules). Intutic automatically syncs and enforces them in real time:
# Standard Operating Procedure (SOP): Safety Guardrails
## Rules
1. **No Secret Leaks**: Agents must never output raw API keys or passwords.
2. **File Boundaries**: Restrict file modifications to the current project directory.
3. **No Force Push**: Block `git push --force` on all branches.
## Denied Commands
- `rm -rf`
- `DROP TABLE`
- `TRUNCATE`
Because Intutic evaluates prompts pre-flight, you can run interactive governance commands directly inside your agent chat:
/intutic status # View active session spend and compliance score
/intutic rules # List active WASM & Markdown SOP rules
packages/wasm-sdk/@intutic/cli — Developer onboarding CLI@intutic/proxy — Native Rust proxy binary wrapper@intutic/clawde — Programmatic TypeScript client SDK@intutic/mcp-governance-proxy — Stdio JSON-RPC MCP proxy@intutic/shared-types — Zod-validated shared TypeScript typesIf you find Intutic useful, please give us a star on GitHub! It helps us support more agent harnesses and policy engines.
For custom VPC deployments, enterprise-grade SSO/SAML, dedicated SLA support, or team compliance auditing, visit intutic.ai or contact us at support@intutic.ai.
This project is licensed under the MIT License.
1000+ skills curated from Anthropic, Vercel, Stripe, and other engineering teams
Design enforcement with memory — keeps your UI consistent across a project
Detects 37 AI writing patterns and rewrites text with human rhythm across 5 voice profiles
WCAG accessibility audit — automated scanning, manual review, remediation