AuraBaba Docs

Install an Agent Runtime

Install and configure an AI agent runtime — connect Claude Code, Codex, Kimi CLI, or any LLM-powered coding agent to your workspace.

An agent runtime is a small background process on your computer paired with one AI coding tool. Each tool you install becomes one available runtime. When you assign a task to an agent, the agent claims the task and the runtime executes it — reading your codebase, running commands, and reporting results back to the workspace.

Supported AI coding tools

AuraBaba works with any AI coding tool that exposes a CLI. The most commonly used ones:

ToolInstall commandNotes
Claude Codenpm i -g @anthropic-ai/claude-codeDocs
OpenAI Codexnpm i -g @openai/codexDocs
Kimi CLIcurl -LsSf https://code.kimi.com/install.sh | bashDocs
CursorDownloadLaunch once to register
WindsurfDownloadLaunch once to register

Install and verify a runtime

Pick one tool from the list above and install it. After installation, confirm the CLI is reachable from your terminal:

# For Claude Code
claude --version

# For Codex
codex --version

# For Kimi CLI
kimi --version

The AuraBaba daemon scans your system for installed AI coding tools. If the tool is on your PATH, the daemon discovers it automatically.

Connect the runtime

Desktop app

  1. Install your chosen AI coding tool (see table above).
  2. Restart the AuraBaba desktop app.
  3. Open SettingsRuntimes. You should see the tool listed as an available runtime.
  4. Select it — it's now connected and ready to power an agent.

CLI / headless

  1. Install your chosen AI coding tool.
  2. Restart the daemon:
    aura daemon restart
  3. Check runtime status:
    aura runtime list
  4. The runtime appears as online once the daemon has discovered it.

Troubleshooting

Runtime doesn't appear after installation.

  • Confirm the tool is on your PATH: run which claude (or which codex, which kimi) in your terminal.
  • Restart the daemon or desktop app so it re-scans.
  • On macOS, make sure the tool was installed in a shell-init path that GUI apps can see (e.g. /usr/local/bin).

Runtime shows as offline.

  • Run the tool once manually (claude, codex, or kimi) to complete any first-time setup.
  • Some tools require a login step before the daemon can use them.

Next steps

Once a runtime is connected, create your first agent: