From peer-orchestra
Initialize peer-orchestra in the current project. Sets up agent rules, dispatch protocols, and self-learning hooks. Use when someone says "set up peer orchestra", "initialize agents", or "start orchestrating".
How this skill is triggered — by the user, by Claude, or both
Slash command
/peer-orchestra:initThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up the multi-agent orchestration framework in the current project.
Set up the multi-agent orchestration framework in the current project.
Check for existing config — look for .claude/rules/agent-*.md files. If they exist, ask before overwriting.
Create .claude/rules/ directory if it doesn't exist.
Copy agent rules from the plugin's themes/genshin/agents/ to .claude/rules/:
agent-common.md from src/templates/rules/multi-agent-dispatch.mdteam-dispatch.mdself-improvement.mdCopy hooks from src/templates/hooks/ to .claude/hooks/:
agent-router.pyagent-persona-loader.pysession-start-peer-memory.pysession-end-peer-memory.pyMerge CLAUDE.md — if one exists, append the orchestrator section. If not, create it.
Print next steps:
Peer Orchestra is ready!
Add these aliases to your ~/.zshrc:
alias cl='claude --dangerously-skip-permissions'
alias clp='claude --dangerously-skip-permissions --dangerously-load-development-channels server:claude-peers'
Then:
Terminal 1: clp (you are the Traveler — the orchestrator)
Terminal 2+: clp (these become your agents)
npx claudepluginhub gocarbontracker/peer-orchestraScaffolds a file-based multi-agent orchestration system (approval gate, task re-entry, topology) for Claude Code, Codex, or Antigravity using a deterministic generator.
Guides proactive use of /orchestrate for complex multi-agent workflows with sequential/parallel execution, conditionals, retries, visualization, checkpoints, and automation.
Provides patterns for multi-agent systems in Claude Code: job description method, shared folder communication, handbook consolidation, context management. Use for complex agent orchestrations.