Installation
Current workspace CLI version: v0.4.19. See CHANGELOG.md for release notes and docs/migration/v0.4.11-to-v0.4.12.md if you are upgrading from an earlier v0.4.x.
Since v0.4.12, the first-run flow is plugin-first. The daemon no longer ships with bundled providers or subject backends. After installing the
animusbinary you must runanimus plugin install-defaults --include-subjects --include-transportsonce beforeanimus daemon startwill boot. The command is idempotent and the plugins live in~/.animus/plugins/(shared across projects).
Fast Path: Upstream Installer
Use the installer published from launchapp-dev/animus-cli:
curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
animus plugin install-defaults --include-subjects --include-transportsOptions:
# Install a specific release
ANIMUS_VERSION=v0.4.19 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
# Install into a custom directory
ANIMUS_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
# Run install-defaults automatically at the end of the installer
ANIMUS_INSTALL_PLUGINS=1 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
# Skip the post-install plugin step (CI / Docker builds that install plugins separately)
ANIMUS_SKIP_PLUGIN_INSTALL=1 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bashThe upstream installer currently targets macOS. On Linux and Windows, use a release archive or build from source.
Release Archives
Prebuilt releases are published at:
Download the archive for your platform, extract it, and place these binaries on your PATH:
animusagent-runneranimus-oai-runneranimus-workflow-runner(v0.4.16+ name; the v0.4.xao-workflow-runneris created as a back-compat symlink byscripts/install.sh)
(The v0.4.11 llm-cli-wrapper binary was removed in v0.4.12 — the crate was deleted and its functionality folded into agent-runner and the upstream animus-session-backend crate.)
Supported release targets:
| Target | Platform |
|---|---|
aarch64-apple-darwin | macOS (Apple Silicon) |
x86_64-apple-darwin | macOS (Intel) |
aarch64-unknown-linux-gnu | Linux (arm64) |
x86_64-unknown-linux-gnu | Linux (x86_64) |
x86_64-pc-windows-msvc | Windows (x86_64) |
Build From Source
git clone https://github.com/launchapp-dev/animus-cli.git
cd animus-cli
# Verify the runtime binaries
cargo animus-bin-check
# Debug build
cargo animus-bin-build
# Release build
cargo animus-bin-build-releaseTo run the CLI directly during development:
cargo run -p orchestrator-cli -- --helpVerify Installation
animus --version
animus doctor
animus daemon preflight # checks that required plugins are installedRun animus doctor inside a git repository to verify the local environment and Animus prerequisites. Run animus daemon preflight from anywhere — it reports the installed-vs-required plugin matrix and exits non-zero with the exact animus plugin install ... fix command for each gap.
Install Plugins
Animus ships a slim core; providers, subject backends, triggers, and log sinks all install as out-of-tree plugins from public GitHub repos.
Recommended (one command):
animus plugin install-defaults --include-subjects --include-transportsThis installs the curated defaults from crates/orchestrator-core/src/plugin_registry.rs:
- 5 providers (
animus-provider-claude,animus-provider-codex,animus-provider-gemini,animus-provider-opencode,animus-provider-oai) — daemon requires at least one - 5 subject backends (
animus-subject-default,animus-subject-requirements,animus-subject-linear,animus-subject-sqlite,animus-subject-markdown) — daemon requiresdefaultforkind=taskandrequirementsforkind=requirement - 3 transport + UI plugins (
animus-transport-http,animus-transport-graphql,animus-web-ui) — required foranimus web serve
Add --include-oai-agent to also install animus-provider-oai-agent (OpenAI Responses API agent loop, separate from the chat completions provider).
Or install individually:
# Providers (at least one required)
animus plugin install launchapp-dev/animus-provider-claude
animus plugin install launchapp-dev/animus-provider-codex
animus plugin install launchapp-dev/animus-provider-gemini
animus plugin install launchapp-dev/animus-provider-opencode
animus plugin install launchapp-dev/animus-provider-oai
# Subject backends (required: default for kind=task, requirements for kind=requirement)
animus plugin install launchapp-dev/animus-subject-default
animus plugin install launchapp-dev/animus-subject-requirements
animus plugin install launchapp-dev/animus-subject-linear
animus plugin install launchapp-dev/animus-subject-sqlite
animus plugin install launchapp-dev/animus-subject-markdown
# Transport + web UI (required for `animus web serve`)
animus plugin install launchapp-dev/animus-transport-http
animus plugin install launchapp-dev/animus-transport-graphql
animus plugin install launchapp-dev/animus-web-ui
# Triggers (optional)
animus plugin install launchapp-dev/animus-trigger-webhook
animus plugin install launchapp-dev/animus-trigger-slack
# Log storage (optional)
animus plugin install launchapp-dev/animus-log-storage-file
# List installed plugins (with cosign signature column)
animus plugin listPlugin installs verify a sigstore cosign signature when one is published. Use --signature-policy strict to fail closed, --allow-unsigned for the current warn-and-proceed posture, or --signature-policy disabled for air-gapped and local-build workflows. See Security.
To scaffold a new plugin of your own:
animus plugin new --kind subject --name my-plugin # or --kind providerPrerequisites
Animus itself is a Rust application, but autonomous workflows need at least one supported AI coding CLI on your PATH (and the matching provider plugin installed):
Example installs:
npm install -g @anthropic-ai/claude-code
npm install -g @openai/codex
npm install -g @google/gemini-cliEnvironment Variables
Common runtime overrides:
| Variable | Purpose | Default |
|---|---|---|
ANIMUS_CONFIG_DIR | Override the global config root | ~/.animus/ (via protocol::Config::global_config_dir()) |
ANIMUS_PLUGIN_DIR | Override the global plugin install location that discovery also scans | ~/.animus/plugins/ |
ANIMUS_VERSION | Pin version for the installer script | latest release |
ANIMUS_INSTALL_DIR | Pin install dir for the installer script | ~/.local/bin |
ANIMUS_DAEMON_DISABLE_CONTROL_SERVER | Opt out of the daemon Unix-socket control server | unset (server enabled) |
ANIMUS_DAEMON_DISABLE_LOG_STORAGE_PLUGIN | Force the in-tree events.jsonl logger even if a log-storage plugin is installed | unset |
ANIMUS_DAEMON_DISABLE_SUBJECT_PLUGINS | Skip subject plugin discovery entirely. Daemon will refuse most subject operations | unset |
ANIMUS_INSTALL_PLUGINS | When set to 1, the installer script runs animus plugin install-defaults --include-subjects --include-transports at the end | unset |
ANIMUS_SKIP_PLUGIN_INSTALL | When set to 1, the installer script skips the post-install plugin step entirely | unset |
The v0.4.11 env vars ANIMUS_DAEMON_DISABLE_BUILTIN_TASK_ADAPTER and ANIMUS_DAEMON_DISABLE_BUILTIN_REQUIREMENTS_ADAPTER are no-ops in v0.4.12 — the in-tree adapters are gone. Install or uninstall the corresponding subject_backend plugin instead.
State paths:
- Project-local config:
.animus/config.json - Workflow YAML overlays:
.animus/workflows.yaml,.animus/workflows/*.yaml - Scoped runtime root:
~/.animus/<repo-scope>/ - Scoped daemon settings:
~/.animus/<repo-scope>/daemon/pm-config.json - Control socket:
~/.animus/<repo-scope>/control.sock(0700)
Next Steps
Proceed to the Quick Start to initialize a repository and run the first workflow.