Skip to main content
The Athena CLI provides a complete toolkit for initializing workspaces, running diagnostics, and managing AI agent sessions from your terminal.

Installation

Install Athena from the source repository:
pip install -e .
Verify the installation:
athena --version

Quick Start

Create your first Athena workspace:
# Initialize in current directory
athena init .

# Boot a session
athena

# Run health check
athena check

Available Commands

athena

Boot a new AI agent session

athena init

Initialize workspace structure

athena check

Run basic health diagnostics

athena doctor

Run full system diagnostics (15 checks)

athena save

Quicksave session checkpoint

Default Boot

Running athena without arguments boots the orchestrator and starts a new session:
athena
What it does:
  1. Loads Core Identity from .framework/modules/Core_Identity.md
  2. Recalls context from the last session log
  3. Creates a new session log file
  4. Confirms ready status

Options

--version
flag
Show version information and exit
--boot
flag
Explicitly run the boot orchestrator (default behavior)
--end
flag
Run the shutdown sequence (see athena save)
--root
path
Specify project root directory (auto-detected if not provided)

Global Flags

These flags work with any command:
athena --version          # Show SDK version
athena --help             # Show help information

Session Workflow

Typical session lifecycle:
# 1. Start session
athena

# 2. Work with your AI agent...

# 3. Save checkpoints as needed
athena save "Implemented user authentication"

# 4. Close session
athena --end

Exit Codes

CodeMeaning
0Success
1Failure or warnings detected

Environment Variables

Optional cloud features:
  • SUPABASE_URL - Supabase project URL (for memory sync)
  • SUPABASE_ANON_KEY - Supabase anonymous key
  • ANTHROPIC_API_KEY - Anthropic API key (for Claude integration)
These environment variables are optional. Athena works fully offline without them.

Next Steps

Initialize Workspace

Set up your first Athena workspace

Run Diagnostics

Check system health with 15 diagnostic tests

Build docs developers (and LLMs) love