Skip to content

Commit f7cb091

Browse files
committed
docs: sync release version references
1 parent 2493a2c commit f7cb091

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
Open a fresh **Claude Code** (or **Codex** / **OpenCode** / **Cursor**) session and paste this. The agent installs the Animus CLI, clones `animus-skills`, runs the setup script, and adds the project section to `CLAUDE.md` / `AGENTS.md`. You'll be running workflows in about a minute.
4141

42-
> Install Animus + Animus Skills: run **`curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash`** to install the `animus` CLI (currently `v0.5.22` in this repo), then **`animus plugin install-defaults`** to pull in the provider + subject + workflow_runner + queue plugins the daemon needs (one-time setup, idempotent; add `--include-recommended` for the web UI and extra providers). Then **`git clone --single-branch --depth 1 https://github.com/launchapp-dev/animus-skills.git ~/.claude/skills/animus-skills && cd ~/.claude/skills/animus-skills && ./setup`** to link the skills and write `.mcp.json`. Add an "Animus" section to CLAUDE.md (or AGENTS.md for Codex) listing the slash commands: `/animus-setup`, `/animus-getting-started`, `/animus-mcp-setup`, `/animus-workflow-authoring`, `/animus-pack-authoring`, `/animus-skill-authoring`, `/animus-troubleshooting`. Restart the agent so the new `animus` MCP server is picked up. From a project root, run `animus init --walkthrough` to scaffold `.animus/`, install packs, and optionally start the daemon.
42+
> Install Animus + Animus Skills: run **`curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash`** to install the `animus` CLI (currently `v0.5.23` in this repo), then **`animus plugin install-defaults`** to pull in the provider + subject + workflow_runner + queue plugins the daemon needs (one-time setup, idempotent; add `--include-recommended` for the web UI and extra providers). Then **`git clone --single-branch --depth 1 https://github.com/launchapp-dev/animus-skills.git ~/.claude/skills/animus-skills && cd ~/.claude/skills/animus-skills && ./setup`** to link the skills and write `.mcp.json`. Add an "Animus" section to CLAUDE.md (or AGENTS.md for Codex) listing the slash commands: `/animus-setup`, `/animus-getting-started`, `/animus-mcp-setup`, `/animus-workflow-authoring`, `/animus-pack-authoring`, `/animus-skill-authoring`, `/animus-troubleshooting`. Restart the agent so the new `animus` MCP server is picked up. From a project root, run `animus init --walkthrough` to scaffold `.animus/`, install packs, and optionally start the daemon.
4343

4444
For Codex CLI, swap the clone path to `~/.codex/skills/animus-skills` and edit `AGENTS.md` instead of `CLAUDE.md`.
4545

@@ -59,7 +59,7 @@ The second command is **required in v0.4.12 and later** (and expanded in **v0.5*
5959

6060
```bash
6161
# Specific version
62-
ANIMUS_VERSION=v0.5.22 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
62+
ANIMUS_VERSION=v0.5.23 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
6363

6464
# Custom directory
6565
ANIMUS_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash

docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation
22

3-
Current workspace CLI version: **v0.5.22**. See [CHANGELOG.md](../../CHANGELOG.md)
3+
Current workspace CLI version: **v0.5.23**. See [CHANGELOG.md](../../CHANGELOG.md)
44
for release notes and
55
[`docs/migration/v0.4.11-to-v0.4.12.md`](../migration/v0.4.11-to-v0.4.12.md)
66
if you are upgrading from an earlier v0.4.x.
@@ -26,7 +26,7 @@ Options:
2626

2727
```bash
2828
# Install a specific release
29-
ANIMUS_VERSION=v0.5.22 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
29+
ANIMUS_VERSION=v0.5.23 curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash
3030

3131
# Install into a custom directory
3232
ANIMUS_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/launchapp-dev/animus-cli/main/scripts/install.sh | bash

docs/guides/deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ time so the container boots without network access.
1515
```dockerfile
1616
# ---- stage 1: fetch the prebuilt animus binary ----
1717
FROM debian:bookworm-slim AS animus-fetch
18-
ARG ANIMUS_VERSION=v0.5.22
18+
ARG ANIMUS_VERSION=v0.5.23
1919
ARG ANIMUS_TARGET=x86_64-unknown-linux-gnu
2020
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates \
2121
&& rm -rf /var/lib/apt/lists/*
@@ -82,7 +82,7 @@ CMD ["/app/deploy/start.sh"]
8282

8383
| ARG | Default | Description |
8484
|---|---|---|
85-
| `ANIMUS_VERSION` | `v0.5.22` | Release tag to download from `launchapp-dev/animus-cli` |
85+
| `ANIMUS_VERSION` | `v0.5.23` | Release tag to download from `launchapp-dev/animus-cli` |
8686
| `ANIMUS_TARGET` | `x86_64-unknown-linux-gnu` | Target triple; must match the container's glibc |
8787
| `SIG` | `--signature-policy=disabled` | Signature policy flag passed to every `plugin install` |
8888

0 commit comments

Comments
 (0)