Documentation

Documentation

Learn how to install, configure and extend Alice Agent.

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.

Terminal
$ curl -fsSL https://alice-agent.stuko.dev/install.sh | bash

Model 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_KEY

Gateway setup

Enable gateways to receive messages or send notifications. Telegram and Discord work without additional servers.

alice config set gateways.telegram true
alice config set gateways.discord true

CLI commands

alice config set model.provider openrouter
alice skills install github-code-review
alice 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 telegram

Skills

Skills are reusable procedural memory. Install them from the registry or create your own in ~/.alice/skills/. ~/.alice/skills/

Secure by default

Recurring automation

Skills