用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Integralist/agent-skills --skill next-slice命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | next-slice |
| description | Continue working through a project plan. Finds the next actionable slice and implements every task in it. |
| disable-model-invocation | true |
Resume work from a project plan, in the main thread, one whole slice per invocation.
find docs/plans -maxdepth 1 -name '*.md' ! -name 'README.md' -newer docs/plans/completed 2>/dev/null | head -10 || find docs/plans -maxdepth 1 -name '*.md' ! -name 'README.md' 2>/dev/null | head -10find docs/tasks -maxdepth 1 -name '*.md' ! -name 'README.md' 2>/dev/null | head -10Identify the plan or task list. Use the user's file if specified; otherwise pick from the context above. If multiple candidates exist, present them as a numbered list with filenames and ask which to use. Always state the file you'll use and wait for confirmation.
I'll work from docs/plans/cross-team-routing-isolation.md.
OK, or did you have a different plan in mind?
Read the file and find the first actionable slice (a ### Slice N:
heading with at least one unchecked task - [ ]) in document order. A slice
is actionable unless its - **Blocked by**: line names a slice that still has
unchecked tasks — skip a blocked slice and keep scanning. Plans without
Blocked by (older phase-based plans) never block, so the first slice with an
unchecked task wins. A flat task list with no ### Slice headings is treated
as a single slice — take all its actionable unchecked tasks. If every
remaining slice is blocked, report which slice is next and what it waits on,
then stop.
Prepare its delivery branch. Read Pull Request Delivery when present
and map the selected slice to its layer.
stacked-prs when its branch is not current or
the stack has not been initialized.Announce the slice:
Next up: Slice 2 — Cross-team route isolation (3 tasks)
Execute every unchecked task in the slice directly in the main thread, in document order:
make test when done.docs/**/*.md or **/README.md if the change alters
behavior, public APIs, or usage patterns.Once the whole slice is verified (tests pass, every task done), mark it complete before finishing:
- [ ] to - [x] in the plan
file./commit.stacked-prs to submit or update the stack.- [x].