# CLI Reference Command-line interface for building AI agents with the Botpress ADK. ## Quick Start ```bash # 1. Log in non-interactively when possible export BOTPRESS_TOKEN=pat_abc123 adk login --token "$BOTPRESS_TOKEN" # 2. Create a new agent with defaults adk init my-bot --yes --skip-link cd my-bot # 3. Link explicitly when you know the IDs adk link --workspace ws_123 --bot bot_456 # 4. Start development adk dev --logs --no-open # 5. Deploy adk deploy --yes ``` ## Commands ### adk init Create a new ADK agent project. ```bash adk init [name] ``` **Options:** - `name` - Project name (optional, prompts if omitted) - `-t, --template