Doc phase analysis
Skill morning-start/agent-skills/process/doc-orchestrator/skills/doc-phase-analysis
Use when the user needs project analysis, requirement parsing, or a scan of existing documentation before generating new docs.From its SKILL.md
npx -y skills add morning-start/agent-skills --skill doc-phase-analysisAssembled 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.7 KB, 496 tokens by cl100k_base, as published. Nobody here has run it
Analysis Phase Coordinator
职责
- 分析项目类型、规模、技术栈
- 解析用户需求,提取关键信息
- 扫描现有文档(如有),评估现状
- 输出标准化的
project-profile.yaml
子技能
| 执行者 | 职责 | 路径 |
|---|---|---|
| project-analyzer | 项目类型/规模/技术栈分析 | 查看 |
| requirement-parser | 需求解析与结构化 | 查看 |
| current-state-scanner | 现有文档扫描与评估 | 查看 |
输入
- 用户的项目描述或需求文档
- 可选:现有代码仓库路径、现有文档路径
输出
project-profile.yaml:
project_type: frontend|backend|fullstack|mobile|desktop|game|cli
scale: small|medium|large
tech_stack: [react, node, postgresql]
platforms: [web, mobile]
existing_docs:
- type: requirement
path: docs/srs.md
quality: 0.7
requirements_summary:
core_features: [...]
non_functional: [...]
constraints: [...]
工作流程
- 读取用户输入
- 调用 project-analyzer 分析项目特征
- 调用 requirement-parser 结构化需求
- 如有现有文档,调用 current-state-scanner 评估
- 合并输出 project-profile.yaml
注意事项
- 规模判断基于:功能数量、团队规模、复杂度
- 技术栈识别优先从代码/描述中提取,不足时询问用户
- 现有文档评估需输出质量分数(0-1)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.