Integrations Open-Core
Intutic supports 18 AI agent harnesses out of the box. Run intutic init in your project and the CLI auto-detects which agents are present, then syncs governance rules to each one.
intutic init
# ✔ Detected harnesses:
# ✔ cursor → .cursorrules
# ✔ claude-code → CLAUDE.md
# ✔ antigravity → .gemini/settings.jsonEvery harness connects through the same governance pipeline — proxy interception, SOP evaluation, and real-time enforcement — regardless of the underlying agent.
IDE Extensions
Code editors with built-in AI that read project-level config files.
| Harness | Description | Config File |
|---|---|---|
| Cursor | AI-powered code editor by Anysphere | .cursorrules |
| Windsurf | AI-native code editor by Codeium | .windsurfrules |
| Cline | VS Code extension for autonomous agentic coding | .cline/hooks/hooks.json |
| Roo Code | AI-powered VS Code extension (formerly Roo Clinic) | .roorules |
| Continue | Open-source autopilot for VS Code and JetBrains | .continue/config.json |
CLI Tools
Terminal-based agents that accept proxy environment variables or config files.
| Harness | Description | Config File |
|---|---|---|
| Claude Code | Anthropic's agentic coding tool | CLAUDE.md |
| Aider | AI pair programming CLI | .aider.conf.yml |
| Codex | OpenAI's autonomous coding agent | .env.intutic |
| Antigravity | Google's Gemini AI coding agent | .gemini/settings.json |
Agent Frameworks
Autonomous coding agents that run multi-step tasks with tool use.
| Harness | Description | Config File |
|---|---|---|
| OpenHands | Open-source AI software developer platform | config.toml |
| Goose | Block's terminal agent and desktop framework | .agents/plugins/ |
| Hermes | NousResearch's skill-based developer agent | .hermes/config.yaml |
| Pi | Inflection AI's developer command-line assistant | .pi/hooks.json |
| OpenClaw | Developer terminal agent | .openclaw/openclaw.json |
Platforms
Web UIs, desktop apps, and collaboration tools that host AI agents.
| Harness | Description | Config File |
|---|---|---|
| n8n | Workflow automation platform | API-based |
| Open WebUI | Web interface for LLMs | .open-webui/ filter |
| Claude Desktop | Anthropic's desktop application | claude_desktop_config.json |
| GitHub Copilot | GitHub's AI pair programmer | .github/copilot-instructions.md |
Additional Integrations
Beyond the 18 auto-detected harnesses, Intutic supports:
| Integration | Description |
|---|---|
| Standalone Cloud Proxy | Route any LLM traffic through proxy.intutic.ai without a harness adapter — works with any OpenAI-compatible client |
| Kitkat Agent Custom Skill | Pre-built governance skill for agents that support custom skill files (.intutic/SKILL.md) |
How it works
All 18 harnesses share the same integration flow:
┌──────────────┐ ┌─────────────┐ ┌──────────────┐
│ intutic │────▶│ Detect │────▶│ Write │
│ init │ │ harnesses │ │ config │
└──────────────┘ └─────────────┘ └──────┬───────┘
│
┌──────────────┐ ┌─────────────┐ ┌──────▼───────┐
│ Enforce │◀────│ Evaluate │◀────│ intutic │
│ verdict │ │ SOPs │ │ connect │
└──────────────┘ └─────────────┘ └──────────────┘intutic initscans your workspace and detects all harness config files- Governance rules (SOPs) are written into each harness's native config format
intutic connectstarts the proxy and keeps configs in sync as SOPs change- Every tool call flows through the proxy for real-time policy evaluation
Each adapter uses atomic writes (write to temp file, then rename) to prevent config corruption during sync.
For the technical details of each config format (markdown, YAML, JSON, TOML, env), see the Integration Overview.