Skip to content

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:

bash
touch CLAUDE.md

2. Initialize Intutic

bash
intutic init

The CLI detects CLAUDE.md and registers Claude Code as a harness:

✓ Detected harnesses:
  • claude-code → CLAUDE.md

3. Start sync

bash
intutic connect

What gets written

Intutic writes governance SOPs as markdown into CLAUDE.md:

markdown
# 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

PropertyValue
Harness typeclaude-code
Config fileCLAUDE.md
DetectionChecks for CLAUDE.md in workspace root
FormatMarkdown (header + SOP sections)
Write strategyAtomic (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:

bash
export ANTHROPIC_BASE_URL=https://proxy.intutic.dev/v1

The proxy URL is included in the CLAUDE.md header for reference.

AI Governance for Agentic Coding