implement

by Matt Pocock · mattpocock/skills

Implement a piece of work based on a spec or set of tickets.

Writing codeMIT3 files

What it tells an agent to do.

The author’s own instructions, as your agent receives them — the same bytes the endpoint serves.

Implement the work described by the user in the spec or tickets.

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.

More in writing code

test-driven-development

Jesse Vincent

Use when implementing any feature or bugfix, before writing implementation code

What it does →

api-and-interface-design

Addy Osmani

Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defini

What it does →

code-simplification

Addy Osmani

Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend tha

What it does →

frontend-ui-engineering

Addy Osmani

Builds production-quality, accessible, responsive user-facing UIs. Use when building or modifying interfaces and pages, creating components, implementing layout

What it does →

incremental-implementation

Addy Osmani

Delivers changes incrementally. Use when implementing any feature or change that touches more than one file. Use when you're about to write a large amount of co

What it does →

performance-optimization

Addy Osmani

Optimizes application performance across frontend, backend, queries, and databases. Use when performance requirements exist, when you suspect performance regres

What it does →