Help us improve
Share bugs, ideas, or general feedback.
From repowire
Delegates tasks to AI agent peers over the repowire mesh, reusing or spawning peers on a chosen backend. Use to offload work to a specific agent and track completion.
npx claudepluginhub prassanna-ravishankar/repowire --plugin repowireHow 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
Reference for coordinating with AI agents over the repowire mesh. Covers ask/ack, notify, broadcast, peer discovery, spawning, and cross-agent workflows. Pick the right primitive for multi-agent collaboration.
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.
Spawns subagents in isolated git worktrees to parallelize implementation tasks. Supports task classification, dispatch strategy decisions, and progress monitoring.
Share bugs, ideas, or general feedback.
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.