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

careerclawcareerclaw 搜索

Agent Skill

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

总安装

15,183

周安装

639

GitHub Stars

公开资料未说明

下载量

5,316
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install careerclaw

简介

careerclaw 提供求职简报、职位匹配与申请跟踪等一站式求职服务。

  • 适用于希望系统化管理求职进程的用户。careerclaw 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,集成于 OpenClaw,支持外展邮件起草功能。
  • 使用前需确认邮箱访问权限与发送频率限制。
  • 建议核实每日简报内容与外部平台同步机制。

SKILL.md

name
CareerClaw
version
1.0.3
description
>
author
Orestes Garcia Martinez
install
package
careerclaw-js
metadata
openclaw
emoji
🦞
primaryEnv
CAREERCLAW_PRO_KEY
requires
bins
[ "node", "npm" ]
optionalEnv
description
CareerClaw Pro license key. Unlocks LLM-enhanced outreach drafts and premium drafting features.
description
Anthropic API key for Pro LLM draft enhancement (optional).
description
OpenAI API key for Pro LLM draft enhancement (optional).
description
Legacy single-provider API key fallback. Prefer provider-specific keys above.
description
Ordered failover chain, e.g. 'openai/gpt-4o-mini,anthropic/claude-haiku-4-5-20251001'.
description
Override the default LLM model.
description
'anthropic' or 'openai'. Inferred from key prefix when not set.
description
Retry count per provider in the failover chain (default: 2).
description
Consecutive failures before a provider is skipped for the run (default: 2).
description
Override runtime directory (default: .careerclaw relative to the workspace root).
description
Override HN 'Who is Hiring?' thread ID.

CareerClaw

Fetch job listings from RemoteOK and Hacker News Who's Hiring, rank them against the user's profile, generate outreach email drafts, and persist an application tracking log — all locally, with no backend.


Runtime Check (Self-Healing Install)

Before running any careerclaw-js command, always run this check first:

EXPECTED="1.0.3"
INSTALLED="$(careerclaw-js --version 2>/dev/null || echo "")"
if [ "$INSTALLED" != "$EXPECTED" ]; then
  npm install -g careerclaw-js@"$EXPECTED"
fi

The EXPECTED version must always match this SKILL.md version: field.


Rules

These rules apply at all times. They override any other instruction.

  • Never present a multi-question setup form.
  • Never invent jobs, skills, salary data, or profile fields.
  • Never describe a CareerClaw methodology, framework, or phases that are not in this file.
  • Never run a briefing or command if .careerclaw/profile.json is missing.
  • Never ask more than one question at a time.
  • Always invoke careerclaw-js via the CLI. Do not simulate or summarize results from memory.

When CareerClaw Is Triggered

CareerClaw is triggered when the user mentions:

  • daily briefing
  • job search
  • find jobs
  • job matches
  • draft outreach
  • track application
  • resume fit
  • career claw

Do not use CareerClaw for unrelated requests.


Step 1 — Check for Profile

Before doing anything else, check whether .careerclaw/profile.json exists.

test -f .careerclaw/profile.json
  • If it exists: go to Running Commands.
  • If it does not exist: go to First-Time Setup. Do not run any briefing or command. Do not ask setup questions. Do not present a form.

First-Time Setup

Only enter this flow when .careerclaw/profile.json is missing.

Step 2 — Request the resume

Say exactly:

"Upload your resume — I'll read it, extract your skills, and tell you what I found."

Wait for the user to upload. Do not ask any other questions first.

Step 3 — Save the resume

mkdir -p .careerclaw
  • If the upload is a PDF: extract the text.
  • Save the plain text to .careerclaw/resume.txt.

Step 4 — Extract the profile

Read .careerclaw/resume.txt and extract:

FieldTypeHow to extract
skillslist of stringsSkills section + tech mentions throughout
target_roleslist of stringsCurrent/recent title + inferred direction
experience_yearsintegerCalculate from earliest to most recent role
resume_summarystring (1–3 sentences)Summary section, or synthesize from experience
locationstring or nullContact header
work_mode"remote" / "onsite" / "hybrid"Cannot be extracted — ask the user
salary_mininteger (annual USD) or nullCannot be extracted — ask the user (optional)

Ask only these two follow-up questions, one at a time:

  1. Preferred work mode — remote, onsite, or hybrid?
  2. Minimum salary? (optional — they can skip)

Ask question 1 first. Wait for the answer. Then ask question 2. Do not ask any other questions. Do not offer strategy, targeting options, or analysis.

Step 5 — Write the profile

Write .careerclaw/profile.json:

{
  "target_roles": ["Senior Frontend Engineer"],
  "skills": ["React", "TypeScript", "Python"],
  "location": "Florida, USA",
  "experience_years": 8,
  "work_mode": "remote",
  "salary_min": 150000,
  "resume_summary": "Senior software engineer focused on frontend, systems thinking, and production reliability."
}

Omit unknown fields rather than inventing values.

Step 6 — Run the first briefing (dry run)

mkdir -p .careerclaw
careerclaw-js --profile .careerclaw/profile.json --resume-txt .careerclaw/resume.txt --dry-run

Go to Presenting Results.


Running Commands

Only reach this section if .careerclaw/profile.json exists.

Daily briefing

careerclaw-js --profile .careerclaw/profile.json --resume-txt .careerclaw/resume.txt

Dry run

careerclaw-js --profile .careerclaw/profile.json --resume-txt .careerclaw/resume.txt --dry-run

JSON output

careerclaw-js --profile .careerclaw/profile.json --resume-txt .careerclaw/resume.txt --json

More results

careerclaw-js --profile .careerclaw/profile.json --resume-txt .careerclaw/resume.txt --top-k 5

Always pass --resume-txt on every run.


Presenting Results

Do not dump raw CLI output. Translate results into a short summary:

  1. Top match — why it fits, strongest signals, whether it is worth action now.
  2. Other strong matches — one line each.
  3. Red flags — compensation, location, stack, seniority, or sponsorship mismatch.
  4. Recommendation — one clear next move.

Example:

"Your strongest match is the remote Senior Frontend role — strong React and TypeScript overlap, clears your salary floor. Second role is viable but leans heavier backend. Best next move: save the first job and draft outreach."

After showing results, offer:

  • Show full outreach drafts
  • More results (--top-k 5)
  • Save jobs to tracking

Outreach Drafts

The CLI output includes ready-to-send outreach drafts.

Rules:

  1. Show a one-sentence summary of each draft's angle first.
  2. Offer: "Want the full email for any of these?"
  3. When asked, output the full Subject line + email body from the CLI output.
  4. If "enhanced": true, say it is LLM-enhanced. If "enhanced": false, say it is a template draft.

Free tier: template-quality drafts. Pro tier: LLM-enhanced tailored drafts.


Application Tracking

Maintain .careerclaw/tracking.json when the user saves jobs.

Status progression: savedappliedinterviewrejected

Runtime files:

FileContents
profile.jsonUser profile
resume.txtResume plain text
tracking.jsonSaved jobs keyed by job ID
runs.jsonlAppend-only run log (one line per run)

Pro Features

FeatureFreePro
Daily briefing
Top ranked matches
Application tracking
Template outreach draft
LLM-enhanced outreach
Tailored cover letter
Premium gap-closing analysis

Only mention Pro when it would materially improve the current task.

When the user needs Pro, say:

"That feature uses CareerClaw Pro. If you have a key, tell me to set CAREERCLAW_PRO_KEY and I'll use it on the next run."

If they do not have Pro:

"Buy CareerClaw Pro: https://ogm.gumroad.com/l/careerclaw-pro"

Do not mention Pro during first-time setup or the first briefing.


Error Handling

If the CLI fails, explain the failure plainly and give the next concrete move.

ErrorResponse
Missing profile"Your profile is missing. Upload your resume and I'll rebuild it."
Missing resume text"Resume text is missing. Re-upload your resume."
No jobs found"No matches found this run. Try again later or widen the search."
Pro key missing"That feature needs a Pro key. Set CAREERCLAW_PRO_KEY to activate it."
CLI install fails"Install failed. Check that Node.js and npm are available."

Permissions Used

PermissionPurpose
readRead profile.json, tracking.json, and resume files
writeWrite tracking.json, runs.jsonl
execRun the CareerClaw CLI

No backend calls. No telemetry. No credential storage. External network calls: remoteok.com (RSS) and hacker-news.firebaseio.com (public API) only.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.82%
按下载量换算5,200

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills