From claudekit
Guides end-to-end feature implementation: requirements analysis, task planning, TDD coding, full testing, self-review, and commit/PR. Use for feature specs or issues.
npx claudepluginhub duthaho/claudekit --plugin claudekitThis skill uses the workspace's default tool permissions.
- Implementing a complete feature from requirements to delivery
Guides feature development systematically: explore codebase with agents, clarify requirements, design architecture, implement, test, and review.
Guides end-to-end feature implementation workflow as vertical slices covering data model, domain logic, API, and UI. Use for new features or feature request issues.
Generates detailed TDD implementation plans for multi-step features from specs, breaking into 2-5 minute tasks with exact file paths, code snippets, test commands, and git commits. Use before coding.
Share bugs, ideas, or general feedback.
systematic-debuggingrefactoringtestingexecuting-plansautoplan on the resulting plan to pressure-test strategy, architecture, design, and DX before Phase 4 (Implementation)If the feature involves unfamiliar technology:
For each task:
# Python
pytest -v --cov=src
# TypeScript
pnpm test
Self-review checklist:
## Feature Implementation Complete
### Feature
[Feature description]
### Changes Made
- `path/to/file.ts` — [What was added/modified]
- `path/to/file.test.ts` — [Tests added]
### Tests
- [x] Unit tests passing
- [x] Integration tests passing
- [x] Coverage: XX%
### Ready for Review
brainstorming — Use before this skill when requirements are unclear or need explorationwriting-plans — Use for detailed task breakdown when the feature is complextest-driven-development — The TDD discipline applied during Phase 4git-workflows — Committing and shipping the completed featurerequesting-code-review — Getting feedback before merging