一键导入
phase-plan-generate
Generate comprehensive plan documentation following Template 1 format. Use when creating plan.md files for new components or subsections.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate comprehensive plan documentation following Template 1 format. Use when creating plan.md files for new components or subsections.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.
| name | phase-plan-generate |
| description | Generate comprehensive plan documentation following Template 1 format. Use when creating plan.md files for new components or subsections. |
| mcp_fallback | none |
| category | phase |
| phase | Plan |
Generate plan documentation following ML Odyssey's standard 9-section Template 1 format.
plan.md files for components or subsections# Validate existing plan has all 9 sections
grep -E "^## (Overview|Parent Plan|Child Plans|Inputs|Outputs|Steps|Success Criteria|Notes)" plan.md
# Generate from template
cat > plan.md << 'EOF'
# Component Name
## Overview
Brief description (2-3 sentences)
## Parent Plan
[Link or "None (top-level)"]
## Child Plans
[Links or "None (leaf node)"]
## Inputs
- Prerequisite 1
## Outputs
- Deliverable 1
## Steps
1. Step 1
## Success Criteria
- [ ] Criterion 1
## Notes
Additional context
EOF
../plan.md, not absolute)python3 scripts/regenerate_github_issues.py --section <section># Component Name
## Overview
Brief description (2-3 sentences) of what this component does.
## Parent Plan
[../parent/plan.md](../parent/plan.md)
Or: "None (top-level)" for section-level plans
## Child Plans
- [child1/plan.md](child1/plan.md)
- [child2/plan.md](child2/plan.md)
Or: "None (leaf node)" for lowest-level plans
## Inputs
- Prerequisite 1
- Prerequisite 2
- Dependency 3
## Outputs
- Deliverable file/artifact 1
- Deliverable file/artifact 2
- Test files or documentation
## Steps
1. First step
2. Second step
3. Third step
## Success Criteria
- [ ] Criterion 1 (verifiable outcome)
- [ ] Criterion 2 (measurable result)
## Notes
Additional context, assumptions, or considerations.
/notes/review/ for architectural decisions| Error | Fix |
|---|---|
| Missing sections | Add all 9 sections from template |
| Broken links | Use relative paths (../ notation) |
| Vague inputs/outputs | Make specific and measurable |
| No success criteria | Add verifiable checkboxes |
| Broken hierarchy | Verify parent/child links exist |
CLAUDE.md - "GitHub Issue Structure" section.claude/shared/github-issue-workflow.md - GitHub issue workflow/notes/review/ - Example specifications in repositoryTemplate location: templates/plan_template.md in skill directory (if available)