Doc planner
Skill morning-start/agent-skills/process/doc-orchestrator/skills/doc-phase-planning/doc-planner
Use when the user needs a document list tailored to project type, scale, and documentation scope.From its SKILL.md
npx -y skills add morning-start/agent-skills --skill doc-plannerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 514 tokens by cl100k_base, as published. Nobody here has run it
Doc Planner
职责
- 根据项目类型确定需要的文档类别
- 根据项目规模调整文档粒度
- 建立文档间的依赖关系
- 输出文档清单列表
输入
project-profile.yaml
输出
doc_list:
- id: REQ-001
type: requirement
subtype: srs
priority: must
- id: REQ-002
type: requirement
subtype: prd
priority: must
- id: ARCH-001
type: architecture
subtype: sad
priority: must
- id: API-001
type: api
priority: must
文档规划规则
按项目类型
| 项目类型 | 必需文档 | 可选文档 |
|---|---|---|
| frontend | SRS、PRD、组件文档 | 测试策略 |
| backend | SRS、PRD、架构、API | 部署运维 |
| fullstack | SRS、PRD、架构、API、数据 | 测试策略、部署运维 |
| mobile | SRS、PRD、架构、API | 安全合规 |
| desktop | SRS、PRD、架构 | 测试策略 |
| game | SRS、架构、协议 | 安全合规、性能测试 |
| cli | SRS、API(CLI命令) | - |
按项目规模
| 规模 | 文档策略 |
|---|---|
| small | 仅必需文档,内容精简 |
| medium | 必需文档 + 可选文档 |
| large | 全部文档,按模块拆分 |
注意事项
- 依赖关系必须形成 DAG,不能有循环
- 优先级 must 的文档必须在 first tier 生成
- 用户可手动增删文档
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.