Documentation
Learn how to install, configure and extend Alice Agent.
On this page
Quickstart
Alice Agent is a cross-platform CLI written in Python. After installation you can start launching tasks, managing skills, and connecting gateways.
1. Install
2. Configure
3. Execute
Installation
Copy the command for your operating system and run it in the terminal.
$ curl -fsSL https://alice-agent.stuko.dev/install.sh | bashModel provider
Alice supports multiple providers through OpenRouter, Anthropic, OpenAI, and compatible APIs. Set your preference via CLI:
alice config set model.provider openrouter
alice config set model.model anthropic/claude-sonnet-4
alice config set model.api_key $OPENROUTER_API_KEYGateway setup
Enable gateways to receive messages or send notifications. Telegram and Discord work without additional servers.
alice config set gateways.telegram truealice config set gateways.discord trueCLI commands
alice config set model.provider openrouteralice skills install github-code-reviewalice cronjob create --name "daily-brief" --schedule "0 9 * * *"Cron jobs
Schedule recurring jobs that run a prompt, a script, or a skill autonomously.
alice cronjob create --name morning-brief \
--schedule "0 8 * * *" \
--prompt "Resumen de PRs y tareas pendientes" \
--deliver telegramSkills
Skills are reusable procedural memory. Install them from the registry or create your own in ~/.alice/skills/. ~/.alice/skills/
Secure by default
Recurring automation
Explore the documentation
Guides, reference, and use cases. The full detail lives in the complete docs — start wherever you need.