Agentastic supports any terminal-based coding agent CLI. When you install an agent, Agentastic automatically detects it and makes it available from Agent Home. You can run agents in isolated git worktrees or Docker containers, and review their changes with built-in diff and code review tools.Documentation Index
Fetch the complete documentation index at: https://docs.agentastic.dev/llms.txt
Use this file to discover all available pages before exploring further.
All built-in agents
Agentastic ships with 33 built-in agent definitions and auto-discovers them when installed. Any terminal agent not listed here can still be added via Settings > Connections.| Agent | CLI command | Install command |
|---|---|---|
| Claude Code | claude | npm install -g @anthropic-ai/claude-code |
| Codex | codex | npm install -g @openai/codex |
| Command Code | cmd | npm i -g command-code cmd login |
| Gemini CLI | gemini | npm install -g @google/gemini-cli |
| Hermes Agent | hermes | curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash |
| Cursor | agent | curl https://cursor.com/install -fsSL | bash |
| GitHub Copilot | copilot | npm install -g @github/copilot |
| Junie | junie | curl -fsSL https://junie.jetbrains.com/install.sh | bash |
| OpenHands | openhands | pip install openhands-ai |
| Letta Code | letta-code | npm install -g @letta-ai/letta-code |
| Cortex Code | cortex | curl -LsS https://ai.snowflake.com/static/cc-scripts/install.sh | sh |
| OB-1 | ob1 | curl -fsSL https://dashboard.openblocklabs.com/install | bash |
| Amp | amp | npm install -g @sourcegraph/amp@latest |
| Droid | droid | curl -fsSL https://app.factory.ai/cli | sh |
| Aider | aider | pip install aider-chat |
| OpenCode | opencode | npm install -g opencode-ai |
| Goose | goose | curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash |
| Cline | cline | npm install -g cline |
| Autohand Code | autohand | curl -fsSL https://autohand.ai/install.sh | bash |
| mini-SWE-agent | mini-swe-agent | pip install mini-swe-agent |
| Qwen Code | qwen-code | npm install -g @qwen-code/qwen-code |
| Kilo Code | kilocode | npm install -g @kilocode/cli |
| Kiro | kiro | curl -fsSL https://cli.kiro.dev/install | bash |
| Charm | crush | npm install -g @charmland/crush |
| Auggie | auggie | npm install -g @augmentcode/auggie |
| Rovo Dev | rovodev | acli rovodev auth login |
| Continue | continue | npm install -g @continuedev/cli |
| Codebuff | codebuff | npm install -g codebuff |
| Mistral Vibe | vibe | curl -LsSf https://mistral.ai/vibe/install.sh | bash |
| Kimi | kimi | uv tool install kimi-cli |
| Pi | pi | npm install -g @mariozechner/pi-coding-agent |
Feature support matrix
Not all agents support the same capabilities. The table below shows which features are available per agent.| Agent | Auto-Approve | Resume | Initial Prompt |
|---|---|---|---|
| Claude Code | Yes | Yes | Yes |
| Codex | Yes | Yes | Yes |
| Command Code | Yes | Yes | Yes |
| Gemini CLI | Yes | Yes | Yes |
| Hermes Agent | Yes | Yes | Yes |
| Cursor | Yes | Yes | Yes |
| GitHub Copilot | — | — | — |
| Junie | — | — | Yes |
| OpenHands | Yes | Yes | Yes |
| Letta Code | Yes | Yes | Yes |
| Cortex Code | Yes | Yes | Yes |
| OB-1 | Yes | Yes | Yes |
| Amp | Yes | Yes | stdin |
| Droid | — | Yes | — |
| Aider | — | — | — |
| OpenCode | — | Yes | Yes |
| Goose | — | — | Yes |
| Cline | — | — | — |
| Autohand Code | Yes | Yes | Yes |
| mini-SWE-agent | Yes | — | Yes |
| Qwen Code | Yes | Yes | Yes |
| Kilo Code | Yes | Yes | — |
| Kiro | — | — | — |
| Charm | — | — | — |
| Auggie | — | — | — |
| Rovo Dev | Yes | — | — |
| Continue | — | Yes | Yes |
| Codebuff | — | — | — |
| Mistral Vibe | Yes | — | Yes |
| Kimi | — | — | Yes |
| Pi | — | Yes | — |
Feature descriptions
Auto-Approve lets Agentastic skip permission prompts for file read/write operations. This is useful for hands-off workflows where you want the agent to run autonomously without pausing to ask for confirmation. Resume continues from a previous agent session. Agentastic can pick up exactly where the agent left off without losing context, so you don’t need to re-explain the task when restarting. Initial Prompt passes your instructions to the agent when it starts. Most agents support this, which allows Agentastic to send your prompt automatically from Agent Home when you launch a new session.Agent descriptions
Claude Code (Anthropic)
Codex (OpenAI)
Command Code (Langbase)
cmd executable, supports --continue for resume, --yolo for auto-approve, and can pass an initial prompt directly when launching a new session. Command Code also supports its own agent configuration and skills system.
Gemini CLI (Google)
Hermes Agent (Nous Research)
hermes CLI with chat -q prompt injection, --continue/--resume session recovery, and --yolo unattended mode.
Cursor
agent executable, supports --continue for resume, --yolo for auto-approve, and can pass an initial prompt as a positional argument. Cursor also supports --sandbox enabled|disabled for controlling file and command permissions, --mode plan|ask for alternative interaction modes, and --cloud for offloading work to Cursor’s cloud infrastructure.
GitHub Copilot
Junie (JetBrains)
OpenHands
Letta Code
Cortex Code (Snowflake)
OB-1 (OpenBlock Labs)
Amp (Sourcegraph)
Droid (Factory)
Aider
OpenCode
Goose (Block)
Cline
Autohand Code
mini-SWE-agent
Qwen Code
Kilo Code
Kiro (AWS)
Charm
Auggie (Augment Code)
Rovo Dev (Atlassian)
Continue
Codebuff
Mistral Vibe
Kimi (Moonshot AI)
Pi
Adding and refreshing agents
Agentastic scans your systemPATH for known agent CLIs when it starts. If you install a new agent after Agentastic is already running:
Install the agent
Install the agent using its official install command. Make sure the binary is in your
PATH.