Thanks for contributing to Agent Strategy Lab.
- Keep changes small, focused, and testable.
- Do not include secrets in code, logs, or examples.
- Keep backward compatibility unless the change is explicitly breaking.
- Update docs for behavior/API changes.
cd backend
npm install
npx prisma generate
npx prisma db push
cd ../frontend
npm installRun dev servers:
cd backend && npm run dev
cd frontend && npm run devRun:
cd backend && npm run build
cd frontend && npm run buildIf your change affects backend contracts, include:
- API request/response examples
- Migration notes (if Prisma schema changed)
- UI behavior notes (if frontend affected)
- Scope is clear and minimal
- Build passes (
backendandfrontend) - Docs updated (
README/infra/technical log as needed) - No secrets or hardcoded tokens
- Screenshots/GIF for UI changes (if applicable)
Preferred commit style:
feat: ...fix: ...docs: ...refactor: ...chore: ...
- UX polish for failure and confidence-gate messaging
- Benchmark harness and score export
- Additional domain-specific skill integrations