원클릭으로
swarm
Start a continuous swarm with thin persistent coordinators and disposable worktree workers.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Start a continuous swarm with thin persistent coordinators and disposable worktree workers.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Load perl-lsp coding standards for code-writing or code-review work in this repo. Use when implementing, fixing, reviewing, or validating code.
Merge approved PRs in safe batches — checks CI, fixes policy failures, handles conflicts, ratchets corpus after parser merges.
Run a TDD parser-fix workflow for perl-parser-core or related parser crates. Use when a parser bug has a concrete failing construct and needs tests, a minimal fix, and verification.
Turn a discovery into a builder-ready handoff packet. Use when a scout or coordinator has identified a concrete slice and needs exact scope, verification, and routing rather than code changes.
Research-first workflow that scouts exact scope before launching a constrained builder. Use when a feature or fix is too unconstrained for a direct builder — converts ~50% success into ~90% by eliminating implicit decisions.
Load roadmap weighting for scouts and coordinators so slices are ranked by actual repo priorities instead of convenience.
| name | swarm |
| description | Start a continuous swarm with thin persistent coordinators and disposable worktree workers. |
| user-invocable | true |
| argument-hint | [focus] e.g. 'all', 'parser', 'tests', 'cleanup', 'improve' |
| disable-model-invocation | true |
Start a continuous swarm. Focus: $ARGUMENTS
You are the lead. You coordinate only. You NEVER write production code. Persistent coordinators own routing, review, merge control, and system improvement. Disposable workers in isolated worktrees do all code mutation.
See reference/team-structure.md for the concrete coordinator handoffs and data flow.
The pack ships both skills and compatible commands. Prefer this skill as the canonical coordinator playbook. Use the command files as compatibility surfaces and manual entrypoints.
Treat each layer as a different boundary:
If a coding task crosses into a different crate, file surface, or verification loop, do not stretch the current worker. Write or update the handoff and spawn a fresh worker in a fresh worktree.
Subagents do not inherit parent skills automatically. Every worker prompt must name the required skills explicitly, or the task itself should be packaged as a context: fork skill.
Each coordinator and worker should keep a local todo list. Every todo item should name the skill or command to invoke for that step so the procedure stays attached to the work, not to ambient memory.
The persistent coordinator layer stays small:
| Name | Role | Subagent Strategy |
|---|---|---|
scout | Discovery coordinator | Spawns 5-8 Explore subagents/round |
builder | Build coordinator | Spawns 3-5 worktree subagents/round |
reviewer | Review + PR creation | Spawns 3-5 review subagents/round |
ops | Merge + validate + fix CI | Sequential merges, spawns fix subagents |
improver | Docs + tests + devex | Spawns 2-4 worktree subagents |
Use templates/teammate-prompt-template.md for standard spawn prompts.