Help us improve
Share bugs, ideas, or general feedback.
From repowire
Installs or updates repowire CLI and skill pack from inside an agent session. Sets up hooks, installs skills, and verifies mesh. Useful for initial setup or refreshing skills.
npx claudepluginhub prassanna-ravishankar/repowire --plugin repowireHow this skill is triggered — by the user, by Claude, or both
Slash command
/repowire:repowire-installThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bring an agent session up to full repowire capability. This is an
Installs skills, agents, and teams from agent-almanac into agentic frameworks via CLI. Supports framework detection, content search, dependency resolution, health auditing, and manifest syncing. Use for project setup or content maintenance.
Installs, uninstalls, lists, and updates Skills/Commands for Claude Code, Codex, and OpenClaw. Supports local symlinks and GitHub installs with version tracking.
Installs Claude Code skills from skills.sh via npx, GitHub repos, or direct SKILL.md downloads. Detects conflicts, confirms with user, and verifies post-install.
Share bugs, ideas, or general feedback.
Bring an agent session up to full repowire capability. This is an install/update helper run from inside an agent — it assumes you can run shell commands. (It is not a magical pre-install bootstrap; the repowire package provides the CLI/hooks.)
repowire --version # already installed?
If missing, install the CLI and set up hooks/MCP:
uv tool install repowire # or: pipx install repowire
repowire setup # daemon, hooks, MCP, service (the supported path)
repowire setup is the source of truth for daemon/hook/MCP/service install —
this skill never replaces it.
The skills live in the repowire repo under skills/. Install the set into your
agent's skills directory with the skills CLI (works for any agent, not just
Claude):
npx skills add prassanna-ravishankar/repowire # scans skills/, installs the pack
# or a single skill:
npx skills add https://github.com/prassanna-ravishankar/repowire/tree/main/skills/cross-agent-review
Claude Code users can instead add the plugin marketplace:
/plugin marketplace add prassanna-ravishankar/repowire
/plugin install repowire@repowire
Skills resolve a backend as: explicit arg > config default > safe fallback. Set
defaults in ~/.repowire/config.yaml:
skills:
default_reviewer_backend: codex
default_planner_backend: gemini
default_delegate_backend: codex
default_circle: default
Read one back with repowire config get skills.default_reviewer_backend.
repowire peer whoami # you're on the mesh
repowire peer list # see other agents
repowire doctor # health + drift checks
If peer whoami / peer list fail, run repowire setup and re-check — don't
create an alternate local mesh.