一键导入
plan-tasks
Create an implementation task plan with status tracking and dependency graph from a design document.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create an implementation task plan with status tracking and dependency graph from a design document.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Safe, project-wide remediation of a dangerous or incorrect code pattern using structured search and replace.
Run a multi-faceted code review on uncommitted changes using specialized review subagents.
Create an Architectural Decision Record (ADR) to document a design choice or technical strategy.
Run a multi-faceted code review on uncommitted changes using specialized review subagents.
Commit (if needed), push the current branch to origin, and generate a pull request description in the chat.
Generate a session handoff document capturing the current working state for the next session.
| name | plan-tasks |
| description | Create an implementation task plan with status tracking and dependency graph from a design document. |
| metadata | {"author":"cascadian-gamers","version":"1.0"} |
Create an implementation task plan with status tracking and dependency graph from a design document.
Docs/designs/, saves to Docs/In-Progress/{feature-name}-tasks.md.create-spec. Reads the full unified spec, produces the ## 4. Task Plan section in the same file.Interactive mode: Optional path to design document. Defaults to most recent file in Docs/designs/ ending in -lld.md, falling back to -hld.md.
Spec mode: The unified spec passed by the orchestrator (reads sections 1-3 for context).
Break implementation into tasks following these principles:
For each task, define:
Create Docs/In-Progress/{feature-name}-tasks.md (interactive mode) or append the ## 4. Task Plan section to the unified spec (spec mode):
# Task Plan: {Feature Name}
## Progress Summary
- Total Tasks: X
- Completed: 0
- In Progress: 0
- Not Started: X
## Task Status
| Task | Description | Prerequisites | Status |
|------|-------------|---------------|--------|
| 1.1 | Description | None | [ ] |
| 1.2 | Description | 1.1 | [ ] |
## Eligible Tasks
Tasks ready to start (prerequisites complete):
- **1.1** — Description
## Dependency Graph
```mermaid
graph TD
T1[Task 1.1] --> T3[Task 2.1]
T2[Task 1.2] --> T3
Objective: What this accomplishes.
Files: path/to/file.cs
Prerequisites: None
Instructions:
5. Present the plan to the user for review before saving.
## Rules
- Tasks must be completable in a single context window — if in doubt, split.
- Every task must have a verifiable Definition of Done.
- Match the format used in existing Phase specs in `Docs/In-Progress/`.
- Refer to the user as "The Brougham 22".