ai-job-hunter-pro

AI-powered job search assistant with RAG-based resume-JD matching, automated application pipeline, and status tracking. Use when the user wants to search for jobs matching their resume, auto-apply to positions, track application status, generate tailored cover letters, or analyze their job search funnel. Trigger phrases include "find jobs for me", "match my resume to jobs", "auto-apply", "track my applications", "job search report", "optimize my resume for this job".

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ai-job-hunter-pro" with this command: npx skills add meteoryf/ai-job-hunter-pro

AI Job Hunter Pro

Intelligent job search assistant with RAG-based semantic matching, automated applications, and data-driven tracking.

Setup (first-time only)

Run the setup script to install dependencies and initialize the vector database:

cd {SKILL_DIR}
pip install -r scripts/requirements.txt
python3 scripts/setup_rag.py --init

Then create your profile:

cp assets/profile_template.json ~/job_profile.json
# Edit ~/job_profile.json with your info

Import your resume (PDF or DOCX):

python3 scripts/rag_engine.py --import-resume ~/path/to/resume.pdf

Core Workflows

Workflow 1: Smart Job Search (RAG Matching)

When user says "find jobs for me" or "match my resume":

  1. Load user profile from ~/job_profile.json
  2. Run RAG matching engine:
    python3 {SKILL_DIR}/scripts/rag_engine.py \
      --mode search \
      --platforms linkedin,boss \
      --min-score 0.75 \
      --max-results 20
    
  3. Present results sorted by match score
  4. For each job, show: title, company, match score, top matching skills, missing skills
  5. Ask user which jobs to apply to, or auto-apply if configured

Workflow 2: Auto-Apply Pipeline

When user says "apply to these jobs" or "auto-apply":

  1. For each selected job:
    python3 {SKILL_DIR}/scripts/apply_pipeline.py \
      --job-id <id> \
      --mode dry-run \
      --generate-cover-letter \
      --optimize-ats
    
  2. In dry-run mode: show generated cover letter and ATS-optimized resume highlights for review
  3. After user confirms, switch to --mode submit
  4. Log result to tracker database

Workflow 3: Application Tracking

When user says "track my applications" or "job search report":

python3 {SKILL_DIR}/scripts/tracker.py --report daily

Status flow: Discovered → Applied → Screening → Interview → Offer / Rejected

Workflow 4: Feedback Loop

When user says "I like this job" or "not interested":

python3 {SKILL_DIR}/scripts/rag_engine.py \
  --mode feedback \
  --job-id <id> \
  --signal like|dislike

This adjusts the RAG query vectors to improve future recommendations.

Rules

  • Always start in dry-run mode. Never submit applications without explicit user confirmation.
  • Respect platform rate limits: max 20 applications per day across all platforms.
  • Never misrepresent the user's qualifications in cover letters or applications.
  • Store all data locally. Never send resume data to external services other than the job platforms themselves.
  • When a platform returns an error or blocks access, report it clearly and suggest manual fallback.
  • Always show the match score and reasoning before applying.

Configuration

User config lives at ~/job_profile.json. Skill config in OpenClaw:

{
  "skills": {
    "ai-job-hunter-pro": {
      "enabled": true,
      "profile_path": "~/job_profile.json",
      "default_platforms": ["linkedin", "boss"],
      "max_daily_applications": 20,
      "min_match_score": 0.75,
      "require_confirmation": true,
      "dry_run": true
    }
  }
}

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

通义晓蜜 - 智能外呼

触发阿里云晓蜜外呼机器人任务,自动批量拨打电话。适用于批量外呼、客户回访、满意度调查、简历筛查约面试等场景。可从前置工具或节点获取外呼名单。

Registry SourceRecently Updated
General

Letterboxd Watchlist

Scrape a public Letterboxd user's watchlist into a CSV/JSONL list of titles and film URLs without logging in. Use when a user asks to export, scrape, or mirror a Letterboxd watchlist, or to build watch-next queues.

Registry SourceRecently Updated
General

Seedance Video Generation

Generate AI videos using ByteDance Seedance. Use when the user wants to: (1) generate videos from text prompts, (2) generate videos from images (first frame, first+last frame, reference images), or (3) query/manage video generation tasks. Supports Seedance 1.5 Pro (with audio), 1.0 Pro, 1.0 Pro Fast, and 1.0 Lite models.

Registry SourceRecently Updated
4.2K17jackycser
General

Universal Skills Manager

The master coordinator for AI skills. Discovers skills from multiple sources (SkillsMP.com, SkillHub, and ClawHub), manages installation, and synchronization...

Registry SourceRecently Updated