Simple ATS (application tracking system) Resume/C.V validation tool
Documentation: resume-forge-lint.web.app
Companion tool: ResumeForge β generate ATS-friendly resumes
pip install resumeforgelintOr install from source:
git clone git@github.com:JohnStrong/ResumeForgeLint.git
cd ResumeForgeLint
python3 -m venv .venv
source .venv/bin/activate
pip install -e .Requires Python 3.10+.
- Validate a resume provided as a
.txtfile - Fuzzy section heading detection using synonym sets (e.g., Experience/Work History/Employment; Education/Academics; Skills/Technical Skills)
- Per-section rubric scoring + issue reporting
- Shows which sections/signals were detected
- Lists issues with severity (critical/warning/info) and short "why" explanations
- Human-readable output
- Default mode prints a summary of ATS risk + top issues per section
- Required-section expectations (baseline)
- Core sections expected (scored even if missing):
- Work Experience
- Skills
- Education
- Unrecognized sections (e.g. Projects, Volunteer Work, Certifications) are ignored and do not contribute to the score
- Core sections expected (scored even if missing):
Note: Profile/Summary and References are not scored in v1. Most ATS systems do not parse these sections for structured data, and modern best practice is to omit References entirely. They do not contribute to the score positively or negatively.
[x]denotes rubric is implemented
- Full name present on first line
- Email address present
- Phone number present
- Phone number country code present (e.g. +1, +44)
- LinkedIn URL present (optional, bonus)
- Section present
- Quantified achievements (numbers, percentages, metrics)
- Action verbs at start of bullet points
- Date ranges present for each role
- Company and role title present
- Section present
- Contains keywords (technical terms, tools, languages)
- Minimum keyword count threshold
- No excessive soft-skill filler
- Section present
- Degree type present (BSc, MSc, PhD, etc.)
- Institution name present
- Graduation date present
Analyse a .txt resume, score each section, and print a summary report.
resumeforgelint validate --input resume.txtWhat it does:
- Reads the plain-text resume
- Detects sections via fuzzy heading matching (synonym sets)
- Scores each section and flags issues (critical / warning / info)
- Prints a summary to stdout:
- Overall rating (π’ Good / π‘ Needs Work / π΄ Poor)
- Per-section breakdown with score and top issue
Example output:
Overall: π’ Good (80/80)
Header π’ 20/20
Experience π’ 20/20
Education π’ 20/20
Skills π’ 20/20
All required sections present with complete information. Scores 80/80 (100%).
$ resumeforgelint validate --input examples/good_header.txtOverall: π’ Good (80/80)
Header π’ 20/20
Experience π’ 20/20
Education π’ 20/20
Skills π’ 20/20
Has all sections but Education is missing degree type and institution. Experience lacks action verbs. Scores 62/80 (77%).
$ resumeforgelint validate --input examples/needs_work.txtOverall: π‘ Needs Work (62/80)
Header π’ 20/20
Experience π’ 17/20 β Bullet points should start with strong action verbs (e.g. built, delivered, improved)
Education π΄ 5/20 β Education should include a degree type (e.g. BSc, MSc, PhD)
Skills π’ 20/20
Missing name in header, no company/role or dates in experience, no technical keywords in skills, and no education section content. Scores 8/80 (10%).
$ resumeforgelint validate --input examples/bad_all.txtOverall: π΄ Poor (8/80)
Header π΄ 0/20 β A Resume should contain the applicants full name at the start (top) of the document
Experience π΄ 0/20 β Each role should include company name and role title
Skills π΄ 8/20 β Skills section should contain technical keywords (tools, languages, frameworks)
Education π΄ 0/20 β Education section should not be empty
Run the full test suite:
pytestFidelity tests compare our rubric scoring against independent spaCy NER extraction. They assert that when spaCy can extract structured data (name, email, org, dates, degree), our tool scores that section as passing β and when spaCy cannot extract it, our tool flags it as an issue.
pytest fidelity_tests/Requires spaCy:
pip install spacy
python -m spacy download en_core_web_sm