Full Stack Workspace Init
Create a Shipshit.dev product workspace. For new product repos, use
npx @shipshitdev/v0 as the default scaffolder and treat this skill as the
product-brief, customization, and verification layer.
Contract
Inputs:
- Project directory and product name
- Product scope or PRD-style brief
- Selected app surfaces and product routes
- Agent handoff preference: codex, claude, or skip-agent
Outputs:
- v0 command or interactive route used
- Generated workspace summary
- Quality gate and startup status
- Follow-up tasks for app-specific customization
Creates/Modifies:
- New Bun/Turbo product repo when v0 runs
.agents/skills,.agents/memory,.claude,.codex, apps, packages, and.v0files generated by v0- App-specific files only when customizing after v0 generation
External Side Effects:
- May install dependencies and start
apps/web - May create GitHub repo/issues only when GitHub flags are explicitly enabled
Confirmation Required:
- Before creating a GitHub repo or issue
- Before running in a non-empty directory
- Before overwriting generated app files after v0 completes
Delegates To:
project-init-orchestratorfor route selectionagent-folder-initonly for existing repos not generated by v0testing-cicd-init,linter-formatter-init, andshadcn-setupfor repair/customizationscaffoldfor incremental modules inside the generated workspace
Default v0 Route
For new Shipshit.dev product repos, run:
npx @shipshitdev/v0 <project-directory>
Use non-interactive mode when the user gives enough detail:
npx @shipshitdev/v0 <project-directory> \
--scope "<product scope>" \
--agent codex \
--apps web,app,desktop,mobile,extension,cli \
--routes overview,new-task,search,inbox,activities \
--no-github
Use --skip-agent, --no-install, and --no-start for CI/smoke tests or when
the user only wants the scaffold written.
Legacy Manual Route
Use the manual guidance below only when v0 is not appropriate or when enhancing an existing workspace that already has its core scaffold.
Do not use this route for a new Shipshit.dev product repo unless v0 is unavailable or the user explicitly asks to bypass it.
Stack: Next.js 16 + React 19 + TypeScript + Tailwind + @agenticindiedev/ui (frontend), NestJS 11 + MongoDB + Clerk Auth + Swagger (backend), Vitest 80% coverage + Biome + Husky + GitHub Actions CI/CD, Bun package manager.
Load references/legacy-manual-route.md for the full step-by-step workflow,
generated structure, key code patterns, and development commands.
References
references/templates/- Code generation templatesservice.spec.template.ts- NestJS service unit test templatecontroller.spec.template.ts- NestJS controller unit test templatee2e.spec.template.ts- E2E test template with supertest + MongoDB Memory Servercomponent.spec.template.tsx- React component test templatehook.spec.template.ts- React hook test templatetest-setup.template.ts- Frontend test setup with Clerk mocks
references/vitest.config.ts- Backend Vitest configuration (80% coverage)references/vitest.config.frontend.ts- Frontend Vitest configuration (jsdom)references/github-actions/ci.yml- CI/CD workflowreferences/architecture-guide.md- Architectural decisionsreferences/coding-standards.md- Coding rules