How Adapters Work
When a heartbeat fires, FideliOS:- Looks up the agent’s
adapterTypeandadapterConfig - Calls the adapter’s
execute()function with the execution context - The adapter spawns or calls the agent runtime
- The adapter captures stdout, parses usage/cost data, and returns a structured result
Built-in Adapters
| Adapter | Type Key | Description |
|---|---|---|
| Claude Local | claude_local | Runs Claude Code CLI locally |
| Codex Local | codex_local | Runs OpenAI Codex CLI locally |
| Gemini Local | gemini_local | Runs Gemini CLI locally (experimental — adapter package exists, not yet in stable type enum) |
| OpenCode Local | opencode_local | Runs OpenCode CLI locally (multi-provider provider/model) |
| Hermes Local | hermes_local | Runs Hermes CLI locally |
| Cursor | cursor | Runs Cursor in background mode |
| Pi Local | pi_local | Runs an embedded Pi agent locally |
| OpenClaw Gateway | openclaw_gateway | Connects to an OpenClaw gateway endpoint |
| Process | process | Executes arbitrary shell commands |
| HTTP | http | Sends webhooks to external agents |
Adapter Architecture
Each adapter is a package with three modules:| Registry | What it does |
|---|---|
| Server | Executes agents, captures results |
| UI | Renders run transcripts, provides config forms |
| CLI | Formats terminal output for live watching |
Choosing an Adapter
- Need a coding agent? Use
claude_local,codex_local,opencode_local, orhermes_local - Need to run a script or command? Use
process - Need to call an external service? Use
http - Need something custom? Create your own adapter