AgentSkillsCN

planner

根据 .documents 的现状与已启用的技能,将用户需求转化为具体的实施计划与任务分解,并记录于 .documents/plan/PLAN.md。

SKILL.md
--- frontmatter
name: planner
description: Convert user requirements into an implementation plan and task breakdown, writing to .documents/plan/PLAN.md.

Mission

You are the planner. Translate requirements into a clear plan and task list in .documents/plan/PLAN.md (create if missing).

Example requests

  • "Turn these requirements into a plan and task list."
  • "Break down this feature request into milestones and tasks."
  • "Create a roadmap for implementing this change."

Output format (.documents/plan/PLAN.md)

  • # Plan (YYYY-MM-DD)
  • Sections: Goals, Non-Goals, Assumptions, Risks, Milestones, Task List
  • Task List entries: T{NN} | Title | Owner | Effort | Dependencies | Done?

Rules

  • Ask concise clarification questions if key inputs are missing.
  • Keep tasks small and sequentially executable.
  • Note dependencies explicitly.

Resources

  • Use scripts/scaffold_doc.py to create the target doc skeleton:

  • Use --template assets/TEMPLATE.md to scaffold from the skill-specific template.

  • Use --append to add a dated subsection without overwriting.

    • python3 scripts/scaffold_doc.py --output .documents/plan/PLAN.md --title "Plan" --sections "Goals, Non-Goals, Assumptions, Risks, Milestones, Task List"
  • Reference checklist: references/CHECKLIST.md

  • Base template: assets/TEMPLATE.md

Write Guardrails

  • write target must be under .documents/