聘才猫(Pincaimao)职业规划助手 v2

v1.0.1

聘才猫 - 职业规划助手 V2 Use when calling Pincaimao Career Planning Assistant V2 API to generate career advice based on a resume and advice type. Requires PCM_CAREER_...

1· 173·0 current·0 all-time
by聘才猫(Pincaimao)@pincaimao

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for pincaimao/pincaimao-career-planning-v2.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "聘才猫(Pincaimao)职业规划助手 v2" (pincaimao/pincaimao-career-planning-v2) from ClawHub.
Skill page: https://clawhub.ai/pincaimao/pincaimao-career-planning-v2
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: PCM_CAREER_PLANNING_KEY
Required binaries: curl, python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pincaimao-career-planning-v2

ClawHub CLI

Package manager switcher

npx clawhub@latest install pincaimao-career-planning-v2
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, required env var (PCM_CAREER_PLANNING_KEY), and required binaries (curl, python3) align with a service that uploads resumes and calls an API. Minor note: SKILL.md asks the user to 'check/install pincaimao-basic' for common interfaces, but that dependency is not declared in the registry metadata; this is an operational/documentation inconsistency but not a functional mismatch.
Instruction Scope
SKILL.md contains concrete, scoped steps (upload file, call chat endpoint, parse JSON). It only references the resume file and the PCM key and does not instruct reading unrelated files or environment variables. The guidance about treating cos_key as sensitive is appropriate.
Install Mechanism
Instruction-only skill with no install spec or code files — lowest-risk install footprint. Requires curl and python3 at runtime, which is reasonable for the shown examples.
Credentials
Only a single API key (PCM_CAREER_PLANNING_KEY) is required and used directly for Authorization to the vendor API; this is proportionate for the stated purpose.
Persistence & Privilege
always is false and the skill does not request persistent system-wide changes or extra privileges. It does not modify other skills' config and its autonomous invocation setting is the platform default.
Assessment
This skill appears to do what it says: it uploads a resume to api.pincaimao.com and requests career advice with your PCM_CAREER_PLANNING_KEY. Before installing/use: (1) Only provide your PCM key if you trust Pincaimao and understand that resumes (sensitive personal data) will be transmitted and stored on their COS. (2) Note the SKILL.md suggests installing a separate 'pincaimao-basic' skill but that dependency isn't declared — if you follow that instruction, verify the other skill's contents. (3) The skill is instruction-only (no code bundled), so its behavior will be whatever api.pincaimao.com does; review the vendor's privacy/security docs and consider using an API key with limited scope if possible. (4) If you need higher assurance, test in a sandbox account and monitor network calls before giving access to sensitive resumes.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🚀 Clawdis
Binscurl, python3
EnvPCM_CAREER_PLANNING_KEY
Primary envPCM_CAREER_PLANNING_KEY
latestvk97ea0we74grbggyw1zgw58bes843cdj
173downloads
1stars
2versions
Updated 3w ago
v1.0.1
MIT-0

聘才猫 - 职业规划助手 V2

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

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

还没有密钥?通过邀请链接注册并完成认证即可免费获取:pincaimao.com/agents/login?invite_code=uwqc

调用前的信息确认

执行前需要确认:简历文件建议类型

确认策略:

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

询问建议类型(三选一):

"请选择职业建议类型:初入职场 / 转型建议 / 晋升路径"

请求参数

字段必填说明
inputs.type建议类型,固定三选一:初入职场转型建议晋升路径
inputs.file_url简历文件的 cos_key
query固定值 "分析简历,提出职业建议"

完整示例

#!/bin/bash
RESUME_FILE="/path/to/resume.pdf"
ADVICE_TYPE="晋升路径"  # 初入职场 | 转型建议 | 晋升路径

# Step 1: 上传简历
UPLOAD=$(curl -s -X POST 'https://api.pincaimao.com/agents/v1/files/upload' \
  -H "Authorization: Bearer $PCM_CAREER_PLANNING_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_CAREER_PLANNING_KEY" \
  -H 'Content-Type: application/json' \
  -d "{
    \"query\": \"分析简历,提出职业建议\",
    \"inputs\": {
      \"type\": \"$ADVICE_TYPE\",
      \"file_url\": \"$COS_KEY\"
    },
    \"response_mode\": \"blocking\"
  }" | python3 -c "import sys,json; print(json.load(sys.stdin)['answer'])"

常见错误

问题原因解决
401Key 错误检查 PCM_CAREER_PLANNING_KEY
建议内容不相关type 传了非法值只能是 初入职场转型建议晋升路径 之一
answer 为空query 不是固定值query 必须固定传 "分析简历,提出职业建议"

输出模式

  • 默认: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

Comments

Loading comments...