GLM-Master-Skill

v1.0.8

Documentation-only master skill for GLM ecosystem discovery and installation. This skill does not execute scripts or subprocess commands. It provides a curat...

0· 122·0 current·0 all-time
byJared Wen@jaredforreal
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (master documentation for GLM skills) align with the content of SKILL.md. The skill is instruction-only, links to individual GLM skills, and does not demand binaries, env vars, or config paths that would be out-of-scope.
Instruction Scope
SKILL.md contains only documentation and recommended commands (e.g., 'npx clawhub@latest install <skill-name>' and git clone examples). It explicitly states it does not execute scripts or use subprocesses and does not direct the agent to read unrelated files or environment variables. The only environment variable mentioned is ZHIPU_API_KEY, which is clearly described as required by downstream skills, not by this master skill itself.
Install Mechanism
There is no install spec for the skill itself (instruction-only). The documentation recommends using 'npx clawhub@latest' and git clone; while these are reasonable user-facing installation options, npx runs code downloaded from the npm registry and therefore carries the normal risk of executing remotely sourced packages. This is a user action the master skill recommends rather than something the skill executes itself.
Credentials
The skill declares no required environment variables or credentials. It documents that many downstream GLM skills use ZHIPU_API_KEY and gives security advice for handling API keys. Asking the user to provide that key for downstream tools is proportionate and explained; the master skill does not request broad or unrelated secrets.
Persistence & Privilege
The skill does not request always-on presence or system-wide modifications. Flags are default (always: false) and the skill is user-invocable; no elevated persistence or privileges are requested.
Assessment
This skill is a guide/ index for GLM-related skills and appears internally consistent. Before installing any downstream skill it links to: 1) review that skill's SKILL.md and install steps (especially for any that request API keys or run native installers); 2) be cautious when running 'npx <package>' because npx downloads and executes code from npm — prefer verifying the package source or cloning the repository if you want more control; 3) follow the documented advice for ZHIPU_API_KEY (use least-privilege keys, do not hardcode, store in env/.env excluded from VCS); and 4) only install skills from trusted sources or after inspecting their code if you have doubts.

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

latestvk97dvj8fee77b4f27afw9yb01d8405xc

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🎯 Clawdis

SKILL.md

GLM Master Skill (Guide Only) / GLM 技能总览(仅指南)

This is a documentation-only master skill.

  • ✅ It introduces available GLM skills.
  • ✅ It provides official install links and commands.
  • ❌ It does not run any local scripts.
  • ❌ It does not use subprocess.

本 Skill 只做导航与安装说明,不执行任何本地脚本。


Official Skills Catalog / 官方技能目录

GLM-OCR

SkillPurposeLink
glmocrGeneral OCR (text extraction)https://github.com/zai-org/skills/tree/main/skills/glmocr
glmocr-tableTable extractionhttps://github.com/zai-org/skills/tree/main/skills/glmocr-table
glmocr-formulaFormula extractionhttps://github.com/zai-org/skills/tree/main/skills/glmocr-formula
glmocr-handwritingHandwriting OCRhttps://github.com/zai-org/skills/tree/main/skills/glmocr-handwriting
glmocr-sdkGLM-OCR SDK guidancehttps://github.com/zai-org/skills/tree/main/skills/glmocr-sdk

GLM-Image

SkillPurposeLink
glm-image-genText-to-image generationhttps://github.com/zai-org/skills/tree/main/skills/glm-image-gen

GLM-V

SkillPurposeLink
glmv-captionImage/video/file captioninghttps://github.com/zai-org/skills/tree/main/skills/glmv-caption
glmv-prompt-genPrompt generation from visual inputhttps://github.com/zai-org/skills/tree/main/skills/glmv-prompt-gen
glmv-resume-screenResume screeninghttps://github.com/zai-org/skills/tree/main/skills/glmv-resume-screen
glmv-groundingImage/video target localization & bounding-box visualizationhttps://github.com/zai-org/skills/tree/main/skills/glmv-grounding
glmv-doc-based-writingDocument-based content generation (PDF/DOCX)https://github.com/zai-org/skills/tree/main/skills/glmv-doc-based-writing
glmv-pdf-to-pptPDF to HTML presentation conversionhttps://github.com/zai-org/skills/tree/main/skills/glmv-pdf-to-ppt
glmv-pdf-to-webPDF to academic project website conversionhttps://github.com/zai-org/skills/tree/main/skills/glmv-pdf-to-web
glmv-prd-to-appBuild full-stack web app from PRD documents & prototypeshttps://github.com/zai-org/skills/tree/main/skills/glmv-prd-to-app
glmv-stock-analystMulti-source stock analysis and report generationhttps://github.com/zai-org/skills/tree/main/skills/glmv-stock-analyst
glmv-web-replicationFrontend visual replication of public websiteshttps://github.com/zai-org/skills/tree/main/skills/glmv-web-replication

Installation Methods / 安装方式

Method A: Install from Clawhub (Recommended first)

npx clawhub@latest install <skill-name>

Example:

npx clawhub@latest install glmocr
npx clawhub@latest install glmv-caption
npx clawhub@latest install glm-image-gen

You can also install multiple skills at once:

npx clawhub@latest install glmocr glmocr-table glmocr-formula glmocr-handwriting glmocr-sdk glm-image-gen glmv-caption glmv-prompt-gen glmv-resume-screen glmv-grounding glmv-doc-based-writing glmv-pdf-to-ppt glmv-pdf-to-web glmv-prd-to-app glmv-stock-analyst glmv-web-replication

Method B: If Clawhub is rate-limited

You may see errors like:

✖ Rate limit exceeded (retry in 47s, remaining: 0/20, reset in 47s)

Use one of the following:

  1. Wait and retry after reset time.
  2. Install from the official GitHub skill directory directly.

你可能会遇到 Clawhub 频率限制;可等待重试,或改用 GitHub 源安装。

Method C: Install from GitHub source

Use each skill's official path (see catalog above).

General idea:

git clone https://github.com/zai-org/<REPO>.git

Then follow that skill's own SKILL.md for exact setup steps.


API Key Setup (required by most downstream skills)

Most GLM skills require the environment variable ZHIPU_API_KEY. This master skill itself does not read or use the key, but downstream skills will.

Security best practices:

  • Create a limited-scope API key with only the permissions needed for the skills you plan to use.
  • Store the key in environment variables only — never hardcode it in source files or commit it to version control.
  • Add ZHIPU_API_KEY to your .gitignore if storing it in a .env file.
  • Rotate the key periodically and revoke unused keys at https://bigmodel.cn/usercenter/proj-mgmt/apikeys.

Get API key: https://bigmodel.cn/usercenter/proj-mgmt/apikeys

Set in shell:

export ZHIPU_API_KEY="your_key"

或者写入环境配置文件(如 ~/.zshrc)以长期生效,但请确保该文件不会被提交到版本控制系统。


How an Agent should use this Master Skill

When user asks for GLM OCR / GLM Image / GLM-V capabilities:

  1. Match user intent to one or more skills in the catalog.
  2. Recommend installation via npx clawhub@latest install <skill-name> first.
  3. If rate-limited, tell user to retry later or use GitHub skill source.
  4. Open the selected skill's official SKILL.md and follow its instructions.

当用户提出具体任务时,Agent 按上述流程引导安装并跳转到对应技能文档。


Resource Links


Why this design / 设计原因

Some skill-sharing platforms may flag subprocess execution as high risk during review.

To keep this master skill safe and easy to pass review:

  1. No helper .py installer.
  2. No local command execution logic.
  3. Only official links + clear installation instructions.

由于 subprocess 在审核中可能被视为高风险,这里采用“纯文档”方式。


Security Note

This master skill intentionally avoids executable helper scripts. It is designed for safer sharing/review in public skill marketplaces.

本 Skill 刻意不包含可执行安装脚本,以降低审核风险。

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…