Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

placed-resume-optimizer放置简历优化器

Agent Skill

placed-resume-optimizer 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,352

周安装

348

GitHub Stars

公开资料未说明

下载量

2,784
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:placed-resume-optimizer(放置简历优化器)
来源仓库:https://github.com/ajitsingh25/placed-resume-optimizer
安装命令:
openclaw skills install placed-resume-optimizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install placed-resume-optimizer

简介

Placed简历优化器评估ATS匹配度并提供项目符号改进建议。

  • 适合希望提升简历通过率或对标岗位要求进行差距分析的用户。
  • 可定制化调整关键词密度与格式规范以增强可读性。
  • 优化过程通常仅读取文本内容,但仍需授权访问相关文档。
  • placed-resume-optimizer 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
placed-resume-optimizer
description
This skill should be used when the user wants to "optimize resume for job", "check ATS score", "improve resume bullets", "analyze resume gaps", "tailor resume to job description", "get ATS compatibility score", "improve bullet points", "match resume to job posting", "fix resume for ATS", or wants to maximize their resume's impact and ATS compatibility using the Placed platform at placed.exidian.tech.
version
1.0.0
homepage
https://placed.exidian.tech
metadata
tags
ats,ats-checker,ats-optimizer,resume-optimization,keyword-optimization,resume-score,job-match,resume-tailor,ats-score,resume-keywords,placed,exidian,career

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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.76%
按下载量换算2,304

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills