This project uses Forge. Before any work, read
.forge/CONTEXT.mdfor the methodology this project follows. If that file is missing, install Forge with:npm install -g @firatcand/forge forge upgradeNote:
.forge/CONTEXT.mdis gitignored and regenerated per-developer byforge upgrade.
Note: This is the forge repo itself. Iterating on this repo means iterating on the framework — every change ships to
npm publish @firatcand/forgeand lands on adopter machines vianpx @firatcand/forge. Treat all changes as public-API.
- Build:
npm run build - Test:
npm test - Type check:
npm run typecheck - Lint:
npm run lint(ESLint — unused vars/imports + unreachable; non-blocking, warnings only) - Dev:
npm run dev - Render methodology context (one-shot, until Phase B's
forge upgradeships):npm run forge:render-context
- Functional components only, no class components
- Always handle errors explicitly — no silent catches
- New API routes must have input validation
- See
spec/for full conventions
See CRITICAL.md