聘才猫(Pincaimao)面试报告

v1.0.1

聘才猫 - 面试报告 Use when calling Pincaimao Interview Report API to generate an interview report or coaching materials based on a job description and interview rec...

0· 161·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-interview-reports.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "聘才猫(Pincaimao)面试报告" (pincaimao/pincaimao-interview-reports) from ClawHub.
Skill page: https://clawhub.ai/pincaimao/pincaimao-interview-reports
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: PCM_INTERVIEW_REPORT_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-interview-reports

ClawHub CLI

Package manager switcher

npx clawhub@latest install pincaimao-interview-reports
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, required binaries (curl, python3), and the single required env var (PCM_INTERVIEW_REPORT_KEY) all align with a service that uploads interview recording files and calls api.pincaimao.com to generate reports. The mention of a companion skill (pincaimao-basic) is an implementation note, not a mismatch.
Instruction Scope
SKILL.md instructs only to collect job_info and a local interview file path, upload that file to api.pincaimao.com, and send the received cos_key and job_info to the chat endpoint. It does not instruct reading unrelated files or sending data to other endpoints. It does enable an option to display raw API responses (which may include sensitive content) — expected for a reporting tool but worth noting for privacy.
Install Mechanism
No install spec — instruction-only. That is low risk and consistent with the skill being a usage guide for the Pincaimao API.
Credentials
Only a single API key (PCM_INTERVIEW_REPORT_KEY) is required and declared as the primary credential, which is appropriate for an authenticated API client. No other secrets or unrelated env vars are requested.
Persistence & Privilege
always is false and there is no install step writing persistent config or modifying other skills. The skill can be invoked autonomously (platform default) but it does not request elevated or persistent privileges.
Assessment
This skill appears to do exactly what it says: upload interview recordings to api.pincaimao.com and request a report using your PCM_INTERVIEW_REPORT_KEY. Before installing or invoking it, confirm you trust the Pincaimao service and are comfortable uploading interview recordings (they will be stored on Pincaimao's COS and may contain personal data). Keep the PCM_INTERVIEW_REPORT_KEY scoped to this service (don’t reuse broader credentials), verify the api.pincaimao.com domain and privacy policy, and be cautious when using the 'raw output' option as raw API responses can include sensitive information. If you want to minimize risk, inspect network activity during first use or test with non-sensitive sample data. If you need assurance about the companion 'pincaimao-basic' skill, review that skill's instructions before installing.

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

Runtime requirements

📊 Clawdis
Binscurl, python3
EnvPCM_INTERVIEW_REPORT_KEY
Primary envPCM_INTERVIEW_REPORT_KEY
latestvk97dsegp6pch0p9s7cbean0h1s842fn7
161downloads
0stars
2versions
Updated 3w ago
v1.0.1
MIT-0

聘才猫 - 面试报告

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

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

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

调用前的信息确认

执行前需要确认:职位描述(job_info)面试记录文件

确认策略:

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

注意:与其他智能体的差异

字段本智能体其他智能体
文件字段名file_urls(复数)file_url
query 内容文件名(非 job_info 前 20 字符)job_info 前 20 字符

请求参数

字段必填说明
inputs.job_info职位描述全文
inputs.file_urls面试记录文件的 cos_key(注意是 file_urls 复数)
query上传文件的文件名(不是 job_info 前 20 字符)

完整示例

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

# Step 1: 上传面试记录文件
UPLOAD=$(curl -s -X POST 'https://api.pincaimao.com/agents/v1/files/upload' \
  -H "Authorization: Bearer $PCM_INTERVIEW_REPORT_KEY" \
  -F "file=@$INTERVIEW_FILE")
COS_KEY=$(echo "$UPLOAD" | python3 -c "import sys,json; print(json.load(sys.stdin)['cos_key'])")
FILE_NAME=$(echo "$UPLOAD" | python3 -c "import sys,json; print(json.load(sys.stdin)['filename'])")

# Step 2: 生成面试报告
# 注意:query 用文件名,file_urls(复数)传 cos_key
curl -s -X POST 'https://api.pincaimao.com/agents/v1/chat/chat-messages' \
  -H "Authorization: Bearer $PCM_INTERVIEW_REPORT_KEY" \
  -H 'Content-Type: application/json' \
  -d "{
    \"query\": \"$FILE_NAME\",
    \"inputs\": {
      \"job_info\": \"$JOB_INFO\",
      \"file_urls\": \"$COS_KEY\"
    },
    \"response_mode\": \"blocking\"
  }" | python3 -c "import sys,json; print(json.load(sys.stdin)['answer'])"

常见错误

问题原因解决
401Key 错误检查 PCM_INTERVIEW_REPORT_KEY
报告内容为空用了 file_url 而非 file_urls字段名是复数 file_urls
报告内容错乱query 传了 job_info 内容query 必须传文件名,不是 job_info

输出模式

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