Claude Code
Integrate Intutic governance with Claude Code — Anthropic's agentic coding tool.
How it works
Intutic writes governance rules into your project's CLAUDE.md file, which Claude Code reads as its system instructions. This means governance rules are automatically applied to every Claude Code session in your workspace.
Setup
1. Ensure CLAUDE.md exists
Claude Code looks for CLAUDE.md in your project root. If you don't have one yet:
touch CLAUDE.md2. Initialize Intutic
intutic initThe CLI detects CLAUDE.md and registers Claude Code as a harness:
✓ Detected harnesses:
• claude-code → CLAUDE.md3. Start sync
intutic connectWhat gets written
Intutic writes governance SOPs as markdown into CLAUDE.md:
# Intutic Governance Rules (auto-generated)
# DO NOT EDIT — managed by intutic sync daemon
# Last sync: 2026-06-11T22:24:00Z
> **Proxy URL:** `https://proxy.intutic.dev/v1`
## Code Review Requirements
All code changes must include unit tests with >80% coverage...
---
## Security Policy
Never commit secrets, API keys, or credentials to version control...WARNING
Intutic overwrites the entire CLAUDE.md file. If you have custom instructions, consider moving them to a separate file or incorporating them as SOPs in the Intutic dashboard.
Config details
| Property | Value |
|---|---|
| Harness type | claude-code |
| Config file | CLAUDE.md |
| Detection | Checks for CLAUDE.md in workspace root |
| Format | Markdown (header + SOP sections) |
| Write strategy | Atomic (write to .intutic-tmp, then rename) |
Proxy routing
Claude Code uses the ANTHROPIC_API_KEY environment variable. To route through the Intutic proxy, set the base URL:
export ANTHROPIC_BASE_URL=https://proxy.intutic.dev/v1The proxy URL is included in the CLAUDE.md header for reference.