返回 Skill 列表
extension
分类: 开发与工程无需 API Key

Planning Documents

用于prompts/目录下规划文档的命名约定。在创建计划、产品需求文档(PRD)、研究报告、想法收集或其他工作流程文档时使用。触发条件包括:(1) 创建新的规划文档,(2) 命名产品需求文档或研究报告,(3) 关于prompts/目录中文档组织的问题。

person作者: jakexiaohubgithub

Planning Documents

All workflow documents live in prompts/ with a structured naming scheme.

Primary Documents (PRDs)

Pattern: prompts/NNN-concept.md

| Component | Description | Example | |-----------|-------------|---------| | NNN | Three-digit sequence number | 025 | | concept | Kebab-case description | compositor, event-parsing |

No underscores in the primary document name.

Examples:

  • prompts/025-compositor.md
  • prompts/010-event-parsing.md

Supporting Documents

| Pattern | Purpose | Example | |---------|---------|---------| | NNN-concept_report.md | Research findings | 025-compositor_report.md | | NNN-concept_library_report.md | Library-specific research | 025-compositor_textual_report.md | | NNN-concept_idea.md | Some idea/brainstorm capture | 011-cli-api_idea2.md |

Determining Next Sequence Number

Check existing documents:

ls prompts/*.md | sort -t- -k1 -n | tail -5

Use the next available three-digit number.