Owner: Nick Last Verified: 2026-03-05 Status: Active
- Scaffold:
pnpm scaffold:domain --name accounts --wire- Refine generated files to your product logic.
- Update
docs/product-specs/accounts.mdwith real acceptance criteria. - Run
pnpm check:all.
- Scaffold a Next.js app and FastAPI service:
pnpm scaffold:workforce --web studio --api core- Install JS dependencies:
pnpm install- Start the Next app:
pnpm --dir apps/studio dev- Start the FastAPI service (optional):
cd services/core
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
uvicorn app.main:app --reload --port 8000If you have several JS apps under apps/*, run them together:
pnpm dev:allThe command prints and uses deterministic local ports so each app is reachable without manual coordination.
- Implement script under
scripts/. - Expose command in
package.json. - Add CI workflow or extend existing workflow.
- Add tests in
tests/.
- Add endpoint/signal in app runtime.
- Extend verifier scripts under
scripts/verify-*.ts. - Output machine-readable artifact under
artifacts/. - Update review checklist in
docs/REVIEW_LOOP.md.
- Link every new doc from an index.
- Keep
Last Verifiedcurrent. - Run
pnpm doc:gardenregularly.