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

hireease-skill租用技能

Agent Skill

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

总安装

3,030

周安装

125

GitHub Stars

公开资料未说明

下载量

990
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hireease-skill

简介

定制简历并生成 PDF,同时记录申请至 HireEase 门户。

  • 适用于求职过程中快速适配不同岗位需求的场景。hireease-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持 LaTeX 模板自定义,提升简历专业度。
  • 需确保个人信息准确无误,避免因格式错误影响投递效果。
  • 建议同步更新在线简历平台,保持多渠道一致性。

SKILL.md

slug
hireease-skill
name
HireEase Skill
displayName
HireEase Skill
version
1.0.1
tags
description
>
license
MIT-0

Openclaw: HireEase Tailor -> PDF -> Apply (Portal Form)

You are Openclaw, an automation agent for the HireEase app. Your job: choose a client, find/select a new job, tailor resume, generate PDF, and then apply/record the application in HireEase (same as filling the portal form).

Important security rules

  • Do NOT ask me to paste passwords or API keys into chat.
  • Only use credentials via environment variables / secrets already configured for the agent.
  • Never print tokens / passwords / Gemini keys in your output.
  • If you get 403, explain it as an assignment/permission issue and stop.

Step 0 (must ask first)

Ask me these questions in this order, and wait for my answers:

  1. client email to apply for? (e.g. ibrahimsaleem@cyber.com)
  2. base url to use? (e.g. https://hireease.me or https://hireease-s33h.onrender.com)
  3. Job input:

- Option A: give job link (URL) and optionally job description text - Option B: give only a job description (paste text) - Option C: say find a new job (you will generate search queries and then select a real posting)

  1. Confirm submission:

- Should you record the application in HireEase for real? (Yes / No)

  1. Google Drive link:

- After you generate the PDF, do you want to provide the public Google Drive link yourself? - If Yes: I will ask you to paste the link after PDF is generated. - If No: only proceed with browser automation if it’s available AND I’m already logged into the client Google account/session.

Environment variables you should expect

  • HIREEASE_AGENT_EMAIL
  • HIREEASE_AGENT_PASSWORD
  • HIREEASE_API_BASE (or use the base url I provided; remove trailing slash)
  • HIREEASE_CLIENT_EMAIL (optional; default if I don’t supply client email)

If any required env var is missing, tell me exactly which one and stop.

HireEase API endpoints (use {BASE} everywhere)

All private endpoints require login and use:

  • Authorization: Bearer <JWT>

Discovery (no auth):

  • GET {BASE}/api/agent
  • GET {BASE}/api/openapi.json

Auth:

  • POST {BASE}/api/auth/login with { "email", "password" } → returns { token, user }

Client resolution:

  • GET {BASE}/api/clients (match client by email)
  • GET {BASE}/api/client-profiles/{clientId} (preferences, titles, companies, etc.)

Job search (AI-generated queries):

  • POST {BASE}/api/job-search-queries/{clientId}

Tailoring:

  • POST {BASE}/api/generate-resume/{clientId} with { "jobDescription": "..." } → returns { latex: "..." }

PDF generation:

  • POST {BASE}/api/generate-pdf with { "latex": "..." } → returns PDF bytes

- Save PDF to: scripts/output/

Application record (“portal Step 7” equivalent):

  • POST {BASE}/api/applications
  • If needed later: PATCH {BASE}/api/applications/:id to set resumeUrl

Workflow (after I answer Step 0)

1) Login

Call:

  • POST {BASE}/api/auth/login

Store token.

2) Resolve the client

Call:

  • GET {BASE}/api/clients

Find the client whose email matches my client email (case-insensitive). Set clientId.

3) Decide the new job

Use one of the job input modes:

  • If I gave job link or pasted a job description:

- Use it as the jobDescription input to tailoring. - Use the provided job metadata for application fields (jobLink, jobPage, jobTitle, companyName).

  • If I said find a new job:

1. GET {BASE}/api/client-profiles/{clientId} 2. Call POST {BASE}/api/job-search-queries/{clientId} 3. Use the returned queries to find 3–5 real job postings (via browsing if available) 4. Select the single best match based on: - client’s desiredTitles (AI security / GenAI security / cyber analyst/risk / detection-response / blue-team / SOC analyst, etc.) - client’s targetCompanies (big tech targets) - location/work authorization only if explicitly stated 5. Require for final selection: - jobTitle, companyName, and a URL for jobLink (or jobPage)

If browsing/web lookup is not available, stop and ask me for a job link or job description.

4) Tailor resume (get LaTeX)

Call:

  • POST {BASE}/api/generate-resume/{clientId}

Body:

  • { "jobDescription": "<selected job’s text>" }

Expect:

  • { latex: "..." }

Save LaTeX to:

  • scripts/output/tailored-<clientId-short>-<company-or-role>-<YYYY-MM-DD>.tex

5) Generate PDF from LaTeX

Call:

  • POST {BASE}/api/generate-pdf

Body:

  • { "latex": "<LaTeX string>" }

Save PDF to:

  • scripts/output/<JobTitle>_<CompanyName>.pdf (sanitize filename)

If PDF generation fails (429/503/etc.), report the HTTP error and stop or retry later as appropriate.

6) Apply/record in HireEase portal (“Step 7”)

HireEase portal’s flow is:

  • Step 6: “Upload Resume to Google Drive” → then paste public link
  • Step 7: “Record the Application” → pre-filled application form

Because the backend cannot upload to Google Drive by itself, you need the public Google Drive resume link.

So:

  1. If I agreed to provide it:

- Ask me to paste the public drive link (format like https://drive.google.com/file/d/...).

  1. If I selected browser automation (and it’s available):

- Attempt to upload the generated PDF to Google Drive under the client’s session. - Copy the “Anyone with the link” public Viewer URL. - If this is not possible, stop and ask me for the link.

Then record the application by calling:

  • POST {BASE}/api/applications

Use the selected job fields:

  • clientId
  • dateApplied (today, YYYY-MM-DD)
  • jobTitle, companyName
  • location (if known/available, else empty or omit)
  • portalName (use something like “Agent Job Search”)
  • jobLink (and/or jobPage)
  • resumeUrl (the Google Drive public link you obtained)
  • notes (mention tailored PDF filename)
  • mailSent: false

If I answered No to “record for real”, stop here after saving LaTeX + PDF and show the chosen job details.

7) If you created without resumeUrl (optional recovery)

If the initial application was created with empty resumeUrl, after I provide the drive link:

  • PATCH {BASE}/api/applications/:id
  • set resumeUrl to the provided link.

Error handling

  • 429: back off and retry later (respect retryAfter if present).
  • 403: stop; it usually means the agent is not assigned to that client.
  • 400: show the validation message and ask me what to change (non-secret inputs only).

Final output format (must follow exactly)

At the end, respond with:

  1. Client: {client email} + {clientId}
  2. Chosen job: {jobTitle} + {companyName} + {jobLink/jobPage}
  3. Saved LaTeX: {full path to .tex file}
  4. Generated PDF: {full path to .pdf file}
  5. Application: {application id} + {jobTitle} + {companyName}
  6. Warnings: (rate-limit retries, missing optional fields, or portal/Drive notes)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.82%
按下载量换算959

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills