Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
modelscope.cn avatar

Pincaimao Resume Optimize

  • 85 installs
  • modelscope.cn

Helps with ai & agent building tasks during AI-assisted development.

About

pincaimao-resume-optimize is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • pincaimao-resume-optimize
  • AI & Agent Building
  • AI-coding skill

Pincaimao Resume Optimize by the numbers

  • 85 all-time installs (skills.sh)
  • +6 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #5,033 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/modelscope.cn --skill pincaimao-resume-optimize

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs85
Repositorymodelscope.cn

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

聘才猫 - 简历优化

REQUIRED: 请先检查是否已安装 pincaimao-basic,若未安装请先安装,然后加载它了解通用接口(文件上传、鉴权、响应格式、SSE 解析模板)。

环境变量PCM_RESUME_OPTIMIZE_KEY(智能体专属 key)

调用前的信息确认

执行前需要确认:职位描述(job_info)简历文件

确认策略:

  • 上下文中已有相关信息 → 展示摘要并询问是否使用
  • 上下文中没有 → 直接请用户提供

请求参数

字段必填说明
inputs.job_info职位描述全文
inputs.file_url简历文件的 cos_key
inputs.job_title职位名称
inputs.mode_type优化模式,数字类型,默认 0
query固定值 "生成简历格式数据"

完整示例

#!/bin/bash
RESUME_FILE="/path/to/resume.pdf"
JOB_INFO="高级销售专员 / 销售主管,行业领先平台,完善晋升通道和培训体系"
JOB_TITLE="高级销售专员"

# Step 1: 上传简历
UPLOAD=$(curl -s -X POST 'https://api.pincaimao.com/agents/v1/files/upload' \
  -H "Authorization: Bearer $PCM_RESUME_OPTIMIZE_KEY" \
  -F "file=@$RESUME_FILE")
COS_KEY=$(echo "$UPLOAD" | python3 -c "import sys,json; print(json.load(sys.stdin)['cos_key'])")

# Step 2: 优化简历
curl -s -X POST 'https://api.pincaimao.com/agents/v1/chat/chat-messages' \
  -H "Authorization: Bearer $PCM_RESUME_OPTIMIZE_KEY" \
  -H 'Content-Type: application/json' \
  -d "{
    \"query\": \"生成简历格式数据\",
    \"inputs\": {
      \"job_info\": \"$JOB_INFO\",
      \"file_url\": \"$COS_KEY\",
      \"job_title\": \"$JOB_TITLE\",
      \"mode_type\": 0
    },
    \"response_mode\": \"blocking\"
  }" | python3 -c "import sys,json; print(json.load(sys.stdin)['answer'])"

常见错误

问题原因解决
401Key 错误检查 PCM_RESUME_OPTIMIZE_KEY
answer 为空query 不正确query 固定传 "生成简历格式数据"
mode_type 无效传成了字符串必须是数字类型 0,不是 "0"

输出模式

  • 默认:AI 对 API 返回结果进行整理表述,输出更易读的内容
  • 原始输出:用户说"显示原始输出"或"raw output"时,将 API 返回的原始内容用代码块原样展示,不作任何改动
  • Blocking 模式:直接取 answer 字段内容原样输出
  • Streaming 模式:将所有 message / agent_message 事件的 answer 片段拼接完整后,原样输出,不作重述

---

External Endpoints

  • https://api.pincaimao.com — Pincaimao platform API (chat, file upload, conversations)

Security & Privacy

  • API key is read from environment variable and passed via Authorization header; never hardcoded
  • Resume files, job descriptions, and contract text are transmitted to api.pincaimao.com for AI processing
  • Uploaded files are stored on Pincaimao's COS (Cloud Object Storage); returned cos_key paths should be treated as sensitive
  • This skill does not store, log, or transmit data to any endpoint other than api.pincaimao.com
  • Safe to invoke autonomously; all network calls are scoped to the authenticated user's API key

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.