
Implement Specs
- 16.2k installs
- 148 repo stars
- Updated July 24, 2026
- warpdotdev/common-skills
A completed feature with code, tests, and specifications all aligned and merged into a single PR that documents the feature as it actually ships.
About
implement-specs guides engineers through building a feature after product and tech specifications are approved. The skill emphasizes treating PRODUCT.md as the source of truth for user-facing behavior and TECH.md for architecture and implementation sequencing. Engineers read approved specs first, optionally create tracking documents like PROJECT_LOG.md or DECISIONS.md for complex features, then implement against those specs while synchronously updating both documentation and code in the same PR as requirements or design decisions evolve. Verification happens through unit tests, integration tests, and alignment checks between final code and updated specs.
- Read PRODUCT.md and TECH.md as approved sources of truth before coding
- Implement feature while keeping specs and code synchronized in same PR
- Update PRODUCT.md when user behavior or UX changes; update TECH.md for architecture changes
- Optionally use PROJECT_LOG.md or DECISIONS.md tracking docs for complex, long-running features
- Verify final implementation against current specs using unit and integration tests
Implement Specs by the numbers
- 16,154 all-time installs (skills.sh)
- +1,939 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #28 of 1,901 Documentation skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
implement-specs capabilities & compatibility
- Use cases
- code review · refactoring · documentation
What implement-specs says it does
Use this skill after the product and tech specs are approved. The goal is to build the feature described by the specs while keeping the checked-in specs and the implementation aligned as the work evol
Use the same PR for the specs and implementation when practical so the full feature evolution is reviewable in one place.
npx skills add https://github.com/warpdotdev/common-skills --skill implement-specsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 16.2k |
|---|---|
| repo stars | ★ 148 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 24, 2026 |
| Repository | warpdotdev/common-skills ↗ |
What it does
Implement a feature from approved PRODUCT.md and TECH.md specs while keeping both docs and code synchronized in a single PR.
Who is it for?
Building features after specs are finalized; teams that value spec-driven development; complex features with significant architecture decisions.
Skip if: Exploratory prototyping; spec writing itself; features without formal specs; teams using unstructured iterative development.
When should I use this skill?
Product and tech specs exist, have been reviewed and approved, and the next step is implementation work.
What you get
Feature implementation is complete with PRODUCT.md, TECH.md, code, and tests all synchronized and reviewed together in one PR.
- Feature implementation code
- Updated PRODUCT.md and TECH.md
- Unit and integration tests
By the numbers
- Two required spec files: PRODUCT.md and TECH.md
- Two optional tracking documents: PROJECT_LOG.md and DECISIONS.md for complex features
Files
implement-specs
Implement an approved feature from PRODUCT.md and TECH.md.
Overview
Use this skill after the product and tech specs are approved. The goal is to build the feature described by the specs while keeping the checked-in specs and the implementation aligned as the work evolves.
Approved specs should live directly under a ticket-named directory in specs/, for example specs/APP-1234/PRODUCT.md and specs/APP-1234/TECH.md.
In many cases, the implementation should be pushed in the same PR as the product and tech specs. As the engineer iterates, changes to PRODUCT.md, TECH.md, and the code should all be pushed in that same PR so review stays anchored to the feature that will actually ship.
Prerequisites
Before using this skill:
- confirm that
PRODUCT.mdexists - confirm that
TECH.mdexists when the feature warranted one - confirm that the relevant specs have been reviewed and approved enough to start implementation
Workflow
1. Read the approved specs first
Treat:
PRODUCT.mdas the source of truth for user-facing behaviorTECH.mdas the source of truth for architecture, sequencing, and implementation shape
Make sure you understand the expected behavior, constraints, risks, and validation plan before writing code.
2. Offer optional implementation aids for large features
For large or long-running features, optionally offer one of these aids to the user before implementation begins:
PROJECT_LOG.mdto track checkpoints, explored paths, partial findings, and current implementation stateDECISIONS.mdto capture concrete product and technical decisions made during the PRD and tech design process
These are optional aids, not required deliverables. Offer them when they would reduce confusion or help future agents avoid re-exploring the same paths.
3. Plan and implement against the specs
Break the work into concrete implementation steps, then implement the feature against the approved specs.
During implementation:
- keep behavior aligned with
PRODUCT.md - keep architecture and sequencing aligned with
TECH.md - add or update tests and verification artifacts as the work lands
Use the same PR for the specs and implementation when practical so the full feature evolution is reviewable in one place.
4. Update specs as the implementation evolves
If implementation reveals that the intended behavior or design should change, update the checked-in specs rather than letting them go stale.
In particular:
- update
PRODUCT.mdwhen user-facing behavior, UX, edge cases, or success criteria change - update
TECH.mdwhen architecture, sequencing, module boundaries, or validation strategy change - keep those updates in the same PR as the corresponding code changes
The PR should describe the feature that actually ships, not just the initial draft of the specs.
5. Verify against the specs
Before considering the work complete, verify that the code matches the current specs.
Prefer:
- unit tests and regression coverage that follow the repository's local testing conventions
- integration or end-to-end tests for important user flows
Best Practices
- Keep specs and code synchronized throughout implementation.
- Prefer updating the spec immediately when decisions change rather than batching spec cleanup until the end.
- Use optional tracking documents only when they add real value for a complex feature.
- Keep the same PR coherent: spec updates, code changes, tests, and optional tracking docs should all support the same feature narrative.
Related Skills
spec-driven-implementationwrite-product-specwrite-tech-spec
Related skills
How it compares
Choose implement-specs over generic coding skills when written PRODUCT.md and TECH.md are the source of truth and must stay aligned with code in one PR.
FAQ
Should specs and code be in the same PR?
Yes. Use the same PR for specs and implementation so the full feature evolution is reviewable in one place and the PR describes the feature that actually ships.
What if implementation reveals the spec should change?
Update the checked-in PRODUCT.md or TECH.md rather than letting them go stale. Keep those updates in the same PR as the corresponding code changes.
Are PROJECT_LOG.md and DECISIONS.md required?
No, they are optional aids. Offer them only when they would reduce confusion or help future agents avoid re-exploring the same paths for large or long-running features.
Is Implement Specs safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.