mirror of
https://github.com/mattpocock/skills.git
synced 2026-07-29 11:02:41 +07:00
Rename the in-progress `review` skill to `code-review` and move it from `skills/in-progress/` into the promoted `skills/engineering/` bucket. - Add it to `.claude-plugin/plugin.json` and the Model-invoked sections of the top-level and Engineering READMEs; drop it from the in-progress README. - Add a docs page at `docs/engineering/code-review.md`. - Point `/implement` and its docs at `/code-review`. - Update the smell-baseline changeset reference; add a changeset for the move. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
429 B
Markdown
16 lines
429 B
Markdown
---
|
|
name: implement
|
|
description: "Implement a piece of work based on a PRD or set of issues."
|
|
disable-model-invocation: true
|
|
---
|
|
|
|
Implement the work described by the user in the PRD or issues.
|
|
|
|
Use /tdd where possible, at pre-agreed seams.
|
|
|
|
Run typechecking regularly, single test files regularly, and the full test suite once at the end.
|
|
|
|
Once done, use /code-review to review the work.
|
|
|
|
Commit your work to the current branch.
|