Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill next명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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