AgentSkillsCN

Planning Documents

在提示词/文档中,为规划类文档制定命名规范。在创建计划、产品需求文档、调研报告、创意记录或其他工作流文档时,可选用此技能。该技能会在以下场景中被触发:(1) 创建新的规划文档;(2) 为产品需求文档或调研报告命名;(3) 针对提示词中的文档组织方式提出疑问。

SKILL.md
--- frontmatter
name: Planning Documents
description: Naming conventions for planning documents in prompts/. Use when creating plans, PRDs, research reports, idea capture or other workflow documents. Triggers on (1) creating new planning documents, (2) naming PRDs or research reports, (3) questions about document organization in prompts/.

Planning Documents

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

Primary Documents (PRDs)

Pattern: prompts/NNN-concept.md

ComponentDescriptionExample
NNNThree-digit sequence number025
conceptKebab-case descriptioncompositor, event-parsing

No underscores in the primary document name.

Examples:

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

Supporting Documents

PatternPurposeExample
NNN-concept_report.mdResearch findings025-compositor_report.md
NNN-concept_library_report.mdLibrary-specific research025-compositor_textual_report.md
NNN-concept_idea.mdSome idea/brainstorm capture011-cli-api_idea2.md

Determining Next Sequence Number

Check existing documents:

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

Use the next available three-digit number.