一键导入
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.