* docs: Add CLI user guide and developer guide - Add docs/cli-user-guide.md with command reference, flags, and examples - Add docs/cli-developer-guide.md with architecture and ASCII flow diagrams - Update README CLI section with proper setup order (install → auth → run) - Link README to user guide, user guide to developer guide * docs: Update CLI docs to reflect source-based usage Binary distribution not yet available. Update all docs to use `bun run cli` from cloned repo instead of `archon` binary. * docs: Add bun link for global CLI availability - Add step to run `bun link` from packages/cli for global `archon` command - Update all examples to use `archon` instead of `bun run cli` - Update Windows WSL2 section with bun link step
3.4 KiB
Archon CLI User Guide
Run AI-powered workflows from your terminal.
For developers: See CLI Developer Guide for architecture and internals.
Prerequisites
-
Clone the repository and install dependencies:
git clone https://github.com/dynamous-community/remote-coding-agent cd remote-coding-agent bun install -
Make CLI globally available (recommended):
cd packages/cli bun linkThis creates an
archoncommand available from anywhere. -
Authenticate with Claude:
claude /login
Note: Examples below use archon (after bun link). If you skip step 2, use bun run cli from the repo directory instead.
Quick Start
# List available workflows
archon workflow list --cwd /path/to/repo
# Run a workflow
archon workflow run assist --cwd /path/to/repo "Explain the authentication flow"
# Run in isolated worktree
archon workflow run plan --cwd /path/to/repo --branch feature-auth "Add OAuth support"
Commands
workflow list
List workflows available in target directory.
archon workflow list --cwd /path/to/repo
Discovers workflows from .archon/workflows/ (recursive) plus bundled defaults.
workflow run <name> [message]
Run a workflow with an optional user message.
# Basic usage
archon workflow run assist --cwd /path/to/repo "What does this function do?"
# With isolation
archon workflow run plan --cwd /path/to/repo --branch feature-x "Add caching"
Flags:
| Flag | Effect |
|---|---|
--cwd <path> |
Target directory (required for most use cases) |
--branch <name> |
Create/reuse worktree for branch |
--no-worktree |
Checkout branch directly (no worktree) |
With --branch:
- Creates worktree at
~/.archon/worktrees/<repo>/<branch>/ - Reuses existing worktree if healthy
- Auto-registers codebase if in a git repo
Without --branch:
- Runs in target directory directly
- No isolation
isolation list
Show all active worktree environments.
archon isolation list
Groups by codebase, shows branch, workflow type, platform, and days since activity.
isolation cleanup [days]
Remove stale environments.
# Default: 7 days
archon isolation cleanup
# Custom threshold
archon isolation cleanup 14
version
Show version, build type, and database info.
archon version
Working Directory
The CLI determines where to run based on:
--cwdflag (if provided)- Current directory (default)
When using --branch, workflows run inside the worktree directory.
Environment
The CLI loads environment from:
.envin current directory~/.archon/.env(fallback)
Auto-enables global Claude auth if no explicit tokens are set.
Database
- With
DATABASE_URL: Uses PostgreSQL - Without: Uses SQLite at
~/.archon/archon.db
Both work transparently. SQLite is auto-initialized on first run.
Examples
# Quick question about code
archon workflow run assist --cwd ~/projects/my-app "How does error handling work here?"
# Plan a feature (no code changes)
archon workflow run plan --cwd ~/projects/my-app "Add rate limiting to the API"
# Implement on isolated branch
archon workflow run implement --cwd ~/projects/my-app --branch feature-rate-limit "Add rate limiting"
# Check worktrees after work session
archon isolation list
# Clean up old worktrees
archon isolation cleanup