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

placed-resume-builder已放置简历生成器

Agent Skill

placed-resume-builder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,672

周安装

365

GitHub Stars

公开资料未说明

下载量

3,037
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install placed-resume-builder

简介

Placed简历生成器协助用户快速构建专业简历并支持PDF导出。

  • 适用于需要切换模板风格或动态更新工作经历内容的情况。
  • 内置多种职业导向布局,可根据行业特性调整结构。
  • 修改简历可能触发文件生成,请留意存储空间权限设置。
  • placed-resume-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
placed-resume-builder
description
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", "list my resumes", "download resume", "switch template", or wants to manage resumes using the Placed career platform at placed.exidian.tech.
version
1.0.0
metadata
tags
resume,resume-builder,cv,resume-creator,pdf-resume,resume-template,career,job-search,placed,exidian,ai-resume,resume-generator

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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.34%
按下载量换算2,865

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills