Craft your career, your way. Track your progress, build your CV, and land your next job with AI or with practical manual workflows when you prefer.
It's not just a CV parser; it's a complete operating system for your career:
- π AI-Powered CV Analysis: Instantly analyze your resume with cloud or local AI to receive a comprehensive review, custom questionnaires, and tailored recommendations for improvement.
- π― AI-Powered Job Match & Analysis: Paste any job description to get an ATS-style match rate, detailed AI-powered gap analysis, and actionable recommendations. Transition matches directly into a visual Kanban board to track application status (Bookmarked, Applied, Interviewing, Offered, Rejected) with smooth layout animations and drag previews.
- π Work Journal: Log your daily work, achievements, and challenges. Let the AI automatically use your journal entries to enrich your CV and prepare you for interviews.
- π Career Objectives Planner: Set strategic professional goals, organize them by priority matrices, list actionable milestones, and track measurable outcomes.
- π Feedback Gatherer & Notes: Collect professional notes about peers, managers, or clients over time. Generate beautifully balanced performance summaries or formal recommendations with local or cloud AI.
- π¬ Received Feedback Tracker: Keep a detailed log of direct feedback received from peers to recognize your core strengths and areas of growth.
- π¨ AI-Powered Templates: Choose from professional designs and let the AI automatically structure and fill them with your CV data.
- βοΈ Intelligent CV Editor: Refine your resume with natural language instructions. Uses deep-linked URL-based state management so you never lose your history.
- π Smart CV Library: Upload, preview (PDF support), and manage multiple versions of your resume seamlessly.
- π€ Flexible Assistance (Assisted Workflows): Supports Integrated AI (Gemini, OpenAI, Ollama), bring your own API key, copy-paste (external chat workflow), or fully manual mode.
- π Offline AI (Ollama Local): Complete privacy-first, 100% offline AI execution of all analysis and writing tasks using local models.
- π Observability Dashboard: Complete admin event tracking dashboard for analyzing system logs, workflow timelines, and API details.
AI-powered CV analysis |
AI-assisted CV editor |
ATS-friendly templates |
Shareable public CV |
Job match and gap analysis |
Context-aware job chat |
Tailored interview preparation |
|
Career objectives and milestones |
Received feedback tracker |
Professional feedback notes |
|
Integrated providers, local models, copy-paste workflows, or manual control
Get the project running on your local machine in just a few minutes.
git clone https://github.com/JonathandelaSen/fabra.git
cd fabra
npm installWe use Supabase for authentication, database, and storage. You can run it entirely locally:
npm run supabase:start(Keep the terminal open to copy the Supabase keys generated in the output.)
cp env.sample .env.localFill in the variables in .env.local:
NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY&SUPABASE_SERVICE_ROLE_KEY: From the local Supabase start output.PYTHON_PARSER_URL:http://127.0.0.1:8001for local development.PYTHON_PARSER_SECRET: Shared secret used by the Next.js app to call the Python parser.
AI provider credentials are not configured in backend environment variables. Each user configures their own Gemini, OpenAI, or Ollama settings from the app Settings screen, and those preferences stay in that browser.
The Python parser runs as a small local service and mirrors the production parser.
cp services/pdf-parser/env.sample services/pdf-parser/.env.localSet SUPABASE_SERVICE_ROLE_KEY in services/pdf-parser/.env.local from the local Supabase output, then run:
npm run parser:devnpm run devπ Open http://localhost:3000 and start uploading your CVs!
A modern, robust, and scalable foundation:
- Frontend: Next.js 16 (App Router), React 19, TailwindCSS 4, Framer Motion,
@dnd-kit/core - Backend & DB: Supabase (Auth, Postgres DB, Edge Storage)
- AI Engines: Multi-provider support using Google GenAI (
@google/genai), OpenAI, and local Ollama. - Localization: Integrated multilingual setup via
next-intl(English and Spanish support). - File Processing:
pdf-parse,pdfjs-dist, Pythonpdfminer.six
The application is built on a highly polished, premium visual design system:
- Aesthetic Excellence: Curated harmonious OKLCH color palettes optimized for modern, high-contrast dark modes (eliminating raw CSS/Tailwind color codes in favor of cohesive design tokens).
- Interactive UI: Smooth transitions, micro-animations via Framer Motion, dynamic sidebar gradient highlights, and a global
app-glowelement. - Fluid Layouts: Uses responsive, full-screen layouts that dynamically adapt to any viewport.
Maintain code quality and structural integrity with the robust validation suite:
- DDD Boundaries: Enforce hexagonal architecture boundaries and domain-driven design structure using strict verify scripts (
npm run ddd:check). - Backend Tests: Run tests against your local Supabase stack with
npm run test:backend. - E2E Integration: Full Playwright E2E coverage for both integrated and copy-paste workflow modes using
npm run test:e2e:localornpm run test:e2e:ui.
Deploy the parser as a separate Vercel project named fabra-python-parser:
cd services/pdf-parser
vercel link
vercel env add PYTHON_PARSER_SECRET production
vercel env add SUPABASE_URL production
vercel env add SUPABASE_SERVICE_ROLE_KEY production
vercel --prodAdd these variables to the main Next.js Vercel project:
PYTHON_PARSER_URL=https://fabra-python-parser.vercel.app
PYTHON_PARSER_SECRET=the-same-secret











