implement

Implement code changes from a spec or tickets using TDD and code review.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written spec or set of tickets into working, tested code requires disciplined execution: writing tests first, running typechecks, and reviewing the result. This Skill guides an AI agent through that implementation workflow so the work is completed and committed consistently. ## Core Features & Use Cases - Spec-Driven Implementation: Builds the work described in a spec or ticket set, following test-driven development at pre-agreed seams. - Continuous Verification: Runs typechecking and individual test files regularly, then the full test suite once at the end. - Review and Commit: Finishes by running a code review pass and committing the work to the current branch. - Use Case: You hand the agent a feature ticket for a new API endpoint; it implements the change with tests, verifies types and the test suite, reviews the diff, and commits it to your branch. ## Quick Start Ask the agent to implement the work described in your spec or tickets on the current branch.

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 with an AI agent?▼

Provide the spec or tickets and invoke this Skill. The agent implements the described work using test-driven development at pre-agreed seams, runs typechecking and tests, reviews the result, and commits to the current branch.

How does test-driven development fit into the implementation workflow?▼

The Skill applies TDD where possible at pre-agreed seams, meaning tests are written around defined boundaries before or alongside the implementation. Single test files run regularly during development, with the full suite executed once at the end.

Does the implement Skill run the full test suite automatically?▼

Yes, the full test suite runs once at the end of the work. During implementation, only typechecking and individual test files run regularly to keep feedback fast.

Can this Skill be invoked automatically by the AI?▼

No, the Skill sets disable-model-invocation and disallows implicit invocation, so it only runs when explicitly invoked by the user. This prevents unintended code changes and commits.

What happens after the implementation is finished?▼

After the full test suite passes, the Skill runs a code review of the work using the code-review Skill, then commits the changes to the current branch.