Quick Start
Quick Start
Start Athena in Your Project
Navigate to your project directory and run:
cd /your/project
athenaOn first run, the Setup Wizard launches automatically to configure your theme, harness, and optional workflow.
After setup, Athena registers its hooks with Claude Code and opens the live terminal UI. Start a Claude Code session in another terminal — Athena will pick up all events automatically.
Common Launch Patterns
Start in a specific project directory:
athena-flow --project-dir=/path/to/projectResume the most recent session:
athena-flow resumeResume a specific session by ID:
athena-flow resume <session-uuid>Pick a session interactively:
athena-flow sessionsRun non-interactively (CI/script mode):
athena-flow exec "run all tests"Start with a workflow active:
athena-flow --workflow=e2e-test-builderChange isolation level:
athena-flow --isolation=permissiveUse ASCII-safe glyphs (for limited terminals):
athena-flow --asciiRe-run the setup wizard:
athena-flow setupWhat You'll See
Once Athena is running, the header shows session state and the event feed streams tool calls as they happen:
ATHENA v0.2.3 | ⠙ working claude-sonnet-4-5 | tools:12 | ████░░░░░ | ●
Each row in the feed is a discrete event from Claude Code's runtime — tool calls, results, permission prompts, agent messages, and session lifecycle events. See the Terminal UI section for a full breakdown.
Next Steps
- Read the CLI Reference for all available commands and flags
- Learn about Isolation Presets to control agent permissions
- Explore Plugins to extend Athena with custom skills
- Define reusable Workflows for common tasks