AgentSkillsCN

manifest:next

优先展示已就绪、待投入开发的高优先级功能。当用户询问“我该先做哪项工作?”或希望快速找到下一项任务时,可使用此功能。

SKILL.md
--- frontmatter
name: manifest:next
description: Show the highest-priority feature ready for work. Use when the user asks "what should I work on?" or wants to find the next task.
disable-model-invocation: true

Show the next feature to work on.

Steps

  1. Get the project for the current working directory:

    • Call list_projects with directory_path set to the current working directory
    • If no project found, tell the user to run /manifest:init first
  2. Get the next workable feature:

    • Call get_next_feature with the project ID
  3. Display the result:

If a feature is found, show:

code
Next up: [Title] ([state])
Parent: [Parent title if any]
Priority: [priority number]
Spec: [spec_status from response]

[Feature details/description]

Ready to start? Use /manifest:start to begin work.

If the response includes spec_guidance, show it as a note:

code
Note: [spec_guidance text]

If no feature is found:

code
No workable features found.

All features are either implemented or there are no features yet.
Use /manifest:tree to see the current state.