💼 Lever Automation
採用管理システム(ATS)のLeverにおける、
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate recruiting workflows in Lever ATS -- manage opportunities, job postings, requisitions, pipeline stages, and candidate tags through the Composio Lever integration.
🇯🇵 日本人クリエイター向け解説
採用管理システム(ATS)のLeverにおける、
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Lever Automation で、私のビジネスを分析して改善案を3つ提案して
- › Lever Automation を使って、来週の会議用の資料を作って
- › Lever Automation で、現状の課題を整理してアクションプランに落として
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Lever Automation
Automate your recruiting operations in Lever ATS directly from Claude Code. Manage job postings, track candidate pipelines, update requisitions, and query opportunities without leaving your terminal.
Toolkit docs: composio.dev/toolkits/lever
Setup
- Add the Composio MCP server to your configuration:
https://rube.app/mcp - Connect your Lever account when prompted by running any Lever command. The agent will provide an OAuth link to authenticate.
- Ensure your Lever API key has sufficient scopes for the operations you need (read/write access to postings, opportunities, requisitions).
Core Workflows
1. List and Filter Job Postings
Retrieve all job postings with optional filtering by state, team, department, location, or commitment type.
Tool: LEVER_LIST_POSTINGS
Key parameters:
state-- filter bypublished,internal,closed,draft,pending,rejectedteam,department,location,commitment-- narrow results by organizational attributeslimit(1-100) andoffset-- paginate through large posting setstag-- filter by posting tag
Example prompt: "List all published engineering job postings in Lever"
2. Browse Candidate Opportunities
List all opportunities in the hiring pipeline with rich filtering for pipeline analysis and candidate tracking.
Tool: LEVER_LIST_OPPORTUNITIES
Key parameters:
posting_id,stage_id,tag-- filter by posting, pipeline stage, or tagemail,contact_id-- find opportunities for a specific candidatearchived-- filter by archived status (true/false)created_at_start,created_at_end-- date range filtering (ISO 8601)expand-- expandapplications,contact,owner,stage,stageChanges,sources,sourcedByinto full objects
Example prompt: "Show me all active opportunities for the Senior Engineer posting, expanded with contact details"
3. Get Opportunity Details
Fetch comprehensive details about a single candidate opportunity including contact info, stage progression, sources, and applications.
Tool: LEVER_GET_OPPORTUNITY
Key parameters:
opportunity(required) -- the unique opportunity UIDexpand-- comma-separated fields to expand:contact,stage,owner
Example prompt: "Get full details for opportunity 31c9716c-d4e3-47e8-a6a1-54078a1151d6 with contact and stage expanded"
4. Manage Requisitions
Create, list, update, and delete requisitions to track headcount and hiring needs.
Tools: LEVER_LIST_REQUISITIONS, LEVER_GET_REQUISITION, LEVER_UPDATE_REQUISITION, LEVER_DELETE_REQUISITION
Update requires these fields:
requisition(required) -- UUID of the requisitionrequisitionCode(required) -- unique code likeREQ-001name(required) -- requisition titleheadcountTotal(required) -- number of positions (minimum 1)status--openorclosed- Optional:
hiringManager,owner,department,team,location,compensationBand
Example prompt: "Update requisition REQ-001 to increase headcount to 3 and change status to open"
5. View Pipeline Stages
Retrieve all hiring pipeline stages configured in your Lever account.
Tool: LEVER_LIST_STAGES
Key parameters:
limit(1-100) -- max items per pageoffset-- pagination token from previous response
Example prompt: "List all pipeline stages in our Lever account"
6. Manage Tags
List all tags used to categorize candidates, opportunities, and postings.
Tool: LEVER_LIST_TAGS
Key parameters:
limit-- max items per pageoffset-- pagination token
Example prompt: "Show all candidate tags in Lever"
Known Pitfalls
- Pagination required for large datasets:
LEVER_LIST_OPPORTUNITIESandLEVER_LIST_POSTINGSdefault to 100 results max per page. Always check for anoffsettoken in the response and iterate to get complete results. - Expand parameter format: The
expandfield onLEVER_LIST_OPPORTUNITIESaccepts an array of strings, while onLEVER_GET_OPPORTUNITYandLEVER_GET_REQUISITIONit accepts a comma-separated string. Follow the exact schema for each tool. - Requisition updates are full replacements:
LEVER_UPDATE_REQUISITIONrequires all mandatory fields (requisitionCode,name,headcountTotal) even if you only want to change one field. Always fetch the current requisition first withLEVER_GET_REQUISITION. - Timestamps: Opportunity date filters use ISO 8601 format, while
LEVER_LIST_POSTINGSuses Unix timestamps in milliseconds forupdated_at_start. - Connection scopes: Write operations (update/delete requisitions) will fail if your API token lacks the necessary permissions, even if reads succeed.
Quick Reference
| Tool Slug | Description |
|---|---|
LEVER_LIST_POSTINGS |
List all job postings with filtering by state, team, department |
LEVER_LIST_OPPORTUNITIES |
List candidate opportunities with pipeline filtering |
LEVER_GET_OPPORTUNITY |
Get detailed info for a single opportunity |
LEVER_GET_REQUISITION |
Retrieve a single requisition by ID |
LEVER_LIST_REQUISITIONS |
List all requisitions with status/code filtering |
LEVER_UPDATE_REQUISITION |
Update an existing requisition (full replacement) |
LEVER_DELETE_REQUISITION |
Delete/archive a requisition |
LEVER_LIST_STAGES |
List all pipeline stages |
LEVER_LIST_TAGS |
List all tags for categorization |
Powered by Composio