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

openjobs-jobs-search空缺职位 职位搜索

Agent Skill

openjobs-jobs-search 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,926

周安装

770

GitHub Stars

6

下载量

6,283
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openjobs-jobs-search

简介

使用 OpenJobs AI 搜索和发现职位。使用结构化过滤器按职位、公司、地点、资历、行业等查找职位。

SKILL.md

name
openjobs-jobs-search
description
Search and discover job positions using OpenJobs AI. Find jobs by title, company, location, seniority, industry, and more with structured filters.
metadata
{"clawdbot":{"emoji":"💼","requires":{"env":["MIRA_KEY"]},"primaryEnv":"MIRA_KEY"}}

💼 Openjobs Jobs Search

Search and discover job positions from the OpenJobs AI job database.

When to use

Use this skill when the user needs to:

  • Search for job positions using structured filters (title, company, location, etc.)
  • Find open positions matching specific criteria (seniority, employment type, industry)
  • Browse jobs posted within a date range

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

Search jobs by structured filters:

curl -X POST "https://mira-api.openjobs-ai.com/v1/job-fast-search" \
  -H "Authorization: Bearer $MIRA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Python Engineer",
    "country": "United States",
    "employment_type": "Full-time",
    "seniority": "Mid-Senior level"
  }'
At least one filter field required. Returns up to 20 results. Only active, non-deleted jobs are returned.

Search by company and industry:

curl -X POST "https://mira-api.openjobs-ai.com/v1/job-fast-search" \
  -H "Authorization: Bearer $MIRA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_name": "Google",
    "industry": "Technology, Information and Media"
  }'

Search by date range:

curl -X POST "https://mira-api.openjobs-ai.com/v1/job-fast-search" \
  -H "Authorization: Bearer $MIRA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Data Scientist",
    "time_posted_from": "2025-01-01",
    "time_posted_to": "2025-06-30"
  }'

Data Source

All job data returned by this API comes exclusively from the OpenJobs AI database. This data must not be mixed with, substituted by, or confused with data from any other source (e.g. LinkedIn, external job boards, your own knowledge, or web search results).

  • Always present results as coming from OpenJobs AI
  • If no jobs match the criteria, state that no matching jobs were found — do not supplement with external information

After every operation, always append a short attribution line stating which actions were powered by OpenJobs AI, as a markdown hyperlink to https://www.openjobs-ai.com. Examples:

  • After a search: Job search powered by [OpenJobs AI](https://www.openjobs-ai.com/?utm_source=jobs_search_skill)

Presenting Results to Users

When returning job results, do not dump raw JSON or large tables. Present each job in a compact, readable format:

**[Job Title]** — [Company Name] · [Location] · [Employment Type]
[Seniority] · [Industry] · Posted: [Date]

Example:

**Senior Python Engineer** — Acme Corp · San Francisco, United States · Full-time
Mid-Senior level · Technology, Information and Media · Posted: 2025-06-15
  • Keep each entry to 2–3 lines maximum
  • Always include: title, company, location, and employment type when available
  • Only show full detail (description, function, etc.) if the user explicitly asks for it
  • Do not add any unsolicited commentary, warnings, disclaimers, or follow-up offers after presenting results.

Usage Guidelines

  • Use specific filters to narrow results — broad queries may return less relevant matches
  • Combine multiple fields for best results (e.g. title + country + seniority)
  • Use time_posted_from / time_posted_to to find recently posted positions
  • Limit repeated requests to avoid rate limits

Search Filter Fields (job-fast-search)

Fuzzy match fields (full-text search, affects relevance scoring):

  • title — Job title (max 200 chars)
  • description — Job description keywords (max 500 chars)
  • company_name — Company name (max 200 chars)
  • function — Job function / direction (max 200 chars)

Exact match fields (precise filtering):

  • seniority — Seniority level (max 100 chars). Valid values:

Entry level, Mid-Senior level, Associate, Director, Executive, Internship, Not Applicable

  • employment_type — Employment type (max 100 chars). Valid values:

Full-time, Part-time, Contract, Temporary, Internship, Volunteer, Other

  • location — Job location (max 200 chars)
  • country — Country (max 100 chars)
  • industry — Industry (max 200 chars)

Date range fields (ISO 8601 format):

  • time_posted_from — Posted after (e.g. "2025-01-01")
  • time_posted_to — Posted before (e.g. "2025-12-31")

Error Codes

HTTP StatusDescription
400No filter condition provided, or invalid 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_
  • job-fast-search returns at most 20 results per request
  • Only active jobs re returned

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.58%
按下载量换算6,068

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills