원클릭으로
swarm-priorities
Load roadmap weighting for scouts and coordinators so slices are ranked by actual repo priorities instead of convenience.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Load roadmap weighting for scouts and coordinators so slices are ranked by actual repo priorities instead of convenience.
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 shared swarm behavioral rules for coordinators and workers. Use for task routing, receipts, direct messaging, dedup, worktree boundaries, and lifecycle discipline.
| name | swarm-priorities |
| description | Load roadmap weighting for scouts and coordinators so slices are ranked by actual repo priorities instead of convenience. |
| user-invocable | false |
Load the repo's current priority weighting before scouting or reprioritizing the queue.
Read what is available and current:
cat NOW_NEXT_LATER.md 2>/dev/null || cat ROADMAP.md 2>/dev/null
cat docs/project/ROADMAP.md 2>/dev/null
cat docs/project/CURRENT_STATUS.md 2>/dev/null
gh api repos/:owner/:repo/milestones --jq '.[] | "\\(.title): \\(.open_issues) open, \\(.description)"' 2>/dev/null
gh issue list --state open --label "priority:high" --limit 20 2>/dev/null
gh issue list --state open --label "bug" --limit 20 2>/dev/null
cat features.toml 2>/dev/null | head -50
P0: security, broken CI, merge regressions, urgent bugsP1: roadmap-aligned parser, LSP, milestone, or capability workP2: test infrastructure, flaky tests, mutation survivors, coverage gapsP3: codebase health, DAP quality, debt, dead code, stale docsP4: polish and low-leverage cleanupIf the queue is dominated by P3 or P4, scout harder for P1 or P2
work instead of just consuming the easy backlog.