macOS (Homebrew — recommended):
brew install avivsinai/tap/amqmacOS/Linux (script):
curl -fsSL https://raw.githubusercontent.com/avivsinai/agent-message-queue/main/scripts/install.sh | bashInstalls to user-local directory (no sudo required):
$GOBINif set~/.local/binif exists~/go/binif exists~/.local/bin(created if needed) The installer verifies release checksums when possible.
Install the skill to enable co-op mode guidance in Claude Code or Codex.
Using Vercel's skills CLI:
npx skills add avivsinai/agent-message-queue -g -yUsing skild registry:
# For Claude Code
npx skild install @avivsinai/amq-cli -t claude -y
# For Codex CLI
npx skild install @avivsinai/amq-cli -t codex -yOr directly from GitHub:
npx skild install avivsinai/agent-message-queue -t claude -y
npx skild install avivsinai/agent-message-queue -t codex -yKnown Issue: Claude Code uses SSH to clone marketplace repos, which fails without SSH keys configured. See issue #14485. Use Method 1 or 2 instead.
Claude Code:
/plugin marketplace add avivsinai/skills-marketplace
/plugin install amq-cli@avivsinai-marketplace
Codex CLI (Codex chat command; not a shell command):
$skill-installer install https://github.com/avivsinai/agent-message-queue/tree/main/skills/amq-cli
If npm tools fail (network issues, corporate firewalls, etc.):
Claude Code:
git clone https://github.com/avivsinai/agent-message-queue.git /tmp/amq
mkdir -p ~/.claude/skills
cp -r /tmp/amq/.claude/skills/amq-cli ~/.claude/skills/
rm -rf /tmp/amqCodex CLI:
git clone https://github.com/avivsinai/agent-message-queue.git /tmp/amq
mkdir -p ~/.codex/skills
cp -r /tmp/amq/.agents/skills/amq-cli ~/.codex/skills/
rm -rf /tmp/amqRestart your agent after installing.
Download from Releases:
| Platform | Asset |
|---|---|
| macOS (Apple Silicon) | amq_*_darwin_arm64.tar.gz |
| macOS (Intel) | amq_*_darwin_amd64.tar.gz |
| Linux (x86_64) | amq_*_linux_amd64.tar.gz |
| Linux (ARM64) | amq_*_linux_arm64.tar.gz |
| Windows | amq_*_windows_amd64.zip (use in WSL) |
tar xzf amq_*.tar.gz
mkdir -p ~/.local/bin
mv amq ~/.local/bin/Optionally verify checksums:
curl -fsSL https://github.com/avivsinai/agent-message-queue/releases/download/<TAG>/checksums.txt | grep amq_<VERSION>_<OS>_<ARCH>Requires Go 1.25+:
git clone https://github.com/avivsinai/agent-message-queue.git
cd agent-message-queue
make build
mkdir -p ~/.local/bin
mv amq ~/.local/bin/# Specific version
curl -fsSL .../install.sh | VERSION=v0.8.0 bash
# Custom directory
curl -fsSL .../install.sh | INSTALL_DIR=~/bin bashamq --versionHomebrew:
brew upgrade amqOther installs:
amq upgradeOr re-run the install script:
curl -fsSL https://raw.githubusercontent.com/avivsinai/agent-message-queue/main/scripts/install.sh | bashFor CI or offline environments:
amq --no-update-check ... # Per-command
export AMQ_NO_UPDATE_CHECK=1 # Global