Compare Keywords

Compare keyword sets between resume and job description. Returns match statistics including score, missing keywords, and intersection.

majiayu000 b3f6e9a 2 files · 1.7 KB Updated 567 repo stars

File contents

Compare Keywords

Overview

Compares two sets of keywords (e.g., from a resume and a job description) to calculate a match score and identify gaps.

Usage

Compare Script

Syntax:

python3 .agent/skills/compare-keywords/scripts/compare_keywords.py <resume_keywords> <job_keywords>

Input Format: Files should be either:

  • JSON list of strings: ["python", "agile", "tdd"]
  • Newline-separated text

Example:

python3 .agent/skills/compare-keywords/scripts/compare_keywords.py resume_skills.json job_requirements.txt

Output:

{
  "score": 0.66,
  "match_count": 2,
  "total_required": 3,
  "matches": ["python", "agile"],
  "missing": ["tdd"]
}

majiayu000/claude-skill-registry-data/tree/main/data/compare-keywords commit b3f6e9a730

Frequently asked questions

npx skillmds add majiayu000/compare-keywords