返回 Skill 列表
extension
分类: 开发与工程无需 API Key

compare-keywords

比较简历和职位描述之间的关键词集。返回匹配统计数据,包括得分、缺失的关键词和交集。

person作者: jakexiaohubgithub

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"]
}