implement

Implement work from a spec or tickets using test-driven development and code review.

1|Updated Jul 2, 2026
One-click install
npx skills add https://github.com/filippolmt/skills --skill implement-filippolmt
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement
Source: https://github.com/filippolmt/skills/tree/main/skills/implement
Command: npx skills add https://github.com/filippolmt/skills --skill implement-filippolmt

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written spec or set of tickets into committed, reviewed code requires coordinating testing, typechecking, and review steps that are easy to skip or do inconsistently. ## Core Features & Use Cases - Spec-Driven Implementation: Builds the work described in a spec or set of tickets end to end. - Test-Driven Workflow: Applies test-driven development at pre-agreed seams, runs typechecking and single test files regularly, and runs the full test suite once at the end. - Review and Commit: Finishes by running a code review over the changes and committing the work to the current branch. - Use Case: Given a ticket describing a new API endpoint, implement it with tests, verify the full suite passes, review the diff, and commit the result. ## Quick Start Ask the assistant to implement the work described in your spec or tickets using the implement skill.

Frequently Asked Questions about implement

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement a feature from a spec or tickets with AI?

Provide the spec or tickets and invoke the implement skill. It builds the work using test-driven development at pre-agreed seams, runs typechecking and tests along the way, reviews the result, and commits to the current branch.

How does the implement skill use test-driven development?

It applies the tdd skill where possible at pre-agreed seams, runs typechecking and single test files regularly during development, and runs the full test suite once at the end before review.

Does the implement skill require other skills to be installed?

Yes, it invokes the sibling tdd and code-review skills at runtime. Installing it through its bundle ensures those dependencies are present, otherwise those steps find nothing to call.

Can the implement skill be triggered automatically by the model?

No, it sets disable-model-invocation to true and its policy disallows implicit invocation, so it only runs when explicitly invoked by the user.

When should I not use the implement skill?

Avoid it for exploratory work without a spec or tickets, since it expects defined work to implement. It is also unsuitable when you do not want automatic commits to the current branch.