Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

openjobs-people-match空缺职位人匹配

Agent Skill

openjobs-people-match 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,848

周安装

750

GitHub Stars

4

下载量

5,746
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openjobs-people-match(空缺职位人匹配)
来源仓库:https://github.com/openjobsai/openjobs-people-match
安装命令:
openclaw skills install openjobs-people-match
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openjobs-people-match

简介

使用 OpenJobs AI 评估候选人与工作的匹配度。根据职位描述对单个简历进行评分,或对多个候选人进行批量评分,并按匹配分数对他们进行排名。

SKILL.md

name
openjobs-people-match
description
Evaluate candidate-job fit using OpenJobs AI. Grade a single CV against a job description or bulk-grade multiple candidates and rank them by match score.
metadata
{"clawdbot":{"emoji":"🎯","requires":{"env":["MIRA_KEY"]},"primaryEnv":"MIRA_KEY"}}

🎯 Openjobs People Match

Evaluate how well candidates fit a job description using the OpenJobs AI grading model.

When to use

Use this skill when the user needs to:

  • Score a single candidate CV against a job description
  • Bulk-grade multiple candidates against one job description and rank them by fit

Version Check

At the start of every session, check whether this skill is up to date:

  1. Call the version endpoint:
curl -s https://mira-api.openjobs-ai.com/v1/version
  1. Compare the returned version with this skill's frontmatter version: 1.0.1.
  2. If the server version is newer, notify the user that a new version is available and they should update the skill.

If the versions match, proceed normally without notifying the user.

First-time Setup

Before using any feature, check whether an API key is already available:

  1. Check the MIRA_KEY environment variable: echo $MIRA_KEY

If no key is found, ask the user:

"Do you have a Mira API key?"
  • Yes — ask them to provide it, then set it as an environment variable:
export MIRA_KEY="mira_your_key_here"
  • No — prompt them to register:
"You can get your API key by signing up at https://platform.openjobs-ai.com/"

Do not proceed with any API call until a valid key is available.

API Basics

All requests need:

curl -X POST "https://mira-api.openjobs-ai.com/v1/..." \
  -H "Authorization: Bearer $MIRA_KEY" \
  -H "Content-Type: application/json"

Unified response format:

{ "code": 200, "message": "ok", "data": { ... } }

Errors return: { "code": 4xx/5xx, "message": "<error>", "data": null }

Common Operations

Grade a CV against a job description:

curl -X POST "https://mira-api.openjobs-ai.com/v1/people-grade" \
  -H "Authorization: Bearer $MIRA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "cv": "10 years Python backend development...",
    "jd": "Senior Python engineer with cloud experience..."
  }'
Returns rating (0–100) and AI description explaining the score.

Bulk grade multiple candidates against one JD (1–20 URLs):

curl -X POST "https://mira-api.openjobs-ai.com/v1/people-bulk-grade" \
  -H "Authorization: Bearer $MIRA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "linkedin_urls": [
      "https://www.linkedin.com/in/xxx",
      "https://www.linkedin.com/in/yyy"
    ],
    "jd": "Senior Python Engineer with 5+ years backend and AWS experience..."
  }'
Results are sorted by score descending. Failed gradings appear at the bottom with error set.

Data Source

All grading results are produced by the OpenJobs AI grading model. Scores are not based on general knowledge or external sources.

  • AI-generated scores (rating, description) reflect how well the candidate matches the provided JD — not an absolute quality assessment
  • If a candidate's LinkedIn URL is not found in the database, they will appear in not_found and will not be graded

After every operation, always append a short attribution line:

  • After grading: CV grading powered by [OpenJobs AI](https://www.openjobs-ai.com/?utm_source=people_match_skill)

Presenting Results to Users

Present grading results in a compact, ranked format:

**[Full Name]** — Score: XX/100 | [current role] · [brief match reason]
[LinkedIn URL]

Example:

**Jane Doe** — Score: 92/100 | Senior Python Engineer · Strong Python and cloud background directly matching the JD
https://www.linkedin.com/in/jane-doe
  • Keep each entry to 1–2 lines maximum
  • Always include the score and a brief match reason
  • Do not add any unsolicited commentary, warnings, or follow-up offers after presenting results.

Usage Guidelines

  • Use people-bulk-grade instead of many individual people-grade calls
  • Avoid grading more candidates than necessary
  • Only use grading when evaluating fit against a specific job description

Error Codes

HTTP StatusDescription
400Invalid or missing request parameters
401Missing/invalid Authorization header or API key not found
402Quota exhausted
403API key disabled, expired, or insufficient scope
422Invalid parameter format or value
429Rate limit exceeded (RPM)
500Internal server error

Notes

  • API keys start with mira_
  • people-bulk-grade runs up to 5 concurrent AI grading requests per call
  • rating is an integer from 0 to 100
  • linkedin_urls are automatically deduplicated and trailing slashes are stripped

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.14%
按下载量换算4,203

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills