plugins/github-copilot-modernization/skills/creating-implementation-plan/SKILL.md
Creates an implementation plan AND task breakdown from a feature spec by consuming design artifacts. Produces plan.md with implementation steps, inline task list with full REQ traceability, and a Requirement Mapping table. This is the single skill for planning + decomposition. Triggers: "create implementation plan", "plan for implementation", "assemble implementation plan", "generate plan from spec", "break down tasks", "generate tasks from plan", "create implementation tasks", "decompose the plan into work items". NOT for: architecture analysis (use analyzing-architecture), implementation (use implementing-code), coordinator task decomposition.
npx skillsauth add microsoft/github-copilot-modernization creating-implementation-planInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You MUST consider the user input before proceeding (if not empty).
All outputs are written under your task's Artifact path: (from task metadata).
plan.md ← main artifact: plan + task breakdown + requirement mapping table
research.md ← resolved spec-level unknowns (if any)
checkpoints/spec-to-plan.yaml ← REQ-XXX → plan item traceability
checkpoints/plan-to-tasks.yaml ← plan item → task traceability
REQ-XXX requirement IDs.constitution.md for principles and constraints.knowledge-graph.json (if available) for architecture understanding.## Dependency Artifacts metadata. These typically include architecture analysis, data model, API contracts, UX patterns, and feature specs — but filenames follow the <taskId>-<role>.md convention, not fixed names.project-topology.md in the artifacts directory) if it exists. Extract the module group table (G1, G2, ...) and their scope (in-scope / context-only). These G-group labels will be used in Step 3 and Step 4 to tag plan items and tasks.Ownership boundary:
analyzing-architectureproduces codebase research and design artifacts. This step only resolves spec-level unknowns (NEEDS CLARIFICATION items, technology choices not yet decided). If codebase research is missing, escalate.
research.md (only if there were unknowns to resolve):
templates/plan-template.md):
skills/guidelines/ for matching tech patterns. Document under "Applied Guidelines".### Step 3: [G1] Payment gateway integration). Cross-cutting steps that span all groups use [Cross-cutting] instead. This enables downstream DAG generation to extract group membership directly from the plan.plan.md section by section (write each section before moving to the next):
a. Header + Summary
b. Technical Context (from design artifacts)
c. Constitution Check
d. Applied Guidelines
e. Implementation Steps (phases with plan items, each referencing REQ-XXX)
f. Project StructureFor each implementation phase in the plan, expand every plan item into concrete tasks:
Task format (each task on its own line):
- [ ] T001 [G?] [P?] [Story?] [Plan:X.Y] Description with exact file path [Source: path/to/file.java#method] [BL: BL-XXX]
Format components:
- [ ][G1], [G2], [Cross-cutting] etc. REQUIRED when project topology exists — inherited from the plan item's G-group tag (Step 3.5). Omit when no project topology.[US1], [US2] etc. Required for user story phases only; omit for Setup/Foundational/Polish phases[Plan:2.1,2.3][Source: src/.../File.java#method1,method2]Rewrite Mode Source Annotation Rules:
#, comma-separated[Source:] annotations#[Source:]Task organization:
Write tasks inline in plan.md under each phase — do NOT create a separate tasks/ directory. Tasks are embedded in the plan document for coherence.
After writing all tasks, generate checkpoint files using the templates:
checkpoints/spec-to-plan.yaml — using templates/spec-to-plan-checkpoint-template.yamlcheckpoints/plan-to-tasks.yaml — using templates/plan-to-tasks-checkpoint-template.yamlExamples:
- [ ] T001 [Plan:1.1] Create project structure per implementation plan
- [ ] T005 [P] [Plan:2.1] Implement auth middleware in src/middleware/auth.py
- [ ] T012 [P] [US1] [Plan:2.2] Create User model in src/models/user.py
- [ ] T015 [US3] [Plan:3.2] Convert ProductAction to ProductController [Source: src/.../ProductAction.java#list,add]
After all phases and tasks are written, append this section to plan.md:
## Requirement Mapping
| REQ ID | Description | Plan Items | Implementation Evidence |
|--------|-------------|------------|------------------------|
| REQ-001 | [short description] | P2.1, P3.2 | AuthController.java, UserService.java |
| REQ-002 | [short description] | P3.1 | ProductRepository.java |
Rules:
Plan Items lists which plan item IDs address this requirementImplementation Evidence describes what files/classes will prove completion (fill based on the tasks you just wrote)Report completion with:
Before generating the plan, check for applicable guidelines:
skills/guidelines/ for matching patterns.templates/plan-template.md — Implementation plan document templatetemplates/tasks-template.md — Task list structure templatetemplates/spec-to-plan-checkpoint-template.yaml — REQ traceability checkpoint templatetemplates/plan-to-tasks-checkpoint-template.yaml — Plan-to-tasks traceability checkpoint templatereferences/task-format.md — Task checklist format rules: [P], [Plan:X.Y], [Source:] annotations, rewrite mode requirementsdevelopment
Evaluates whether a user's modernization/rewrite request provides enough scenario context to proceed (e.g., target component library, screenshots, design system for frontend; API contract policy, data migration strategy for backend). Produces a deterministic clarity score, asks the user for missing required fields via a structured form, and writes a canonical `clarification.md` artifact consumed by all downstream agents. Triggers: "clarification gate", "scenario clarification", "elicit missing context", "evaluate prompt completeness", "ask user for screenshots / target library / design system". NOT for: feature specification (use feature-inventory), planning (use creating-implementation-plan), implementation (use implementing-code), or resolving spec-time `[NEEDS CLARIFICATION]` markers (those remain owned by feature-inventory).
tools
Lifecycle hooks for the modernize-rearchitecture coordinator. Defines hook points, registered actions, and execution rules.
development
Provides role charters (mission, ownership, core principles, quality bar) for a multi-agent coding team. Each charter defines the role's mission, ownership scope, core principle (boundary constraints), and quality bar. Most roles also include communication rules. Consumed by the coordinator during task decomposition to assign work to the correct role. Triggers: "look up role charter", "what does the architect own", "check role boundaries", "find team roles", "which role handles X", "list agent charters", "role responsibilities". NOT for: task decomposition (use breaking-down-tasks), implementation (use implementing-code), architecture analysis (use analyzing-architecture).
tools
Zero-dependency shell recon for any code repository — detect languages, count LOC, and report project scale. Pure POSIX find/wc or PowerShell, no Python or third-party tools required. Triggers: "how big is this project", "what languages", "project sizing", "repo recon", "LOC count", "scope check".