Setup instructions, tech stack overview, next steps
Git setup
.gitignore configured for the stack
Stack-Specific Patterns
See
references/templates.md
for detailed patterns per stack:
Next.js App Router
Vite + React
NestJS
FastAPI
Express + TypeScript
Vue + Vite
SvelteKit
Best Practices
Use absolute imports (@/ alias) where supported
Include environment variable templates
Add basic error handling and logging setup
Configure path mappings in tsconfig
Include Docker files for containerization (optional)
Add GitHub Actions or CI workflow templates (optional)
Progressive Enhancement
Start with minimal viable structure, then add:
Database setup (Prisma, TypeORM, SQLAlchemy)
Auth scaffolding (NextAuth, Passport, JWT)
API client setup (Axios, Fetch wrapper)
State management (Zustand, Redux, Pinia)
Testing setup (Jest, Vitest, Pytest)
Output Structure
Present the complete project tree first, then create all files in proper locations. Always provide a summary of what was created and next steps to run the project.