jpskill.com
💼 ビジネス コミュニティ

liepin-jobs

転職サイトLiepin(猎聘)で求人検索や応募、履歴書の閲覧・編集などができ、中国語のキーワードでも仕事を探せる、キャリアアップを目指すビジネスパーソンに役立つSkill。

📜 元の英語説明(参考)

Search jobs on Liepin (猎聘), apply to positions, view and edit resumes. Zero-dependency Python CLI wrapping Liepin's official MCP Server. Trigger words: jobs, liepin, resume, 找工作, 搜职位, 投简历, 猎聘, 求职, 招聘, 简历.

🇯🇵 日本人クリエイター向け解説

一言でいうと

転職サイトLiepin(猎聘)で求人検索や応募、履歴書の閲覧・編集などができ、中国語のキーワードでも仕事を探せる、キャリアアップを目指すビジネスパーソンに役立つSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o liepin-jobs.zip https://jpskill.com/download/15069.zip && unzip -o liepin-jobs.zip && rm liepin-jobs.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15069.zip -OutFile "$d\liepin-jobs.zip"; Expand-Archive "$d\liepin-jobs.zip" -DestinationPath $d -Force; ri "$d\liepin-jobs.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して liepin-jobs.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → liepin-jobs フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Liepin Jobs (猎聘求职工具)

概要

中国の主要なプロフェッショナル採用プラットフォームの1つであるLiepin(猎聘)で求人情報を検索します。AIコーディングエージェント内から、履歴書の表示と編集、プロファイルに合った求人のマッチング、応募が可能です。Liepinの公式MCPサーバー上に構築されており、外部依存関係はありません(Pythonの組み込みurllibのみを使用)。

手順

セットアップ

CLIスクリプトliepin_mcp.pyは、このSKILL.mdとともに含まれています。スキルディレクトリに存在しない場合は、以下のように取得してください。

curl -o "<skill_dir>/liepin_mcp.py" "https://raw.githubusercontent.com/TerminalSkills/skills/main/skills/liepin-jobs/liepin_mcp.py"

コマンドを使用する前に、Liepinから2つのトークンを取得する必要があります。

  1. https://www.liepin.com/mcp/server にアクセスしてログインします
  2. Gateway Token(形式:mcp_gateway_token_xxxx)をコピーします
  3. User Token(形式:liepin_user_token_xxxx)をコピーします
  4. セットアップを実行します。
python3 "<skill_dir>/liepin_mcp.py" setup

または、環境変数を設定します。

export LIEPIN_GATEWAY_TOKEN="mcp_gateway_token_xxxx"
export LIEPIN_USER_TOKEN="liepin_user_token_xxxx"

トークンは90日後に期限切れになります。

コマンド

SCRIPT="<skill_dir>/liepin_mcp.py"

# 求人検索
python3 "$SCRIPT" search-job --jobName "AI产品经理" --address "上海"
python3 "$SCRIPT" search-job --jobName "前端开发" --address "北京" --salary "30-50k"

# 求人に応募 (検索結果から jobId と jobKind が必要)
python3 "$SCRIPT" apply-job --jobId "JOB_ID" --jobKind "JOB_KIND"

# 履歴書を表示
python3 "$SCRIPT" my-resume

# 履歴書のセクションを更新
python3 "$SCRIPT" update-resume --module basic --data '{"name": "张三"}'
python3 "$SCRIPT" update-resume --module experience --data '{"company": "xxx", "title": "PM"}'
python3 "$SCRIPT" update-resume --module expectations --data '{"salary": "30-50k", "city": "上海"}'
python3 "$SCRIPT" update-resume --module self-assessment --data '{"content": "5年产品经验..."}'

# 利用可能なツールをすべてリスト表示
python3 "$SCRIPT" list-tools

生のJSON出力を得るには、任意のコマンドに--jsonを追加します。

例1:上海のAI求人を検索する

入力:

Help me find AI product manager positions in Shanghai with 30-50k salary

エージェントの実行:

python3 "<skill_dir>/liepin_mcp.py" search-job --jobName "AI产品经理" --address "上海" --salary "30-50k" --json

出力:

Found 15 matching positions:
| Company       | Title          | Salary  | Experience |
|---------------|----------------|---------|------------|
| ByteDance     | AI PM Lead     | 35-50k  | 3-5 years  |
| Alibaba       | AI Product Mgr | 30-45k  | 3-5 years  |
| ...           | ...            | ...     | ...        |

例2:履歴書を表示して改善する

入力:

Check my Liepin resume and suggest improvements

エージェントの実行:

python3 "<skill_dir>/liepin_mcp.py" my-resume --json

次に、完全性を分析し、不足しているセクションの編集を提案します。

ガイドライン

  • 応募前に必ず確認するapply-jobコマンドは元に戻せません。求人の詳細を表示し、最初にユーザーの明示的な確認を得てください。
  • レート制限:すべての操作は、1分あたり60リクエストの制限を共有します。バッチ呼び出しは避けてください。
  • トークンのセキュリティ:ログや会話で完全なトークン値を公開しないでください。
  • トークンの有効期限:認証エラーが発生した場合は、https://www.liepin.com/mcp/server でトークンを更新するようにユーザーを誘導してください。
  • 履歴書モジュールbasicexperienceexpectationsself-assessment
  • 検索パラメータ--jobName--address--salary--education--experience--companyType--companyName
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Liepin Jobs (猎聘求职工具)

Overview

Search jobs on Liepin (猎聘), one of China's major professional recruitment platforms. View and edit your resume, match jobs to your profile, and apply — all from within your AI coding agent. Built on Liepin's official MCP Server with zero external dependencies (uses only Python's built-in urllib).

Instructions

Setup

The CLI script liepin_mcp.py is included alongside this SKILL.md. If it is not present in your skill directory, fetch it:

curl -o "<skill_dir>/liepin_mcp.py" "https://raw.githubusercontent.com/TerminalSkills/skills/main/skills/liepin-jobs/liepin_mcp.py"

Before using any command, you must obtain two tokens from Liepin:

  1. Visit https://www.liepin.com/mcp/server and log in
  2. Copy the Gateway Token (format: mcp_gateway_token_xxxx)
  3. Copy the User Token (format: liepin_user_token_xxxx)
  4. Run setup:
python3 "<skill_dir>/liepin_mcp.py" setup

Or set environment variables:

export LIEPIN_GATEWAY_TOKEN="mcp_gateway_token_xxxx"
export LIEPIN_USER_TOKEN="liepin_user_token_xxxx"

Tokens expire after 90 days.

Commands

SCRIPT="<skill_dir>/liepin_mcp.py"

# Search jobs
python3 "$SCRIPT" search-job --jobName "AI产品经理" --address "上海"
python3 "$SCRIPT" search-job --jobName "前端开发" --address "北京" --salary "30-50k"

# Apply to a job (requires jobId and jobKind from search results)
python3 "$SCRIPT" apply-job --jobId "JOB_ID" --jobKind "JOB_KIND"

# View resume
python3 "$SCRIPT" my-resume

# Update resume sections
python3 "$SCRIPT" update-resume --module basic --data '{"name": "张三"}'
python3 "$SCRIPT" update-resume --module experience --data '{"company": "xxx", "title": "PM"}'
python3 "$SCRIPT" update-resume --module expectations --data '{"salary": "30-50k", "city": "上海"}'
python3 "$SCRIPT" update-resume --module self-assessment --data '{"content": "5年产品经验..."}'

# List all available tools
python3 "$SCRIPT" list-tools

Add --json to any command for raw JSON output.

Examples

Example 1: Search for AI jobs in Shanghai

Input:

Help me find AI product manager positions in Shanghai with 30-50k salary

Agent runs:

python3 "<skill_dir>/liepin_mcp.py" search-job --jobName "AI产品经理" --address "上海" --salary "30-50k" --json

Output:

Found 15 matching positions:
| Company       | Title          | Salary  | Experience |
|---------------|----------------|---------|------------|
| ByteDance     | AI PM Lead     | 35-50k  | 3-5 years  |
| Alibaba       | AI Product Mgr | 30-45k  | 3-5 years  |
| ...           | ...            | ...     | ...        |

Example 2: View and improve resume

Input:

Check my Liepin resume and suggest improvements

Agent runs:

python3 "<skill_dir>/liepin_mcp.py" my-resume --json

Then analyzes completeness and suggests edits for missing sections.

Guidelines

  • Always confirm before applying: The apply-job command is irreversible. Show job details and get explicit user confirmation first.
  • Rate limit: All operations share a 60 requests/minute limit. Avoid batch calls.
  • Token security: Never expose full token values in logs or conversation.
  • Token expiry: If authentication errors occur, guide the user to refresh tokens at https://www.liepin.com/mcp/server
  • Resume modules: basic, experience, expectations, self-assessment
  • Search parameters: --jobName, --address, --salary, --education, --experience, --companyType, --companyName