用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ncukondo/reference-manager --skill review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Analyzes ROADMAP and implements tasks in parallel with automatic orchestration. Use when starting implementation work.
Implements a task from spec/tasks in a git worktree following TDD. Use when working on a specific task by keyword.
Detects PRs with changes requested and spawns fixer agents. Use when addressing review feedback.
正在显示 SKILL.md
基于 SOC 职业分类
| name | review |
| description | Detects all open PRs and spawns reviewer agents for each. Use when starting batch review. |
全てのオープンPRを検出し、レビューエージェントを一括起動します。
!gh pr list --state open --json number,headRefName,title --jq '.[] | "PR #\(.number): \(.title) (\(.headRefName))"' 2>/dev/null
!./scripts/monitor-agents.sh 2>/dev/null
gh pr list --state open --json number,headRefName,title
Reviewer limit: max 4 reviewers (plus the main agent). Before spawning, check current agent count:
./scripts/monitor-agents.sh # reviewers (non-main rows) must be < 4
If more PRs than available slots, review sequentially — wait for one to finish before spawning the next.
For each PR (parallel, up to pane limit). Worktrees are auto-created:
./scripts/spawn-reviewer.sh --pr <pr-number> &
# ... more PRs ...
wait
Or with explicit branch names:
./scripts/spawn-reviewer.sh <branch-name> <pr-number> --create &
./scripts/orchestrate.sh --background
List spawned agents:
Monitor command:
./scripts/monitor-agents.sh --watch
herdr status)