← 返回
数据分析 Key 中文

Placed Resume Optimizer

This skill should be used when the user wants to "optimize resume for job", "check ATS score", "improve resume bullets", "analyze resume gaps", "tailor resum...
用于优化简历以匹配职位、检查ATS分数、改进简历要点、分析简历空白期、定制简历等场景。
ajitsingh25
数据分析 clawhub v1.1.0 2 版本 100000 Key: 需要
★ 0
Stars
📥 512
下载
💾 7
安装
2
版本
#ai#ats#exidian#latest#optimizer#placed#resume

概述

Placed Resume Optimizer

AI-powered resume optimization for ATS compatibility, keyword matching, and bullet point quality — 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

ToolDescription
--------------------------------------------------------------------------------------
check_ats_compatibilityATS compatibility score and recommendations
get_resume_quality_scoreOverall quality score with section breakdown
analyze_resume_gapsMissing keywords and skills vs. a job description
match_jobScore resume-job fit (0-100) with keyword breakdown
optimize_resume_for_jobTailor resume content to a specific job
optimize_resume_sectionOptimize a specific section (experience, skills, summary)
improve_bullet_pointRewrite a single bullet point with stronger impact
generate_resume_from_promptGenerate a complete resume from natural language

Usage Examples

Check ATS compatibility:

placed_call "check_ats_compatibility" '{"resume_id":"res_abc123"}'
# Returns: ATS score, formatting recommendations

Get quality score:

placed_call "get_resume_quality_score" '{"resume_id":"res_abc123"}'
# Returns: overall score, breakdown by section

Analyze gaps vs. a job description:

placed_call "analyze_resume_gaps" '{
  "resume_id": "res_abc123",
  "job_description": "Senior Software Engineer at Stripe — Go, distributed systems, Kafka..."
}'
# Returns: critical gaps, keyword gaps, suggestions

Score resume-job match:

placed_call "match_job" '{
  "resume_id": "res_abc123",
  "job_description": "..."
}'
# Returns: match score 0-100, matched/missing keywords

Optimize resume for a job:

placed_call "optimize_resume_for_job" '{
  "resume_id": "res_abc123",
  "job_description": "Senior Software Engineer at Airbnb..."
}'
# Returns: suggested section improvements

Improve a single bullet:

placed_call "improve_bullet_point" '{
  "bullet_point": "Worked on database optimization",
  "context": "Senior SRE at Uber"
}'
# Returns: rewritten bullet with metrics and impact

Optimize a specific section:

placed_call "optimize_resume_section" '{
  "resume_id": "res_abc123",
  "section_type": "experience",
  "section_data": "Current bullets here...",
  "job_description": "Target job description..."
}'

Optimization Workflow

Run this before every application:

  1. match_job — check current fit score
  2. analyze_resume_gaps — identify missing keywords
  3. check_ats_compatibility — catch formatting issues
  4. improve_bullet_point — strengthen weak bullets
  5. optimize_resume_for_job — get full tailoring suggestions
  6. match_job again — confirm score improved

Bullet Point Formula

[Action Verb] + [What You Did] + [How/Scale] + [Quantified Result]

Before: "Worked on database optimization"

After: "Optimized PostgreSQL query performance by 40%, reducing p99 latency from 500ms to 300ms for 10M+ daily users"

Strong action verbs:

  • Technical: Architected, Built, Designed, Optimized, Implemented, Engineered, Migrated
  • Leadership: Led, Managed, Mentored, Spearheaded, Directed
  • Impact: Improved, Reduced, Increased, Accelerated, Scaled, Transformed

ATS Compatibility Rules

IssueFix
----------------------------------------------------------------------
Tables or columnsUse single-column layout
Graphics or imagesRemove all non-text elements
Unusual fontsUse Arial, Calibri, or Times New Roman
Headers/footers with key infoMove to main body
Inconsistent date formatsUse MM/YYYY throughout
Missing job description keywordsAdd naturally to skills and bullets

Tips

  • ATS score below 70 → fix formatting first, then keywords
  • Run match_job before and after optimizing to measure improvement
  • Always review optimize_resume_for_job suggestions before applying
  • Keep a master resume and create tailored copies per application

Additional Resources

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

版本历史

共 2 个版本

  • v1.1.0 当前
    2026-05-01 18:01 安全 安全
  • v1.0.2
    2026-03-19 20:57 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Placed Interview Coach

ajitsingh25
当用户想进行面试练习、模拟面试、面试准备、系统设计面试或行为面试时,使用此技能。
★ 1 📥 667
data-analysis

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 165 📥 60,035
data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 368 📥 140,493