Skip to content

Installation

Pick whichever install method fits your environment.

npm / bun

The CLI is published to npm as @agentplugins/cli. Install globally:

bash
npm install -g @agentplugins/cli
bash
bun add -g @agentplugins/cli

Or run it ad-hoc with npx:

bash
npx @agentplugins/cli@latest --version

Homebrew

Install from the sigilco/homebrew-tap-agentplugins tap:

bash
brew install sigilco/tap-agentplugins/agentplugins

Upgrade with brew upgrade agentplugins.

curl

The install script downloads the correct prebuilt binary for your platform and drops it into /usr/local/bin:

bash
curl -fsSL https://agentplugins.pages.dev/install.sh | bash

TIP

Inspect the script before running it: curl -fsSL https://agentplugins.pages.dev/install.sh | less.

mise

Manage AgentPlugins as a version-pinned tool with mise (uses ubi under the hood to pull GitHub releases):

bash
mise use -g ubi:sigilco/agentplugins

This pins the latest release globally. Use mise use ubi:sigilco/agentplugins@1.2.0 to pin a specific version per project.

Verify the install

Whichever method you chose, confirm the binary is on your PATH:

bash
agentplugins --version
# agentplugins/x.y.z

Then run doctor to verify AgentPlugins can detect every installed agent harness on your machine:

bash
agentplugins doctor
text
AgentPlugins doctor
────────────────────────────────────────
CLI version      x.y.z
Store path       ~/.agents/plugins       ✓
Skills path      ~/.agents/skills        ✓

Detected agents
  claude         ~/.claude/skills        ✓
  codex          ~/.codex/skills         ✓
  opencode       ~/.config/opencode      ✓
  gemini         ~/.gemini/skills        ✗ (not installed)
  copilot        ~/.copilot/skills       ✓
  kimi           ~/.kimi/skills          ✗ (not installed)
  pimono         ~/.pi/extensions        ✗ (not installed)

4 agents detected. Plugins will fan out to those harnesses.

WARNING

doctor only reports detection. Plugins still install to the universal store (~/.agents/plugins/) regardless of how many agents are found. Symlinks are created only for detected agents.

Next steps

Released under the Apache License 2.0.