implement

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

Updated Aug 11, 2026
One-click install
npx skills add https://github.com/Kunj-Sharma03/agent-contextify --skill implement-kunj-sharma03
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement
Source: https://github.com/Kunj-Sharma03/agent-contextify/tree/main/skills-main/skills/engineering/implement
Command: npx skills add https://github.com/Kunj-Sharma03/agent-contextify --skill implement-kunj-sharma03

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a written spec or set of tickets into working, verified code requires discipline: writing tests first, running typechecks, and reviewing the result. This Skill guides an AI agent through that disciplined implementation workflow so nothing is skipped. ## Core Features & Use Cases - Spec-Driven Implementation: Builds the work described in a spec or ticket set 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: Finishes by invoking a code review pass and committing the completed work to the current branch. - Use Case: You have a ticket describing a new API endpoint. Invoke this Skill to have the agent implement it with tests, verify types, 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 with an AI coding agent?

Provide the spec or ticket text and invoke the implement skill. The agent writes the code using TDD at agreed seams, runs typechecks and tests, reviews the result, and commits the work to the current branch.

How does test-driven development fit into this workflow?

TDD is applied at pre-agreed seams during implementation. The agent runs typechecking and individual test files regularly, then executes the full test suite once at the end before review.

Does the implement skill commit code automatically?

Yes. After implementation and a code review pass, the skill commits the completed work to the current branch. It does not create new branches or push to remotes on its own.

When should I not use a spec-driven implementation workflow?

Avoid it for exploratory prototyping or unclear requirements where no spec or tickets exist. The workflow assumes defined work items and agreed testing seams, so vague tasks are better handled with an open-ended coding session first.