بنقرة واحدة
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".