🟢 Vibe Starter Kit Docs
Vibe Starter Kit
PRD-driven starter kit for fast shipping, fewer bugs, and clean structure.
🧭 Not sure where to start?
👉 Open: Start Here (No Confusion)
🎯 What should you do in this starter kit?
- Write PRD/spec first.
- Implement feature per module.
- AI agent updates required docs, then you review.
- Run quality gate.
- Release only when all checklists are green.
✅ What outcomes should you expect?
- Faster feature delivery.
- Lower regression risk.
- Always up-to-date documentation.
- Ready to scale into medium-high complexity.
Why this starter kit is practical
⚡ Fast Delivery
Start from PRD and execute directly with a clear flow.
🛡️ Stable Quality
Lint, static analysis, test, and docs guard are default requirements.
📚 Living Docs
OpenAPI + DBML + Business Flow must always stay in sync.
Recommended mode
Use Docker Compose to run quickly without long manual setup.
Quick Start
- Docker Compose
- Manual
cd projects/vibe-starterkit
docker compose up -d --build
App : http://localhost:8000
Swagger : http://localhost:8000/docs/v1
Docs Portal : http://localhost:3000
cd projects/vibe-starterkit
cp .env.example .env
composer install
php artisan key:generate
php artisan migrate --seed
php artisan starter:quality-gate
php artisan serve --host=0.0.0.0 --port=8000
Safest workflow
Hard rule
Do not claim a feature is done if docs are not updated and quality gate is not green.