一键导入
project-planning
Orchestrate comprehensive project planning - decompose projects into issues, generate architecture diagrams, map dependencies, and create timelines
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Orchestrate comprehensive project planning - decompose projects into issues, generate architecture diagrams, map dependencies, and create timelines
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Generate Mermaid architecture diagrams showing system components, layers, and data flows
Proactively identify at-risk issues and PRs: stale items, blocked work, deadline risks, scope creep, and unassigned high-priority items
Extract common questions from closed GitHub issues and generate an FAQ document with answers
Search project notes by topic, synthesize findings into a consolidated summary with cross-references
Proactively identify information gaps in project context and generate actionable questions to surface missing requirements, unclear specifications, or documentation gaps
Generate Mermaid dependency graphs showing issue relationships, blocking chains, and critical paths
| name | project-planning |
| description | Orchestrate comprehensive project planning - decompose projects into issues, generate architecture diagrams, map dependencies, and create timelines |
| instructions | When planning a new project end-to-end, orchestrating issue creation with architecture diagrams, dependency maps, and timelines |
| allowed-tools | create_github_issue list_github_issues add_note search_notes read_project_file list_project_directory get_project_scan load_skills |
Orchestrate a comprehensive project planning workflow that generates GitHub issues, architecture diagrams, dependency graphs, and timeline charts from a natural language project description.
Activate this skill when user says:
| Tool | Purpose |
|---|---|
create_github_issue | Create individual issues |
list_github_issues | Check existing issues |
add_note | Save planning artifacts |
search_notes | Find existing plans |
read_project_file | Analyze existing codebase |
list_project_directory | Explore project structure |
get_project_scan | Get project analysis |
load_skills | Load sub-skills for specific tasks |
This skill coordinates four specialized sub-skills:
| Skill | Purpose |
|---|---|
issue-decomposition | Break down into GitHub issues |
architecture-diagramming | Generate architecture diagrams |
dependency-mapping | Map issue dependencies |
timeline-planning | Create Gantt charts |
Load these skills as needed during the planning workflow.
flowchart TB
subgraph Input
A[User describes project]
end
subgraph Discovery
B[Ask clarifying questions]
C[Analyze existing codebase]
end
subgraph Generation
D[Decompose into issues]
E[Generate architecture diagram]
F[Map dependencies]
G[Create timeline]
end
subgraph Output
H[Preview with user]
I[Create issues in GitHub]
J[Save planning document]
end
A --> B
B --> C
C --> D
D --> E
E --> F
F --> G
G --> H
H --> I
I --> J
Ask key questions to scope the work:
Project Overview
Technical Context
Constraints
If working in an existing project:
get_project_scan to understand structureread_project_file to check existing patternslist_project_directory to explore organizationLoad issue-decomposition skill:
load_skills(['issue-decomposition'])
Generate 5-15 well-structured issues with:
Load architecture-diagramming skill:
load_skills(['architecture-diagramming'])
Create a Mermaid diagram showing:
Load dependency-mapping skill:
load_skills(['dependency-mapping'])
Generate a dependency graph showing:
Load timeline-planning skill:
load_skills(['timeline-planning'])
Create a Gantt chart with:
Before creating anything:
## Project Plan Preview
### Issues to Create (X total)
| # | Title | Estimate | Dependencies |
|---|-------|----------|--------------|
| 1 | Setup | Small | None |
| 2 | Core feature | Medium | #1 |
...
### Architecture
[Mermaid diagram]
### Dependencies
[Mermaid diagram]
### Timeline
[Mermaid Gantt]
---
Create these issues and save the plan? (y/n)
On confirmation:
create_github_issuedocs/plans/<slug>-plan.mdadd_noteSave to docs/plans/<project-slug>-plan.md:
# Project Plan: [Project Name]
**Generated:** [Date]
**Status:** Draft
**Owner:** @[username]
## Overview
[2-3 sentence summary of the project]
## Goals
- [Goal 1]
- [Goal 2]
- [Goal 3]
## System Architecture
[Mermaid flowchart from architecture-diagramming skill]
## Issue Dependency Graph
[Mermaid flowchart from dependency-mapping skill]
## Timeline
[Mermaid Gantt from timeline-planning skill]
## Risks & Assumptions
- [Risk or assumption 1]
- [Risk or assumption 2]
## Issues Created
| Issue | Title | Status | Estimate |
|-------|-------|--------|----------|
| #201 | [Title] | Open | Small |
| #202 | [Title] | Open | Medium |
...
---
*Generated with LLPM project-planning skill*
User: Let's build a project plan for user authentication
Assistant:
issue-decomposition → generates 7 issuesarchitecture-diagramming → creates system diagramdependency-mapping → maps issue relationshipstimeline-planning → creates 2-week Gantt chartSuggest next steps:
Related skills:
stakeholder-tracking - Track stakeholder goalsrequirement-elicitation - Deeper requirements discovery