Adapters Overview
Adapters are the bridge between AImetier’s orchestration layer and agent runtimes. Each adapter knows how to invoke a specific type of AI agent and capture its results.
How Adapters Work
Section titled “How Adapters Work”When a heartbeat fires, AImetier:
- 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
Section titled “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) |
| Cursor | cursor |
Runs Cursor in background mode |
| Pi Local | pi_local |
Runs an embedded Pi agent locally |
| Hermes Local | hermes_local |
Runs Hermes CLI locally (hermes-paperclip-adapter) |
| OpenClaw Gateway | openclaw_gateway |
Connects to an OpenClaw gateway endpoint |
| Process | process |
Executes arbitrary shell commands |
| HTTP | http |
Sends webhooks to external agents |
External (plugin) adapters
Section titled “External (plugin) adapters”These adapters ship as standalone npm packages and are installed via the plugin system:
| Adapter | Package | Type Key | Description |
|---|---|---|---|
| Droid Local | @henkey/droid-aimetier-adapter |
droid_local |
Runs Factory Droid locally |
External Adapters
Section titled “External Adapters”You can build and distribute adapters as standalone packages — no changes to AImetier’s source code required. External adapters are loaded at startup via the plugin system.
# Install from npm via APIcurl -X POST http://localhost:3102/api/adapters \ -d '{"packageName": "my-aimetier-adapter"}'
# Or link from a local directorycurl -X POST http://localhost:3102/api/adapters \ -d '{"localPath": "/home/user/my-adapter"}'See External Adapters for the full guide.
Adapter Architecture
Section titled “Adapter Architecture”Each adapter is a package with modules consumed by three registries:
my-adapter/ src/ index.ts # Shared metadata (type, label, models) server/ execute.ts # Core execution logic parse.ts # Output parsing test.ts # Environment diagnostics ui-parser.ts # Self-contained UI transcript parser (for external adapters) cli/ format-event.ts # Terminal output for `aimetier run --watch`| Registry | What it does | Source |
|---|---|---|
| Server | Executes agents, captures results | createServerAdapter() from package root |
| UI | Renders run transcripts, provides config forms | ui-parser.js (dynamic) or static import (built-in) |
| CLI | Formats terminal output for live watching | Static import |
Choosing an Adapter
Section titled “Choosing an Adapter”- Need a coding agent? Use
claude_local,codex_local,opencode_local,hermes_local, or installdroid_localas an external plugin - Need to run a script or command? Use
process - Need to call an external service? Use
http - Need something custom? Create your own adapter or build an external adapter plugin
UI Parser Contract
Section titled “UI Parser Contract”External adapters can ship a self-contained UI parser that tells the AImetier web UI how to render their stdout. Without it, the UI uses a generic shell parser. See the UI Parser Contract for details.