agentsclimarketplace

Doc phase planning

Skill morning-start/agent-skills/process/doc-orchestrator/skills/doc-phase-planning

Use when the user needs document planning, template selection, or execution order design after project analysis.From its SKILL.md

Install
npx -y skills add morning-start/agent-skills --skill doc-phase-planning

Assembled 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

2.0 KB, 595 tokens by cl100k_base, as published. Nobody here has run it

Planning Phase Coordinator

职责

  • 根据项目 profile 规划需要生成的文档清单
  • 为每种文档类型选择合适的模板
  • 生成文档生成执行计划
  • 输出标准化的 doc-plan.yaml

子技能

执行者职责路径
doc-planner文档清单规划查看
template-selector模板选择查看
schedule-builder执行计划生成查看

输入

  • project-profile.yaml(来自 analysis 阶段)

输出

doc-plan:
  project_type: fullstack
  scale: medium
  doc_list:
    - id: REQ-001
      type: requirement
      subtype: srs
      template: templates/requirements/srs.md
      priority: must
      depends_on: []
    - id: REQ-002
      type: requirement
      subtype: prd
      template: templates/requirements/prd.md
      priority: must
      depends_on: []
    - id: ARCH-001
      type: architecture
      subtype: sad
      template: templates/architecture/sad.md
      priority: must
      depends_on: [REQ-001]
    - id: API-001
      type: api
      template: templates/api/endpoint.md
      priority: must
      depends_on: [ARCH-001]
  execution_order:
    - [REQ-001, REQ-002]
    - [ARCH-001]
    - [API-001]

工作流程

  1. 读取 project-profile.yaml
  2. 调用 doc-planner 根据项目类型和规模规划文档清单
  3. 调用 template-selector 为每个文档选择模板
  4. 调用 schedule-builder 生成依赖关系和执行顺序
  5. 输出 doc-plan.yaml

注意事项

  • 小项目自动裁剪非必要文档(如测试策略可简化为检查清单)
  • 大项目增加文档粒度(如 API 按模块拆分)
  • 依赖关系必须正确反映文档间的追溯需求
  • 用户可自定义裁剪文档清单

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,790. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.