← 返回
内容创作 Key 中文

Placed Resume Builder

This skill should be used when the user wants to "build a resume", "create a resume", "update my resume", "export resume as PDF", "change resume template", "...
当用户想要制作简历、创建简历、更新简历、导出PDF简历、更换简历模板时,应使用此技能。
ajitsingh25
内容创作 clawhub v1.1.0 2 版本 99846.6 Key: 需要
★ 0
Stars
📥 651
下载
💾 10
安装
2
版本
#ai#career#exidian#latest#placed#resume

概述

Placed Resume Builder

Build and manage professional resumes via the Placed API. No MCP server required — all calls are made directly with curl.

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
------------------------------------------------------------------
list_resumesList all resumes
create_resumeCreate a new resume
get_resumeGet resume by ID (or most recent if no ID)
update_resumeUpdate any resume section
get_resume_schemaSee all available fields and formats
list_resume_templatesBrowse available templates
get_template_previewPreview a specific template
change_resume_templateSwitch resume template
get_resume_pdf_urlGet PDF download URL (expires 15 min)
get_resume_docx_urlGet Word document download URL
export_resume_jsonExport resume as JSON
export_resume_markdownExport resume as Markdown

Usage Examples

List all resumes:

placed_call "list_resumes"

Create a resume:

placed_call "create_resume" '{"title":"Senior Engineer Resume","target_role":"Staff Engineer"}'

Update resume sections:

placed_call "update_resume" '{
  "resume_id": "res_abc123",
  "summary": "Principal SRE with 10+ years...",
  "skills": [{"name":"Infrastructure","keywords":["Kubernetes","Terraform","AWS"]}]
}'

Get PDF download URL:

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

Change template:

# First list templates
placed_call "list_resume_templates"
# Then apply one
placed_call "change_resume_template" '{"resume_id":"res_abc123","template_id":"onyx"}'

Export as Markdown:

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

Resume Sections

All sections are optional and can be updated independently via update_resume:

  • basics — name, email, phone, headline, location
  • summary — professional overview
  • experience — work history with company, position, date, bullets
  • education — degrees, institutions, dates
  • skills — skill groups with keywords
  • languages — language proficiencies
  • certifications — professional certs with issuer and date
  • awards — honors and recognition
  • projects — personal/professional projects
  • publications — articles, papers, books
  • references — professional references
  • volunteer — volunteer experience
  • interests — hobbies and interests
  • profiles — LinkedIn, GitHub, portfolio links

Tips

  • Call get_resume_schema to see exact field formats before updating
  • Quantify achievements with metrics (numbers, percentages, dollars)
  • Use action verbs at the start of bullet points
  • Mirror job description language for better ATS matching
  • Use placed-resume-optimizer skill to check ATS compatibility after building

版本历史

共 2 个版本

  • v1.1.0 当前
    2026-05-01 16:06 安全 安全
  • v1.0.2
    2026-03-19 17:53 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 860 📥 199,864
productivity

Placed Interview Coach

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

Baidu Wenku AIPPT

ide-rea
使用百度文库 AI 智能生成 PPT,自动根据内容选择模板。
★ 66 📥 46,204