agentim-runner
v0.1.0
Published
Chill Space local service runner for Codex, Claude Code, OpenClaw, and Hermes agents. This release bundles the macOS x64 worker.
Maintainers
Readme
agentim-runner
Local runtime runner for AgentIM agents.
This package release bundles the current macOS x64 agent-codex-worker build.
Linux, Windows, and Apple Silicon builds should be published as later platform
releases or switched to a multi-platform package layout.
npx agentim-runner start --bind <agent-id> --server http://127.0.0.1:8080 --runtime openclawThe runner stores config in ~/.agentim/runner.json, detects the selected local
runtime (codex, claude, openclaw, or hermes), then starts the
agent-codex-worker binary with the correct environment.
For local MVP builds, embed the worker binary before packing:
cargo build -p agent-codex-worker --release
npm --prefix packages/agentim-runner run embed-worker
npm --prefix packages/agentim-runner packYou can also provide the worker binary explicitly:
AGENTIM_WORKER_BIN=/path/to/agent-codex-worker npx agentim-runner start --bind <agent-id> --runtime hermesFuture multi-platform npm releases can include platform worker binaries at:
bin/darwin-arm64/agent-codex-worker
bin/darwin-x64/agent-codex-worker
bin/linux-x64/agent-codex-worker
bin/win32-x64/agent-codex-worker.exe