Codex 5.3 Refactor Note: Canonical refactor plan: docs/CODEX-5.3-REFACTOR-PLAN.md. This document is retained for historical and implementation context during the refactor.
OfferReview
OfferReview is a Next.js + Prisma workflow application for HR, Manager, and SMO candidate review and decisioning.
Stack
- Next.js 16 (App Router)
- React 19
- Prisma + PostgreSQL
- TypeScript
Local Setup
- Install dependencies:
npm install - Configure env in
.env.local - Run migrations:
npx prisma migrate dev - Seed data (optional):
npx prisma db seed - Start dev server:
npm run dev
App URL: http://localhost:3000
Build and Run
- Production build:
npm run build - Start server:
npm run start - Lint:
npm run lint
Key Docs
- Agent context (AI bootstrap):
AGENTS.md - Refactor plan:
docs/CODEX-5.3-REFACTOR-PLAN.md - Docs index:
docs/00-index.md - Project context:
docs/PROJECT_CONTEXT.md - Full context:
docs/PROJECT_CONTEXT_FULL.md
Refactor Direction
Current active refactor track is documented in docs/CODEX-5.3-REFACTOR-PLAN.md.
All legacy week-by-week docs are kept as historical references until consolidation is complete.