implement

Implements work items from specs or tickets using test-driven development.

Updated Aug 22, 2026
One-click install
npx skills add https://github.com/MSC72m/DevForge --skill implement-msc72m
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: implement
Source: https://github.com/MSC72m/DevForge/tree/main/skills/implement
Command: npx skills add https://github.com/MSC72m/DevForge --skill implement-msc72m

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written spec or ticket into working, reviewed, and committed code requires discipline across many steps—writing tests, running typechecks, and reviewing changes. This Skill orchestrates that implementation workflow so nothing is skipped. ## Core Features & Use Cases - Spec-to-Code Execution: Implements the work described in a spec or set of tickets directly on the current branch. - Test-Driven Workflow: Applies TDD at pre-agreed seams, runs typechecking and single test files regularly, and runs the full test suite once at the end. - Built-in Review and Commit: Triggers a code review of the finished work and commits it to the current branch. - Use Case: You have a ticket describing a new API endpoint. Invoke this Skill to implement it with tests, verify types and the test suite, review the diff, and commit the result. ## Quick Start Ask the agent 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 ticket or spec with an AI coding agent?▼

Invoke the implement skill with your spec or tickets, and the agent writes the code using TDD at pre-agreed seams, runs typechecking and tests, reviews the result, and commits it to the current branch.

How does the implement skill use test-driven development?▼

It applies TDD where possible at pre-agreed seams in the codebase. Typechecking and individual test files run regularly during work, with the full test suite executed once at the end.

Does the implement skill commit code automatically?▼

Yes, after the work passes review it commits the changes to the current branch. It does not create new branches or push to remotes on its own.

Can the implement skill be invoked automatically by the model?▼

No, it sets disable-model-invocation and allow_implicit_invocation to false, so it only runs when the user explicitly invokes it.

When should I not use the implement skill?▼

Avoid it when there is no clear spec or ticket defining the work, since it expects described requirements. For exploratory changes or quick fixes, implement directly instead.