# Send Job-Hunter to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "careerforge-cli-skill",
    "name": "Job-Hunter",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/alon-mini/careerforge-cli-skill",
    "canonicalUrl": "https://clawhub.ai/alon-mini/careerforge-cli-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/careerforge-cli-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=careerforge-cli-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/create_master_resume.sh",
      "scripts/setup_careerforge.sh",
      "references/cli_usage.md",
      "references/job_search_config.md",
      "references/master_resume_template.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "careerforge-cli-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T14:56:04.606Z",
      "expiresAt": "2026-05-11T14:56:04.606Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=careerforge-cli-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=careerforge-cli-skill",
        "contentDisposition": "attachment; filename=\"careerforge-cli-skill-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "careerforge-cli-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/careerforge-cli-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/careerforge-cli-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/careerforge-cli-skill",
    "agentUrl": "https://openagent3.xyz/skills/careerforge-cli-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/careerforge-cli-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/careerforge-cli-skill/agent.md"
  }
}
```
## Documentation

### CareerForge CV Generator Skill

This skill helps users set up and use CareerForge CLI for automated job search and CV generation.

### Overview

CareerForge is an AI-powered CV generator that uses Google's Gemini 2.5 Pro with a Writer+Judge pattern to create tailored, ATS-optimized CVs.

### Step 0: Download CareerForge CLI

Before using this skill, download the CLI wrapper from GitHub:

cd /root/.openclaw/workspace
git clone https://github.com/alon-mini/CareerForge-cli.git careerforge-cli
cd careerforge-cli
npm install

Repository: https://github.com/alon-mini/CareerForge-cli

### Step 1: Check/Create Master Resume

Check if user has a master resume at CV_Master/master_resume.md.

If no master resume exists:
Ask the user a series of questions to create one:

Basic Info:

Full name
Title/headline
Contact info (email, phone, LinkedIn, portfolio)



Professional Summary:

2-3 sentences describing their professional identity
Key differentiators
Career focus



Core Competencies:

Top 5-8 skills (technical and soft skills)



Professional Experience:

For each role: Company, title, dates, location
3-4 bullet points per role highlighting achievements
Ask for 2-4 most relevant roles



Education:

Degrees, institutions, dates, relevant coursework/thesis



Languages:

Languages and proficiency levels

Master Resume Format:
Save as markdown following this structure:

# [Name]

## Contact
- Email: 
- Phone: 
- LinkedIn: 
- Portfolio: 

## Summary
[2-3 sentences]

## Core Competencies
- Skill 1
- Skill 2
...

## Professional Experience

### [Company] | [Title]
*[Dates]*

- Bullet 1
- Bullet 2
...

## Education

### [Degree]
*Institution | Dates*

## Languages
- Language (Proficiency)

### Step 2: Configure Job Search Filters

Ask user for filtering preferences:

Location: (e.g., "Tel Aviv, Israel")
Job Title Keywords: (e.g., "AI, data analyst, product manager")
Experience Level: (default: 2-4 years)
Remote/In-person/Hybrid: (default: in-person only)
Exclude Keywords: (e.g., "senior, lead, sales")
Companies to Exclude: (reposting companies)

### Step 3: Configure Schedule

Ask user for cron schedule:

Hours: (default: 8-18 Israel time)
Days: (default: Sunday-Thursday)
Timezone: (default: Asia/Jerusalem)

### Step 4: Configure LLM Model

Ask user for API key:

Default: Google Gemini API key
Alternative: Allow user to specify different model

### Job Search Execution

The cron job runs hourly and:

Searches for jobs matching filters
Sends job listings to user's Telegram group (separate messages)
Each message includes: Title, Company, Location, URL, and instructions

### CV Generation

When user replies to a job message with "CV":

Extract job details from the message
Run CareerForge CLI to generate tailored CV
Send CV PDF back to user

### File Structure

workspace/
├── CV_Master/
│   └── master_resume.md          # User's master resume
├── careerforge-cli/              # CLI wrapper (from GitHub)
│   ├── generate_cv_from_json.js
│   ├── package.json
│   └── README.md
├── cvs/                          # Generated CVs output
├── job_search.py                 # Job search script
└── careerforge_config.json       # User's filter settings

### Setup

# Download CareerForge CLI from GitHub
git clone https://github.com/alon-mini/CareerForge-cli.git careerforge-cli

# Initialize CareerForge
cd careerforge-cli && npm install

# Create master resume
./scripts/create_master_resume.sh

### Daily Use

# Run job search manually
python3 job_search.py

# Generate CV for specific job
node careerforge-cli/generate_cv_from_json.js job.json

### References

Master Resume Template
Job Search Configuration
CareerForge CLI Usage
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: alon-mini
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T14:56:04.606Z
- Expires at: 2026-05-11T14:56:04.606Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/careerforge-cli-skill)
- [Send to Agent page](https://openagent3.xyz/skills/careerforge-cli-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/careerforge-cli-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/careerforge-cli-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/careerforge-cli-skill)