From repowire
Delegate tasks to AI agent peers over the repowire mesh, reusing or spawning peers on chosen backends, with ask/ack lifecycle tracking.
How this skill is triggered — by the user, by Claude, or both
Slash command
/repowire:delegateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Hand a self-contained task to a peer on a chosen backend and track it via the
Hand a self-contained task to a peer on a chosen backend and track it via the ask/ack lifecycle.
repowire config get skills.default_delegate_backend
list_peers() → pick an online peer with the right backend.repowire peer list.spawn_peer(path, backend=<chosen>, circle=<skills.default_circle or current>)repowire peer new ...
Default circle: repowire config get skills.default_circle (else your current circle).ask(peer_name, "<full task brief + acceptance criteria>")repowire peer ask is a synchronous test
utility, not the ask/ack lifecycle). To close from the CLI: repowire peer ack <cid>.ask returns a correlation_id; the peer reports back via ack(corr_id, ...).ask(reply_to=corr_id, ...).Use notify_peer (fire-and-forget) only for nudges, not for tracked delegation —
delegation needs the ack lifecycle.
npx claudepluginhub prassanna-ravishankar/repowire --plugin repowireCoordinates multi-agent workflows over the repowire mesh using ask/ack, notify, broadcast, peer discovery, and spawning primitives.
Guides orchestrators through delegation framework: provide observations and success criteria to sub-agents while preserving autonomy. Use before Agent tool invocation or specialist agent prompts.
Dispatches implementation tasks to subagents in isolated git worktrees with full context and TDD requirements. Supports parallel work and progress monitoring.