Skip to content

Implementation

Tools for writing code with quality - test-driven development, language patterns, and framework best practices.

View use case scenarios for Implementation →
5 items
skill implementation

api-design

“How should I design this REST/GraphQL API?”

REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs.

Input API requirements and data models
→
Output API design patterns, versioning, error responses, pagination
skill implementation

backend-patterns

“How should I structure my API endpoints and data layer?”

Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.

Input Backend service development
→
Output API design, data access patterns, error handling guidelines
skill implementation

frontend-patterns

“What are the best practices for building this UI component?”

Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.

Input Frontend feature development
→
Output Component patterns, state management, accessibility guidelines
agent implementation sonnet

tdd-guide

“Walk me through writing tests first, then implementing.”

Test-Driven Development specialist enforcing write-tests-first methodology. Use PROACTIVELY when writing new features, fixing bugs, or refactoring code. Ensures 80%+ test coverage.

Input Feature to implement or bug to fix
→
Output Guided test-first implementation with 80%+ coverage
skill implementation

tdd-workflow

“What's the right TDD process? RED-GREEN-REFACTOR - how exactly?”

Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.

Input Any development task
→
Output TDD methodology guidance: write failing test, make it pass, refactor