/repowire-install
Install or update repowire and its skill pack from inside an agent session — ensure the repowire CLI/hooks are set up, install the skills, and verify the mesh works. Use on a fresh machine or to refresh skills to the latest.
$ npx -y skills add prassanna-ravishankar/repowire --skill repowire-install --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/repowire-install
Context preview
The summary Claude sees to decide when to auto-load this skill.
Install or update repowire and its skill pack from inside an agent session — ensure the repowire CLI/hooks are set up, install the skills, and verify the mesh works. Use on a fresh machine or to refresh skills to the latest.
SKILL.md
repowire-install.SKILL.mdname: repowire-install
description: Install or update repowire and its skill pack from inside an agent session — ensure the repowire CLI/hooks are set up, install the skills, and verify the mesh works. Use on a fresh machine or to refresh skills to the latest.
Install / update repowire + skills
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.)
1. Ensure repowire is installed
repowire --version # already installed?
If missing, install the CLI and set up hooks/MCP:
curl -sSfL https://raw.githubusercontent.com/prassanna-ravishankar/repowire/main/install.sh | sh
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.
2. Install / update the skill pack
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
3. Set skill defaults (optional)
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`.
4. Verify
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.
Read more
name: repowire-install description: Install or update repowire and its skill pack from inside an agent session — ensure the repowire CLI/hooks are set up, install the skills, and verify the mesh works. Use on a fresh machine or to refresh skills to the latest.
Install / update repowire + skills
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.)
1. Ensure repowire is installed
repowire --version # already installed?
If missing, install the CLI and set up hooks/MCP:
curl -sSfL https://raw.githubusercontent.com/prassanna-ravishankar/repowire/main/install.sh | sh 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.
2. Install / update the skill pack
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
3. Set skill defaults (optional)
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`.
4. Verify
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.
May the agents talk . Connect Claude Code, Opencode, Codex, Antigravity, Pi across projects, across machines and with your telegram
Repo: prassanna-ravishankar/repowire
Other skills on repowire.
- /integration-test
Integration test for repowire peer-to-peer messaging. Supports claude-code, opencode, or mixed-agent-type testing with circle boundaries and cross-agent-type communication. Can run all modes in parallel via agent teams.
Open skill - /cross-agent-plan
Get an independent implementation plan from a DIFFERENT AI agent over the repowire mesh before you build (e.g. have Gemini or Codex draft an approach for Claude to critique). Use when you want a second perspective on how to approach a task.
Open skill - /cross-agent-review
Get a code/PR/plan review from a DIFFERENT AI agent over the repowire mesh (e.g. have Codex review Claude's work). Use when you want an independent second opinion from another backend before merging or committing.
Open skill - /delegate
Hand a task to another AI agent peer over the repowire mesh — reuse an existing peer on the chosen backend, or spawn one if none exists. Use when you want to offload work to a specific agent (e.g. delegate a refactor to a Codex peer) and track it to completion.
Open skill - /repowire-patterns
Reference for how to use the repowire mesh — ask/ack vs notify, broadcast, peer discovery, spawning, and cross-agent workflows. Use when you need to coordinate with other AI agents over repowire and want the right primitive for the job.
Open skill

