← 返回
效率工具 Key 中文

Placed Career Tools

This skill should be used when the user wants to "match resume to job", "generate cover letter", "optimize resume for job", "get interview questions for comp...
此技能用于匹配简历与职位、生成求职信、优化简历以及获取面试问题等。
ajitsingh25
效率工具 clawhub v1.1.0 2 版本 100000 Key: 需要
★ 0
Stars
📥 595
下载
💾 19
安装
2
版本
#ai#ats#career#exidian#jobs#latest#placed

概述

Placed Career Tools

Comprehensive AI career toolkit: job-resume matching, cover letters, LinkedIn optimization, salary insights, negotiation scripts, and company research — all via the Placed API. No MCP server required.

API Key

Load the key from ~/.config/placed/credentials, falling back to the environment:

if [ -z "$PLACED_API_KEY" ] && [ -f "$HOME/.config/placed/credentials" ]; then
  source "$HOME/.config/placed/credentials"
fi

If PLACED_API_KEY is still not set, ask the user:

> "Please provide your Placed API key (get it at https://placed.exidian.tech/settings/api)"

Then save it for future sessions:

mkdir -p "$HOME/.config/placed"
echo "export PLACED_API_KEY=<key_provided_by_user>" > "$HOME/.config/placed/credentials"
export PLACED_API_KEY=<key_provided_by_user>

How to Call the API

placed_call() {
  local tool=$1
  local args=${2:-'{}'}
  curl -s -X POST https://placed.exidian.tech/api/mcp \
    -H "Authorization: Bearer $PLACED_API_KEY" \
    -H "Content-Type: application/json" \
    -d "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"$tool\",\"arguments\":$args}}" \
    | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['result']['content'][0]['text'])"
}

Available Tools

Resume-Job Matching

ToolDescription
---------------------------------------------------------------------------
match_jobScore how well a resume matches a job description
analyze_resume_gapsFind missing keywords and skills for a target role
optimize_resume_for_jobTailor resume content to a specific job

AI Writing Tools

ToolDescription
----------------------------------------------------------------------------
generate_cover_letterGenerate a tailored cover letter
generate_linkedin_profileAI-optimized LinkedIn headline and About section
get_interview_questionsGet likely interview questions for a company/role

Salary & Negotiation

ToolDescription
----------------------------------------------------------------------------
get_company_salary_dataMarket salary data by role and company
generate_salary_negotiation_scriptPersonalized salary negotiation script
analyze_offerAnalyze a job offer against market rates

Company Research

ToolDescription
-----------------------------------------------------------------
research_companyCompany overview, culture, news, interview tips

Usage Examples

Match resume to job:

placed_call "match_job" '{
  "resume_id": "res_abc123",
  "job_description": "Senior Software Engineer at Stripe — distributed systems, Go, Kubernetes..."
}'
# Returns: match score, matched keywords, missing keywords, recommendations

Analyze resume gaps:

placed_call "analyze_resume_gaps" '{
  "resume_id": "res_abc123",
  "job_description": "..."
}'

Generate cover letter:

placed_call "generate_cover_letter" '{
  "resume_id": "res_abc123",
  "company_name": "Airbnb",
  "job_title": "Staff Engineer",
  "job_description": "...",
  "tone": "professional"
}'

Get salary data:

placed_call "get_company_salary_data" '{
  "company_name": "Google",
  "position": "Senior Software Engineer",
  "location": "San Francisco, CA"
}'

Generate negotiation script:

placed_call "generate_salary_negotiation_script" '{
  "current_offer": 200000,
  "target_salary": 240000,
  "justification": [
    "6 years distributed systems experience",
    "Led 3 high-impact projects",
    "Market rate for this role in SF is $230-260K"
  ]
}'

Generate LinkedIn profile:

placed_call "generate_linkedin_profile" '{"resume_id":"res_abc123"}'

Research a company:

placed_call "research_company" '{"company_name":"Databricks"}'

Common Workflows

Before applying:

  1. match_job — check resume-job fit score
  2. analyze_resume_gaps — find missing keywords
  3. optimize_resume_for_job (via placed-resume-optimizer) — tailor resume
  4. generate_cover_letter — write tailored cover letter

Negotiate an offer:

  1. get_company_salary_data — benchmark the offer
  2. analyze_offer — get full market comparison
  3. generate_salary_negotiation_script — get negotiation talking points

Additional Resources

  • references/api-guide.md — Full API reference with all parameters and response schemas

版本历史

共 2 个版本

  • v1.1.0 当前
    2026-03-29 17:33 安全 安全
  • v1.0.2
    2026-03-19 03:58

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,859
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 439 📥 147,694
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 445 📥 226,315