Skip to content

OpenHands

Integrate Intutic governance with OpenHands — the open-source AI software developer platform.

How it works

Intutic writes governance rules into an [intutic] section of your config.toml file, which OpenHands reads for configuration. The section includes the proxy URL and SOP instructions as a multi-line TOML string.

Setup

1. Ensure config.toml exists

bash
touch config.toml

2. Initialize Intutic

bash
intutic init
✓ Detected harnesses:
  • openhands → config.toml

3. Start the proxy

bash
intutic start

Have an Intutic account or run your own control plane? Use intutic connect instead. It starts the same proxy and adds bidirectional config sync.

What gets written

Intutic writes a TOML file with an [intutic] section:

toml
# Intutic Governance Rules (auto-generated)
# DO NOT EDIT — managed by intutic sync daemon
# Last sync: 2026-06-11T22:24:00Z

[intutic]
proxy_url = "http://localhost:4000/v1"
instructions = """
## Code Review Requirements

All code changes must include unit tests...

---

## Security Policy

Never commit secrets or API keys...
"""

WARNING

Intutic overwrites the entire config.toml file. If you have custom OpenHands settings, keep them in a separate config file or manage them through the Intutic dashboard.

Config details

PropertyValue
Harness typeopenhands
Config fileconfig.toml
DetectionChecks for config.toml in workspace root
FormatTOML ([intutic] section with proxy_url and instructions)
Write strategyAtomic (write to .intutic-tmp, then rename)

The circuit breaker for AI agents