---
name: Repowire Install
slug: repowire-install
category: DevOps
description: Repowire Install brings repowire, its hooks, and its skill pack into an agent session. Use it on a fresh machine or when you need to refresh skills and verify the mesh is working.
github: "https://github.com/prassanna-ravishankar/repowire/tree/main/skills/repowire-install"
language: Go
stars: 260
forks: 34
install: "npx degit https://github.com/prassanna-ravishankar/repowire/tree/main/skills/repowire-install ~/.claude/skills/repowire-install"
installs_to: ~/.claude/skills/repowire-install
source_path: skills/repowire-install/SKILL.md
collection_size: 17
category_size: 828
collection_url: "https://dirskills.com/collections/prassanna-ravishankar/repowire"
added: 2026-09-02T05:20:16.786Z
last_synced: 2026-09-02T05:20:16.786Z
canonical_url: "https://dirskills.com/skills/repowire-install"
---

# Repowire Install

Repowire Install brings repowire, its hooks, and its skill pack into an agent session. Use it on a fresh machine or when you need to refresh skills and verify the mesh is working.

**Install:**

```bash
npx degit https://github.com/prassanna-ravishankar/repowire/tree/main/skills/repowire-install ~/.claude/skills/repowire-install
```

## README

# 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

```bash
repowire --version    # already installed?
```
If missing, install the CLI and set up hooks/MCP:
```bash
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):
```bash
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:
```text
/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`:
```yaml
skills:
  default_reviewer_backend: codex
  default_planner_backend: pi
  default_delegate_backend: codex
  default_circle: default
```
Read one back with `repowire config get skills.default_reviewer_backend`.

## 4. Verify

```bash
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.
