Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

job-hunter-bot求职机器人

Agent Skill

job-hunter-bot 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,658

周安装

113

GitHub Stars

公开资料未说明

下载量

931
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install job-hunter-bot

简介

求职机器人用于自动化抓取 LinkedIn 职位并评分,支持通过通知发送匹配结果。

  • 适合需要批量获取职位信息并按技能匹配度筛选的场景。
  • 可部署为 Telegram 机器人,实现网页自动化与前端流程验证。
  • 使用前需确认浏览器自动化权限及目标网站的使用条款。
  • 建议结合原始文档了解 API 配置和通知机制的具体实现。

SKILL.md

name
job-hunter
description
Build and deploy an automated job hunting system with Telegram bot. Scrapes LinkedIn jobs, scores them by match percentage, sends notifications with apply buttons, and generates tailored CVs. Use when: setting up job search automation, building a job-matching bot, creating a Telegram-based job alert system, helping someone find a job automatically. Triggers: 'job search bot', 'automated job hunting', 'find jobs for', 'job alert system', 'build job bot'.

Job Hunter - Automated Job Search System

Build a complete job hunting system: LinkedIn scraper, match scorer, and Telegram bot with inline buttons.

What This System Does

  1. Scrapes real jobs from LinkedIn (public guest API, no login needed)
  2. Scores each job 0-100% based on candidate profile (title, skills, experience, location)
  3. Sends matching jobs to Telegram with action buttons (details, apply, remove)
  4. Provides a clean foundation you can extend with CV generation later if needed

Setup Flow

1. Gather Candidate Profile

Ask the user for:

  • Target roles (e.g. data analyst, BI developer, frontend developer)
  • Core skills (e.g. SQL, Python, React, Power BI)
  • Bonus skills (nice-to-have)
  • Max years of experience they qualify for
  • Preferred location and metro area cities
  • Contact info (name, email, phone, LinkedIn URL)
  • Work experience (companies, roles, dates, bullet points)
  • Education (degree, institution, year)

2. Create Telegram Bot

Guide the user:

  1. Open Telegram, search for @BotFather
  2. Send /newbot, choose a name and username
  3. Copy the bot token
  4. Get their Telegram user ID (send a message to @userinfobot)
  5. Optionally add more authorized users (e.g. the job seeker)

3. Deploy the System

Create a project directory and deploy these scripts (from scripts/):

job-hunter/
├── config.json          # Bot token, user IDs, candidate profile
├── jobs.db              # SQLite database (auto-created)
├── scorer.py            # Match scoring engine
├── linkedin_scraper.py  # LinkedIn job scraper
├── bot.py               # Telegram bot with inline buttons
└── notify_new_jobs.py   # Send new matches to Telegram

config.json Structure

{
  "telegram_bot_token": "TOKEN_FROM_BOTFATHER",
  "telegram_user_id": 123456789,
  "authorized_users": [123456789],
  "notify_users": [123456789],
  "candidate": {
    "name": "Full Name",
    "email": "email@example.com",
    "phone": "054-1234567",
    "linkedin": "linkedin.com/in/username",
    "location": "Tel Aviv, Israel",
    "target_titles": ["data analyst", "bi developer"],
    "good_titles": ["business analyst"],
    "core_skills": ["sql", "python", "power bi"],
    "bonus_skills": ["etl", "dax", "pandas"],
    "max_years": 2,
    "preferred_locations": ["tel aviv", "herzliya", "ramat gan"],
    "metro_locations": ["petah tikva", "rishon lezion"]
  }
}

4. Customize Scripts

After copying scripts from scripts/, customize:

  • scorer.py - Update PROFILE dict with candidate's profile from config.json
  • linkedin_scraper.py - Update DEFAULT_QUERIES with relevant search terms
  • bot.py - Should work with just config.json changes
  • notify_new_jobs.py - Verify notification flow and recipients

5. Install Dependencies

Install Python dependencies required by the included scripts. At minimum, verify the libraries imported by the scraper and bot are available in your environment.

6. Initialize Database

The database auto-creates on first run. Schema:

CREATE TABLE jobs (
    job_id TEXT PRIMARY KEY,
    title TEXT, company TEXT, location TEXT,
    url TEXT, career_url TEXT,
    description TEXT, requirements TEXT,
    required_years INTEGER,
    published_date TEXT, found_date TEXT,
    status TEXT DEFAULT 'new'
);

7. Start the Bot

nohup python3 -u bot.py > bot.log 2>&1 &

8. Set Up Daily Search (Cron)

# Run daily job search + notify at 9 AM
0 9 * * * cd /path/to/job-hunter && python3 linkedin_scraper.py && python3 notify_new_jobs.py

Or use OpenClaw cron:

openclaw cron add --name daily-job-search --schedule "0 9 * * *" --prompt "Run job search and notify"

Bot Commands

CommandWhat it does
/topShow top jobs (score >= 60%)
/jobsList all jobs with scores
/searchTrigger new LinkedIn search
/statsShow statistics
/appliedShow applied jobs
/helpShow commands

Scoring Weights

FactorPointsLogic
Title match0-30Perfect match = 30, partial = 15
Skills match0-30Core skills = 5 each (max 20), bonus = 2 each (max 10)
Experience0-400yr = 40, 1yr = 30, 2yr = 10, 3+ = -20
Location0-25Preferred = 25, metro = 15, country = 5
Junior keywords0-10Entry-level indicators

Thresholds: 🟢 >= 70% apply | 🟡 >= 50% review | 🔴 < 50% skip

Troubleshooting

  • Bot not responding: Check only ONE instance is running (ps aux | grep bot.py)
  • 409 Conflict: Multiple bot instances. Kill all, restart one.
  • No jobs found: Check search queries match real LinkedIn job titles
  • Scoring too high/low: Adjust weights in scorer.py

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.45%
按下载量换算842

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills