create-feature
Installation
SKILL.md
Create Feature
When to use this skill:
- Creating a new domain feature with full stack implementation
- Adding CRUD operations for a new entity
- Building features that require database + API + frontend
What this skill does:
- Creates database schema in appropriate packages/db-* package (e.g., db-main, db-auth)
- Generates Drizzle migration
- Creates CQRS command/query handlers in apps/api
- Creates tRPC router for type-safe API
- Generates frontend components (Server + Client)
- Adds tests using node:test for unit tests and Testcontainers for E2E
- Updates documentation