用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Integralist/agent-skills --skill next-task命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
MANDATORY for any work on Go files (*.go). Load this before editing, reviewing, or creating any *.go file. Go coding conventions and style guide covering naming, error handling, testing, HTTP handlers, caching, concurrency, and observability.
Rewrite text to be more concise, clear, and direct without losing critical information. Inventories load-bearing details first, rewrites, then audits the rewrite to verify nothing essential was dropped — for a plan, technical guide, agent instructions, or any prose too long or hard to follow.
Write or improve technical documentation. Applies documentation best practices: brevity, focusing on why and what rather than how, simple visualizations, modularization, and decoupling from volatile code. Use when writing new documentation from scratch, or editing, or reviewing and rewriting existing documents for clarity and quality.
基于 SOC 职业分类
正在显示 SKILL.md
| name | next-task |
| description | Continue working through a project plan. Finds the next unchecked task and begins implementation. |
| disable-model-invocation | true |
Resume work from a project plan, in the main thread.
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 unchecked task (- [ ]) in
document order. A task is actionable unless its slice's - **Blocked by**:
line names a slice that still has unchecked tasks — skip a blocked task and
keep scanning. Plans without Blocked by (older phase-based plans) never
block, so the first unchecked task wins. If every remaining task 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 task to its layer.
stacked-prs when its branch is not current or
the stack has not been initialized.Announce the task:
Next up: Task 2.3 — Add cache invalidation for config
updates
Execute it directly in the main thread:
make test when done.docs/**/*.md or **/README.md if the change alters
behavior, public APIs, or usage patterns.Once verified (tests pass, work done), mark it complete before finishing:
- [ ] to - [x] in the plan file./commit.stacked-prs to submit or update the stack.- [x].