Install
openclaw skills install ai-job-hunter-proAI-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".
openclaw skills install ai-job-hunter-proIntelligent job search assistant with RAG-based semantic matching, automated applications, and data-driven tracking.
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
When user says "find jobs for me" or "match my resume":
~/job_profile.jsonpython3 {SKILL_DIR}/scripts/rag_engine.py \
--mode search \
--platforms linkedin,boss \
--min-score 0.75 \
--max-results 20
When user says "apply to these jobs" or "auto-apply":
python3 {SKILL_DIR}/scripts/apply_pipeline.py \
--job-id <id> \
--mode dry-run \
--generate-cover-letter \
--optimize-ats
--mode submitWhen 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
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.
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
}
}
}