Skip to content

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.

bash
intutic init
# ✔ Detected harnesses:
#   ✔ cursor       → .cursorrules
#   ✔ claude-code  → CLAUDE.md
#   ✔ antigravity  → .gemini/settings.json

Every 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.

HarnessDescriptionConfig File
CursorAI-powered code editor by Anysphere.cursorrules
WindsurfAI-native code editor by Codeium.windsurfrules
ClineVS Code extension for autonomous agentic coding.cline/hooks/hooks.json
Roo CodeAI-powered VS Code extension (formerly Roo Clinic).roorules
ContinueOpen-source autopilot for VS Code and JetBrains.continue/config.json

CLI Tools

Terminal-based agents that accept proxy environment variables or config files.

HarnessDescriptionConfig File
Claude CodeAnthropic's agentic coding toolCLAUDE.md
AiderAI pair programming CLI.aider.conf.yml
CodexOpenAI's autonomous coding agent.env.intutic
AntigravityGoogle's Gemini AI coding agent.gemini/settings.json

Agent Frameworks

Autonomous coding agents that run multi-step tasks with tool use.

HarnessDescriptionConfig File
OpenHandsOpen-source AI software developer platformconfig.toml
GooseBlock's terminal agent and desktop framework.agents/plugins/
HermesNousResearch's skill-based developer agent.hermes/config.yaml
PiInflection AI's developer command-line assistant.pi/hooks.json
OpenClawDeveloper terminal agent.openclaw/openclaw.json

Platforms

Web UIs, desktop apps, and collaboration tools that host AI agents.

HarnessDescriptionConfig File
n8nWorkflow automation platformAPI-based
Open WebUIWeb interface for LLMs.open-webui/ filter
Claude DesktopAnthropic's desktop applicationclaude_desktop_config.json
GitHub CopilotGitHub's AI pair programmer.github/copilot-instructions.md

Additional Integrations

Beyond the 18 auto-detected harnesses, Intutic supports:

IntegrationDescription
Standalone Cloud ProxyRoute any LLM traffic through proxy.intutic.ai without a harness adapter — works with any OpenAI-compatible client
Kitkat Agent Custom SkillPre-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     │
└──────────────┘     └─────────────┘     └──────────────┘
  1. intutic init scans your workspace and detects all harness config files
  2. Governance rules (SOPs) are written into each harness's native config format
  3. intutic connect starts the proxy and keeps configs in sync as SOPs change
  4. 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.

The active firewall for AI agents