Prompt file imported from deepak78194/copilot-repo-code (
.github/prompts/implement.prompt.md). Copyright stays with the author.
/implement — Plan + Implement (2 agents: planner → coder)
Routing: lead → planner → coder Use this when you want to go from a feature description straight to working code, with a planning step to decompose first. Stops before testing or review.
What happens
@leadinvokesplannerto decompose the feature into an ordered task listplanneroutput (task table + file targets) is passed tocodercoderimplements every task from the plan, verifies the build, reports all changed files
Prompt
Implement the following feature:
Feature: $feature Service / module: $service
Steps:
- Planner: decompose into ordered tasks with file targets and acceptance criteria
- Coder: implement all tasks from the plan — match existing code style, verify build passes
Stop after implementation. Do NOT write tests or run a code review.