用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill next命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | next |
| description | > Use when this capability is needed. |
Help select the next bead to work on based on readiness and user preferences.
/next # Show ready beads, ranked by suitability
/next safe # Same but exclude services with in-progress beads
/next task # Auto-pick the next most suitable task and start it
/next quick # Auto-pick an easy win (excludes busy services)
/next bug # Auto-pick the next most important bug and fix it
/next <bead-id> # Start working on specific bead
Find Ready Work
bd list --ready to get open, unblocked tasksin_progress beads (another session may be working on them)Rank by Suitability
Present Options
Start Work
# Show ready work ranked by suitability
/next
# Show ready work, excluding services with in-progress beads
/next safe
# Auto-pick and start the next most suitable task
/next task
# Auto-pick an easy win (excludes busy services)
/next quick
# Auto-pick the next most important bug and start fixing
/next bug
# Start a specific bead
/next mycode-abc
## Ready to Work (5 of 12 open)
| # | ID | Pri | Type | Labels | Title |
|---|------------|-----|---------|---------------------|--------------------------------|
| 1 | mycode-abc | P1 | bug | frontend | Fix login timeout issue |
| 2 | mycode-def | P2 | feature | backend, orders | Add export to CSV |
| 3 | mycode-ghi | P2 | task | auth | Update dependencies |
| 4 | mycode-jkl | P3 | feature | frontend, css | Dark mode toggle |
| 5 | mycode-mno | P3 | task | events, auth | Refactor auth service |
Currently in progress: mycode-xyz "Implement caching layer"
Which would you like to work on? (1-5, or specify ID, or "task" to auto-pick)
When invoked:
Get the ranked table using the next-bd script (handles ready list, blocked filtering, label fetching, and ranking in one command):
# Preferred — if symlinked into the project's scripts/
./scripts/next-bd --in-progress
Fallback if not available in the project's scripts/:
SKILLS_DIR="${SKILLS_DIR:-${CODEX_HOME:-$HOME/.codex}/skills}"
if [[ ! -x "$SKILLS_DIR/next/resources/next-bd" ]]; then
SKILLS_DIR="${CLAUDE_HOME:-$HOME/.claude}/skills"
fi
"$SKILLS_DIR/next/resources/next-bd" --in-progress
For safe and quick modes, add --avoid-busy to exclude beads whose labels overlap with in-progress beads:
./scripts/next-bd --in-progress --avoid-busy
This outputs a markdown table ranked by the priority algorithm, with labels included, blocked beads filtered out, and in-progress beads shown for awareness.
Parse command argument:
safe: Show the script output with --avoid-busy, ask user to picktask: Auto-select top-ranked bead and start itquick: Auto-select an easy win task and start it (uses --avoid-busy)bug: Auto-select top-ranked bug and start it (see Bug Mode below)<bead-id>: Start that specific beadIf specific bead ID provided:
bd show <id>
bd update <id> --status=in_progress
Otherwise, present the script output and ask user to choose
On selection:
Rank ready beads in this order (first match wins):
| Rank | Criteria |
|---|---|
| 1 | Any P0 issue (any type) |
| 2 | P1 bug |
| 3 | P2 bug |
| 4 | P1 feature or task |
| 5 | P1 epic |
| 6 | P2 feature or task |
| 7 | P3 bug, feature, or task |
| 8 | P2 epic |
| 9 | P3 epic |
| 10 | Any other non-P4 issue |
Important: P4 items are backlog/future work and must NEVER be auto-picked. Always use --priority-max=3 to exclude them. Only show P4 items if user explicitly requests them.
When /next quick is used, prefer:
When /next bug is used:
Filter to open bugs only (excluding P4 backlog):
bd list --ready --type=bug --priority-max=3
Rank by priority: P0 > P1 > P2 > P3 (highest priority bug first, P4 excluded)
Auto-select and start the top-ranked bug
Continue fixing bugs if the completed bug was minor:
A bug is considered minor if:
Continue to next bug automatically when:
Stop and ask user when:
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
bd show