From invoke-agent
Install invoke-agent CLI for the current OS and architecture; download the matching release, place it in a user bin directory, and add that directory to PATH. Supports Windows (cmd, PowerShell), bash, zsh, fish.
How this skill is triggered — by the user, by Claude, or both
Slash command
/invoke-agent:installThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install the invoke-agent CLI for the user's current OS and architecture, then add the install directory to PATH so `invoke-agent` is available in the shell.
Install the invoke-agent CLI for the user's current OS and architecture, then add the install directory to PATH so invoke-agent is available in the shell.
Available substitutions: $ARGUMENTS (optional extra args), ${CLAUDE_SKILL_DIR} — directory of this skill (e.g. ${CLAUDE_SKILL_DIR}/scripts/install.sh for a bundled script). See Skills docs.
uname -s (Darwin or Linux) and uname -m (x86_64 or aarch64).$env:OS and $env:PROCESSOR_ARCHITECTURE in PowerShell, or %OS% and %PROCESSOR_ARCHITECTURE% in cmd. Map to x64 or ARM64.GitHub Releases use triples matching tools/build.ts:
| OS | Arch | Triple | Extension |
|---|---|---|---|
| Linux | x64 | x86_64-unknown-linux-gnu | — |
| Linux | arm64 | aarch64-unknown-linux-gnu | — |
| Windows | x64 | x86_64-pc-windows-msvc | .exe |
| macOS | x64 | x86_64-apple-darwin | — |
| macOS | arm64 | aarch64-apple-darwin | — |
Latest release asset name format: invoke-agent-<version>-<triple>.zip
Base URL: https://github.com/powdream/invoke-agent/releases/latest/download/
curl -L -o artifact.zip "<url>" and unzip artifact.zip (or use tar if the asset is .tar.gz). Copy the binary out of the triple-named folder.Invoke-WebRequest -Uri "<url>" -OutFile artifact.zip -UseBasicParsing then Expand-Archive -Path artifact.zip -DestinationPath .~/.local/bin (create if needed). Copy the single executable (e.g. invoke-agent or invoke-agent.exe for Windows) there.$env:LOCALAPPDATA\invoke-agent\bin or %USERPROFILE%\.local\bin. Create the directory and copy the executable.setx PATH "%PATH%;<install-dir>". For current session: set PATH=%PATH%;<install-dir>.[Environment]::SetEnvironmentVariable("Path", $env:Path + ";<install-dir>", "User"). For current session: $env:Path += ";<install-dir>".echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc (skip if already present).echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc.fish_add_path $HOME/.local/bin or set -Ua fish_user_paths $HOME/.local/bin.Ask the user which shell they use (or detect from $SHELL / ComSpec) and run only the matching command.
Run invoke-agent --version (or invoke-agent --version in a new shell on Windows after PATH update) and confirm the version matches the release.
If this skill includes scripts/install.sh (Unix) or scripts/install.ps1 (PowerShell), run them with ${CLAUDE_SKILL_DIR}/scripts/install.sh or ${CLAUDE_SKILL_DIR}/scripts/install.ps1 so the path works regardless of current working directory. Those scripts can perform OS/arch detection, download, install, and PATH update in one go.
npx claudepluginhub powdream/claude-plugins --plugin invoke-agentInstalls Claude Code skills from skills.sh via npx, GitHub repos, or direct SKILL.md downloads. Detects conflicts, confirms with user, and verifies post-install.
Installs or updates repowire CLI, hooks, and skill pack from inside an agent session. Use on a fresh machine or to refresh skills to the latest version.
Install, list, and remove community skills from GitHub or local paths. Manages SKILL.md files for Claude Code's agent skill system.