Installation
Get Astreus CLI up and running in minutes. The CLI is your AI-powered assistant for building agents with the Astreus framework.
Get Astreus CLI up and running in minutes. The CLI is your AI-powered assistant for building agents with the Astreus framework.
Requirements
- Node.js >= 22.0.0
- One of the supported LLM provider API keys
- Familiarity with the Astreus framework
Install Globally
Install Astreus CLI globally using npm:
npm install -g @astreus-ai/astreus-cliOr with pnpm:
pnpm add -g @astreus-ai/astreus-cliOr with yarn:
yarn global add @astreus-ai/astreus-cliRun Without Installing
You can also run directly with npx:
npx @astreus-ai/astreus-cliQuick Start
- Set up your API key:
export OPENAI_API_KEY=your-api-key- Start the CLI:
astreus- Start chatting with your AI agent!
Usage Options
# Start the interactive CLI
astreus
# Start with a specific provider via environment variable
ASTREUS_PROVIDER=claude astreus
# Start with a specific model via environment variable
ASTREUS_MODEL=gpt-4o astreus
# Combine provider and model
ASTREUS_PROVIDER=claude ASTREUS_MODEL=claude-sonnet-4-20250514 astreusVerify Installation
Check that Astreus CLI is installed correctly:
astreus --versionNext Steps
- Commands - Learn all available commands
- Providers - Configure different LLM providers
- Configuration - Set up environment variables
Last updated: June 7, 2026
In this section
Providers
Astreus CLI supports multiple LLM providers. Switch between them seamlessly to test your agents with different models and find the best fit for your use case.
Configuration
Configure Astreus CLI with environment variables for full customization. These settings control both the CLI itself and the underlying Astreus framework...