Inspiration

Finding a job as a student is frustrating. Many resumes get rejected not because of lack of skill, but because they fail to pass ATS (Applicant Tracking Systems) or lack proper keyword alignment.

We built ResumeX Intelligence to democratize career opportunities using AI. Our goal was simple:

Transform ordinary resumes into career-launching assets.

We wanted to create a tool that doesn't just analyze — but guides, optimizes, and empowers.


What it does

ResumeX Intelligence is an AI-powered resume analysis and optimization engine.

It provides:

  • ✅ ATS Compatibility Score
  • ✅ Skill Gap Analysis
  • ✅ Job Description Matching
  • ✅ Bullet Point Rewriting with Metrics
  • ✅ Career Fit Prediction

ATS Scoring Formula

$$ ATS\ Score = \left( \frac{\text{Matched Keywords}}{\text{Total Job Keywords}} \right) \times 100 + Formatting\ Bonus $$

Example Improvement

Before:

Worked on frontend development.

After:

Developed responsive React components, improving UI performance by 30% and reducing load time by 18%.


How we built it

We used:

  • Google Gemini API (via Google AI Studio)
  • Prompt Engineering
  • JavaScript (Frontend Logic)
  • HTML & CSS (Dashboard UI)
  • JSON Parsing for structured outputs

System Workflow

resume_text = extract_text(uploaded_resume)
job_text = extract_text(job_description)

analysis = gemini_api.analyze(resume_text, job_text)

render_dashboard(analysis)

The intelligence comes from carefully structured prompts that return clean JSON:

{
  "ATS_score": 72,
  "missing_keywords": ["REST API", "Performance Optimization"],
  "career_fit": ["Frontend Developer", "Web Engineer"]
}

Challenges we ran into

  • Handling inconsistent resume formats (PDF vs text)
  • Ensuring structured JSON output from AI
  • Preventing overly generic AI feedback
  • Designing a clean yet informative UI within hackathon time limits

Error handling example:

try {
   const result = JSON.parse(aiResponse);
} catch (error) {
   console.log("Invalid AI response format");
}

Accomplishments that we're proud of

  • 🚀 Built a fully functional MVP within the hackathon period
  • 📊 Implemented real-time ATS scoring logic
  • ✨ Created measurable bullet point rewriting
  • 🎯 Delivered skill-gap analysis aligned to job descriptions
  • 🧠 Used AI meaningfully — not just as a chatbot

What we learned

  • The power of structured prompt engineering
  • How AI APIs can solve real-world problems without training models
  • Importance of clean UX when presenting analytical insights
  • How to convert raw AI output into production-style dashboards

We also learned that:

Good AI design is about clarity, not complexity.


What's next for ResumeX Intelligence

We plan to:

  • 🌍 Add multi-language resume support
  • 🎤 Integrate voice-based resume scanning
  • 📈 Add career trajectory prediction models
  • 📱 Launch a mobile-friendly version
  • 🤖 Implement interview preparation mode

ResumeX Intelligence is not just a resume analyzer.

It is an AI-powered career growth engine.

Built With

Share this project:

Updates