← 返回 Skills 市场
51mee-com

51mee Resume Match

作者 51mee · GitHub ↗ · v1.2.1 · MIT-0
cross-platform ✓ 安全检测通过
277
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install 51mee-resume-match
功能描述
人岗匹配。触发场景:用户要求匹配简历和职位;用户问这个候选人适合这个职位吗;用户要筛选最匹配的候选人。
使用说明 (SKILL.md)

人岗匹配技能

功能说明

评估候选人与职位的匹配程度,生成匹配度评分和分维度分析。

API 调用

接口地址: https://openapi.51mee.com/api/v1/parse/match

请求方式: POST (multipart/form-data)

参数:

  • file: 简历文件(必填)
  • jd_text: 职位描述文本(必填)

调用命令:

curl -X POST "https://openapi.51mee.com/api/v1/parse/match" \
  -F "file=@候选人简历.pdf" \
  -F "jd_text=岗位职责:\
1. 负责系统架构设计\
\
任职要求:\
- 5年以上Java开发经验\
- 熟悉Spring Boot"

返回数据结构

{
  "code": 0,
  "message": "success",
  "data": {
    "overall_score": 85,
    "overall_level": "良好",
    "star_rating": 4,
    
    "dimensions": {
      "skill_match": {
        "score": 90,
        "level": "优秀",
        "matched_skills": ["Java", "Spring Boot", "MySQL"],
        "missing_skills": ["Docker", "K8s"],
        "details": "核心技能完全匹配"
      },
      "experience_match": {
        "score": 85,
        "level": "良好",
        "required_years": 5,
        "actual_years": 6,
        "industry_match": true,
        "details": "经验年限符合要求"
      },
      "education_match": {
        "score": 95,
        "level": "优秀",
        "required": "本科",
        "actual": "本科",
        "details": "学历符合要求"
      },
      "salary_match": {
        "score": 70,
        "level": "一般",
        "budget_range": "20K-25K",
        "expected_range": "25K-30K",
        "details": "期望薪资略高于预算"
      }
    },
    
    "advantages": [
      "技术栈高度匹配,Java/Spring/MySQL 都有实战经验",
      "有大型项目经验,处理过高并发场景",
      "职业发展路径清晰,稳定性好"
    ],
    
    "gaps": [
      "缺少容器化经验(Docker/K8s)",
      "期望薪资 25K,略高于预算 20K"
    ],
    
    "risks": [
      "最近一份工作时间较短(8个月)"
    ],
    
    "interview_suggestions": [
      "重点考察高并发项目细节",
      "了解跳槽原因",
      "评估容器化技术学习能力"
    ],
    
    "recommendation": {
      "should_interview": true,
      "confidence": 85,
      "reason": "综合素质优秀,技术匹配度高,值得深入沟通"
    }
  }
}

匹配维度说明

维度 字段 权重 说明
技能匹配 skill_match 技术栈是否对口
经验匹配 experience_match 工作年限、行业背景
学历匹配 education_match 教育背景
薪资匹配 salary_match 视情况 期望与预算对比

评分等级

分数 等级 星级
90-100 优秀 ⭐⭐⭐⭐⭐
75-89 良好 ⭐⭐⭐⭐
60-74 一般 ⭐⭐⭐
0-59 较差 ⭐⭐

输出模板

## 候选人匹配报告

**候选人**: [姓名]
**综合匹配度**: [score]/100 ⭐⭐⭐⭐

### 分维度评估
| 维度 | 得分 | 评级 | 说明 |
|------|------|------|------|
| 技能匹配 | [score] | [level] | [details] |
| 经验匹配 | [score] | [level] | [details] |
| 学历匹配 | [score] | [level] | [details] |
| 薪资匹配 | [score] | [level] | [details] |

### 核心优势 ✅
- [advantage1]
- [advantage2]

### 需关注 ⚠️
- [gap1]
- [gap2]

### 面试建议
- [suggestion1]
- [suggestion2]

### 推荐
**[建议/不建议]面试** - [reason]

批量筛选流程

当用户要筛选多个候选人时:

  1. 定义岗位要求 - 收集完整的职位描述
  2. 逐个匹配 - 对每个候选人调用匹配接口
  3. 对比排序 - 按 overall_score 排序
  4. 输出报告 - 生成排名对比表

注意事项

  • 必须同时提供简历文件和职位描述
  • 职位描述越详细,匹配越准确
  • 先检查返回的 code 字段
  • 匹配结果是 AI 分析,最终决策需人工判断
安全使用建议
This skill appears to do what it says (call a matching API with a resume and job description) but before installing consider: (1) Privacy: resumes contain personal data — check whether you have candidate consent and whether sending resumes to https://openapi.51mee.com is acceptable. (2) Authentication: the documentation example shows no API key; verify whether the real API requires credentials and where to store them securely. (3) Vendor vetting: there is no homepage or source listed — try to confirm the service's legitimacy and data retention/privacy policies. (4) Testing: try the skill only on non-sensitive sample resumes first. If you cannot verify the endpoint, avoid uploading real candidate data or require that matching be done locally or via a vetted provider.
功能分析
Type: OpenClaw Skill Name: 51mee-resume-match Version: 1.2.1 The skill '51mee-resume-match' is designed to perform resume-to-job matching by sending candidate files and job descriptions to a third-party API (openapi.51mee.com). The behavior is fully aligned with its stated purpose, and the provided instructions in SKILL.md are standard for an AI agent to process recruitment data without any signs of malicious intent, obfuscation, or unauthorized access.
能力评估
Purpose & Capability
Name/description (人岗匹配) align with the SKILL.md: it documents calling an external match API with a resume file and job description to produce scores and a report. No unrelated binaries, env vars, or config paths are requested.
Instruction Scope
Instructions are narrowly scoped to POSTing a resume file and jd_text to https://openapi.51mee.com/api/v1/parse/match and to format the returned JSON into a report. However, the skill explicitly instructs uploading resumes (sensitive personal data) to an external endpoint and gives no guidance about consent, redaction, or privacy. It also omits any authentication steps (API key/token) which is unusual for an external API.
Install Mechanism
Instruction-only skill with no install spec or code to write to disk. Lowest install risk; nothing will be downloaded or installed by the skill itself.
Credentials
The skill requests no environment variables or credentials, which is coherent with the manifest. That said, many SaaS APIs require an API key — the absence of any declared auth is noteworthy. If the real API actually requires credentials, the skill's manifest is incomplete and could cause silent failures or unexpected unauthenticated requests.
Persistence & Privilege
always is false and there are no claims of modifying other skills or system configs. The skill does not request persistent platform privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install 51mee-resume-match
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /51mee-resume-match 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.2.1
51mee-resume-match 1.0.0 - 首次发布人岗匹配技能,实现简历与职位描述的自动匹配评分。 - 支持多维度评估(技能、经验、学历、薪资),并生成结构化匹配报告。 - 提供核心优势、差距、面试建议及面试推荐。 - 支持批量候选人筛选与对比排序。 - 明确API调用方式与数据结构,便于集成和使用。
v1.0.0
51mee-resume-match 1.0.0 - Initial release of the 人岗匹配(resume-job matching)skill. - Supports candidate-to-job matching via API, generating match scores and detailed dimension analysis. - Provides structured data on skills, experience, education, and salary match, along with advantages, gaps, risks, and interview suggestions. - Includes markdown output templates for candidate reports. - Offers workflow guidance for batch screening of multiple candidates.
元数据
Slug 51mee-resume-match
版本 1.2.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

51mee Resume Match 是什么?

人岗匹配。触发场景:用户要求匹配简历和职位;用户问这个候选人适合这个职位吗;用户要筛选最匹配的候选人。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 277 次。

如何安装 51mee Resume Match?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install 51mee-resume-match」即可一键安装,无需额外配置。

51mee Resume Match 是免费的吗?

是的,51mee Resume Match 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

51mee Resume Match 支持哪些平台?

51mee Resume Match 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 51mee Resume Match?

由 51mee(@51mee-com)开发并维护,当前版本 v1.2.1。

💬 留言讨论