openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > 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", "...

媒体与内容

作者:Ajit Singh @ajitsingh25

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.1.0

统计:⭐ 0 · 117 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:ajitsingh25/placed-resume-builder

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's runtime instructions look appropriate for a resume-builder, but the published metadata omits that it requires and will persist a PLACED_API_KEY and a credentials file, and it instructs saving that key in plaintext — these inconsistencies and the plaintext persistence warrant caution.

目的

The SKILL.md clearly describes a resume-building integration with placed.exidian.tech and the curl API calls align with that purpose. However, registry metadata claims no required env vars or config paths while the instructions depend on PLACED_API_KEY and the ~/.config/placed/credentials file — this mismatch is unexplained and inconsistent.

说明范围

Runtime instructions require sourcing and writing ~/.config/placed/credentials, prompting the user for an API key if missing, and then persistently saving that key as an export line in a file. Apart from calling the placed API (curl) and minimal local file I/O for credentials, there is no other I/O — but the directive to write credentials in plaintext is a scope/behavior the registry did not declare.

安装机制

This is an instruction-only skill with no install steps and no code files to fetch or execute. That minimizes installation risk.

证书

Functionally the skill needs exactly one secret (PLACED_API_KEY) for the Placed API, which is proportionate. But the package metadata did not declare this primary credential or the config path; additionally, the skill instructs storing the secret unencrypted in ~/.config/placed/credentials, which is a security concern and should have been declared.

持久

The skill does not request elevated platform privileges or always: true. It does instruct persistent storage of the user's API key under ~/.config/placed/credentials (creates directory and writes an 'export' line), which is normal for convenience but increases attack surface if the file is world-readable or the key is reused elsewhere.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Placed Resume Builder」。简介:This skill should be used when the user wants to "build a resume", "create a re…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ajitsingh25/placed-resume-builder/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
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", or wants to manage resumes using the Placed career platform at placed.exidian.tech.
version: 1.0.0
metadata: {"openclaw":{"emoji":"📄","homepage":"https://placed.exidian.tech","requires":{"env":["PLACED_API_KEY"]},"primaryEnv":"PLACED_API_KEY"}}
---

# Placed Resume Builder

Build and manage professional resumes with AI assistance via the Placed MCP server.

## Prerequisites

Requires the Placed MCP server. Install via:
```json
{
  "mcpServers": {
    "placed": {
      "command": "npx",
      "args": ["-y", "@exidian/placed-mcp"],
      "env": {
        "PLACED_API_KEY": "your-api-key",
        "PLACED_BASE_URL": "https://placed.exidian.tech"
      }
    }
  }
}
```
Get your API key at https://placed.exidian.tech/settings/api

## Available Tools

- `create_resume` — Create a new resume from your profile or scratch
- `get_resume` — Retrieve a resume by ID
- `update_resume` — Update any resume section (experience, education, skills, etc.)
- `list_resumes` — List all your resumes
- `get_resume_schema` — Understand available resume sections
- `list_resume_templates` — Browse 37 professional templates
- `get_template_preview` — Preview a template
- `change_resume_template` — Switch your resume template
- `get_resume_pdf_url` — Download as PDF (expires in 15 min)
- `get_resume_docx_url` — Download as Word document
- `export_resume_json` — Export as JSON
- `export_resume_markdown` — Export as Markdown

## Resume Sections

All sections are optional and can be updated independently:
- `basics` — name, email, phone, headline, location
- `summary` — professional overview
- `experience` — work history
- `education` — degrees and certifications
- `skills` — technical and soft skills
- `languages` — language proficiencies
- `certifications` — professional certs
- `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, etc.

## Usage

**To create a resume:**
Call `create_resume(title="Senior Engineer Resume", target_role="Staff Engineer")`

**To update sections:**
Call `update_resume(resume_id="...", experience=[...], skills=[...])`

**To choose a template:**
1. Call `list_resume_templates()` to browse options
2. Call `change_resume_template(resume_id="...", template_id="modern")` to apply

**To export:**
- PDF: Call `get_resume_pdf_url(resume_id="...")`
- Markdown: Call `export_resume_markdown(resume_id="...")`
- Word: Call `get_resume_docx_url(resume_id="...")`

**To understand available fields:**
Call `get_resume_schema()` to see all available fields and their formats.

## Tips

- Quantify achievements with metrics (numbers, percentages, dollars)
- Use action verbs at the start of bullet points
- Mirror job description language for better ATS matching
- Test ATS compatibility with `check_ats_compatibility()` from the placed-resume-optimizer skill