← Back to Skills Marketplace
jaredforreal

GLM-V-Resume-Screen

by Jared Wen · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ Security Clean
430
Downloads
1
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install glmv-resume-screen
Description
Screen and evaluate resumes against criteria using ZhiPu GLM-V multimodal model. Reads multiple resume files (PDF/DOCX/TXT), compares against user-defined sc...
README (SKILL.md)

GLM-V Resume Screening Skill

Batch-read resumes and screen candidates against your criteria using the ZhiPu GLM-V multimodal model.

When to Use

  • Filter/screen multiple resumes against specific criteria
  • User mentions "筛选简历", "评估候选人", "简历筛选", "resume screening", "filter candidates"
  • Compare candidates for a job position
  • Batch-evaluate job applications

Supported Input Types

Type Formats Max Count Source
Resume (URL) pdf, docx, txt 50 URL
Resume (Local) pdf only pages ≤ 50 total Local path

Local PDF / 本地 PDF: Local PDF files are converted page-by-page into images (base64) before sending to the model. PyMuPDF is required (pip install PyMuPDF). URL files support full formats including pdf/docx/txt. 本地 PDF 会自动逐页转为图片(base64)传给模型,需要安装 PyMuPDFpip install PyMuPDF)。URL 文件支持 pdf/docx/txt 等全格式。

📋 Output Display Rules (MANDATORY)

After running the script, you must display the complete screening result (Markdown table) exactly as returned. Do not summarize, truncate, or only say "screening completed". Users need each candidate's detailed analysis to decide.

  • Show the full Markdown table (index, name, pass/fail, match level, reasoning)
  • If output was saved (-o), provide the file path and show file content
  • If screening output is empty, explain why

Resource Links

Resource Link
Get API Key https://bigmodel.cn/usercenter/proj-mgmt/apikeys
API Docs Chat Completions / 对话补全

Prerequisites

API Key Setup / API Key 配置(Required / 必需)

This script reads the key from the ZHIPU_API_KEY environment variable and shares it with other Zhipu skills. 脚本通过 ZHIPU_API_KEY 环境变量获取密钥,与其他智谱技能共用同一个 key。

Get Key / 获取 Key: Visit Zhipu Open Platform API Keys / 智谱开放平台 API Keys to create or copy your key.

Setup options / 配置方式(任选一种):

  1. OpenClaw config (recommended) / OpenClaw 配置(推荐): Set in openclaw.json under skills.entries.glmv-resume-screen.env:

    "glmv-resume-screen": { "enabled": true, "env": { "ZHIPU_API_KEY": "你的密钥" } }
    
  2. Shell environment variable / Shell 环境变量: Add to ~/.zshrc:

    export ZHIPU_API_KEY="你的密钥"
    

💡 If you already configured another Zhipu skill (for example zhipu-tools or glmv-caption), they share the same ZHIPU_API_KEY, so no extra setup is needed. 💡 如果你已为其他智谱 skill(如 zhipu-toolsglmv-caption)配置过 key,它们共享同一个 ZHIPU_API_KEY,无需重复配置。

How to Use

Basic Screening

python scripts/resume_screen.py \
  --files "https://example.com/resume1.pdf" "https://example.com/resume2.docx" \
  --criteria "3年以上工作经验,有Python开发经验,有大型项目管理经验"

Save as Markdown

python scripts/resume_screen.py \
  --files "https://example.com/resume1.pdf" "https://example.com/resume2.docx" \
  --criteria "本科以上学历,5年后端开发经验" \
  --output result.md

Save as JSON

python scripts/resume_screen.py \
  --files "https://example.com/resume1.pdf" "https://example.com/resume2.docx" \
  --criteria "有机器学习经验" \
  --output result.json --pretty

Custom System Prompt

python scripts/resume_screen.py \
  --files "https://example.com/resume1.pdf" \
  --criteria "前端开发岗位,3年经验" \
  --system-prompt "你是一位资深技术面试官,特别关注候选人的项目深度和技术选型能力"

Output Example

The model outputs a Markdown table like this:

| 序号 | 候选人姓名 | 是否符合    | 符合程度 | 原因分析                                                    |
| ---- | ---------- | ----------- | -------- | ----------------------------------------------------------- |
| 1    | 张三       | ✅ 符合     | 高       | 5年后端经验,熟练使用Python和Django,主导过3个大型项目      |
| 2    | 李四       | ❌ 不符合   | 低       | 仅1年开发经验,主要使用Java,无Python经验                   |
| 3    | 王五       | ⚠️ 部分符合 | 中       | 3年Python经验但无项目管理经验,技术栈匹配但缺乏大型项目经历 |

CLI Reference

python scripts/resume_screen.py --files FILE [FILE...] --criteria CRITERIA [OPTIONS]
Parameter Required Description
--files, -f Resume file URLs (pdf/docx/txt, URL only, max 50)
--criteria, -c Screening criteria text
--model, -m No Model name (default: glm-4.6v)
--system-prompt, -s No Custom system prompt (default: professional HR assistant)
--temperature, -t No Sampling temperature 0-1 (default: 0.3)
--max-tokens No Max output tokens (default: 4096)
--output, -o No Save result to file (.md for markdown, .json for JSON)
--pretty No Pretty-print JSON output

Error Handling

API key not configured: → Guide user to configure ZHIPU_API_KEY

Authentication failed (401/403): → API key invalid/expired → reconfigure

Rate limit (429): → Quota exhausted → wait and retry

Local path provided: → Error: only URLs supported

Content filtered:warning field present → content blocked by safety review

Timeout: → Resumes too large or too many → reduce file count

Usage Guidance
This skill appears to do what it says: it uploads resumes (URLs or local PDFs converted to base64 images) to Zhipu's API and returns a Markdown screening table. Before installing or using it, consider: (1) Privacy: resumes often contain personal data — this tool will send full resume content to open.bigmodel.cn; verify the service's data retention and usage policy and obtain candidate consent if required. (2) API key scope: ZHIPU_API_KEY is the only required secret, but storing it in shared config (openclaw.json or a common env var) gives other Zhipu skills access — isolate the key if you need tighter control. (3) Implementation quirks: the script's default model ('glm-5v-turbo') differs from the SKILL.md text (glm-4.6v); review/adjust the model and max_tokens settings before batch runs. (4) Test safely: run with non-sensitive/test resumes first, and prefer remote URLs when possible to avoid installing PyMuPDF or sending large base64 images. (5) If you need stricter data control, consider redacting resumes or running screening locally with a model you host privately.
Capability Analysis
Type: OpenClaw Skill Name: glmv-resume-screen Version: 1.0.3 The glmv-resume-screen skill is a legitimate tool for evaluating resumes using the ZhiPu GLM-V multimodal model. The Python script (resume_screen.py) processes local PDF files by converting them to images using PyMuPDF and sends them, along with remote URLs, to the official ZhiPu API endpoint (open.bigmodel.cn). The instructions in SKILL.md are consistent with the tool's functionality, and there is no evidence of malicious intent, unauthorized data access, or harmful prompt injection.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description, required env var (ZHIPU_API_KEY), and included script all align: the tool sends resumes to Zhipu's API for multimodal screening. Minor inconsistency: SKILL.md/CLI text and the script disagree about the default model (SKILL.md mentions glm-4.6v; script DEFAULT_MODEL is 'glm-5v-turbo' and MODEL_MAX_TOKENS maps only glm-4.6v variants). This is an implementation/configuration mismatch but not a clear security misalignment.
Instruction Scope
Runtime instructions and script are scoped to reading resume files, converting local PDFs to base64 images (requires PyMuPDF), assembling a payload, and POSTing to https://open.bigmodel.cn/api/paas/v4/chat/completions. That behavior is expected for the stated purpose. Important privacy note: the script will send full resume contents (including base64 images for local PDFs) to the third‑party API — this is expected but sensitive. SKILL.md also mandates displaying the full returned Markdown table exactly as returned, which increases exposure of screening output.
Install Mechanism
No install spec is provided (instruction-only plus a Python script). The only additional runtime dependency is PyMuPDF if local PDF support is needed, which the SKILL.md mentions. No downloads from unknown hosts or installer scripts are present.
Credentials
Only a single required environment variable (ZHIPU_API_KEY) is requested — appropriate for calling Zhipu's API. However, the SKILL.md explicitly states the key is shared with other Zhipu skills (meaning any other skill reading the same env var can use the key). Consider the sensitivity of granting that key and whether it should be isolated per-skill. Also consider that resumes (PII) will be transmitted using that key to the external service.
Persistence & Privilege
always is false and the skill does not request elevated platform privileges or modify other skills. It only optionally writes output files specified by the user. No persistent or unusual privileges are requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install glmv-resume-screen
  3. After installation, invoke the skill by name or use /glmv-resume-screen
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
No user-facing changes in this release. - No file changes detected from the previous version.
v1.0.2
No user-facing changes in this version. - Version bump only; no file or documentation updates detected. - All functionality and documentation remain unchanged.
v1.0.1
- Added OpenClaw metadata including environment variable and binary requirements. - Declared primary environment variable (`ZHIPU_API_KEY`) and homepage link in metadata. - Assigned an emoji identifier for the skill. - No changes to functionality or CLI usage.
v1.0.0
Initial release: batch resume screening using ZhiPu GLM-V model - Screens and compares multiple resumes (PDF/DOCX/TXT/URL) against custom criteria. - Outputs a detailed Markdown table with pass/fail results and reasoning for each candidate. - Supports both URL and local (PDF) resume files; local PDFs auto-converted to images. - Requires `ZHIPU_API_KEY` setup; detailed instructions for configuration included. - CLI options for criteria, model, custom prompt, output format (Markdown/JSON), and error handling. - Clear rules to always display the full screening table, not just a summary.
Metadata
Slug glmv-resume-screen
Version 1.0.3
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is GLM-V-Resume-Screen?

Screen and evaluate resumes against criteria using ZhiPu GLM-V multimodal model. Reads multiple resume files (PDF/DOCX/TXT), compares against user-defined sc... It is an AI Agent Skill for Claude Code / OpenClaw, with 430 downloads so far.

How do I install GLM-V-Resume-Screen?

Run "/install glmv-resume-screen" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is GLM-V-Resume-Screen free?

Yes, GLM-V-Resume-Screen is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does GLM-V-Resume-Screen support?

GLM-V-Resume-Screen is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created GLM-V-Resume-Screen?

It is built and maintained by Jared Wen (@jaredforreal); the current version is v1.0.3.

💬 Comments