Skip to content

Quick Start

Get up and running with AllAgents in minutes.

Terminal window
allagents workspace init my-workspace
cd my-workspace

Initialize directly from any GitHub repository - no cloning required:

Terminal window
# From a GitHub URL
allagents workspace init my-workspace --from https://github.com/myorg/templates/tree/main/nodejs
# Or using shorthand
allagents workspace init my-workspace --from myorg/templates/nodejs

This fetches the workspace configuration directly from GitHub and sets up your workspace instantly.

Terminal window
allagents plugin install code-review@claude-plugins-official

On an interactive terminal, choose project or user scope, select the clients that should receive the plugin, review the declaration, and confirm. For scripts, provide the target explicitly:

Terminal window
allagents plugin install code-review@claude-plugins-official \
--scope project --client claude,codex --yes
Terminal window
allagents update

Pass owner/repo directly to install all skills from that repo — no flags required:

Terminal window
allagents skill add ReScienceLab/opc-skills

To install only a specific skill from a multi-skill repo:

Terminal window
allagents skill add reddit --from ReScienceLab/opc-skills

Or point at a specific skill file with a full URL:

Terminal window
allagents skill add https://github.com/owner/repo/tree/main/skills/my-skill

Choose user in the interactive installer, or pass the target explicitly:

Terminal window
allagents plugin install superpowers@obra/superpowers \
--scope user --client claude,codex --yes

The selected plugin is added to ~/.allagents/workspace.yaml and synced to the selected user-level client directories.

Terminal window
allagents status

Lists all configured plugins and skills with their availability status and target clients. Each entry shows a Type of plugin or skill. The legacy form allagents workspace status is still accepted.