← 返回 Skills 市场
jaredforreal

GLM-Master-Skill

作者 Jared Wen · GitHub ↗ · v1.0.9 · MIT-0
cross-platform ✓ 安全检测通过
764
总下载
5
收藏
2
当前安装
10
版本数
在 OpenClaw 中安装
/install glm-master-skill
功能描述
Documentation-only master skill for GLM ecosystem discovery and installation. This skill does not execute scripts or subprocess commands. It provides a curat...
使用说明 (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

Skill Purpose Link
glmocr General OCR (text extraction) https://github.com/zai-org/GLM-skills/tree/main/skills/glmocr
glmocr-table Table extraction https://github.com/zai-org/GLM-skills/tree/main/skills/glmocr-table
glmocr-formula Formula extraction https://github.com/zai-org/GLM-skills/tree/main/skills/glmocr-formula
glmocr-handwriting Handwriting OCR https://github.com/zai-org/GLM-skills/tree/main/skills/glmocr-handwriting
glmocr-sdk GLM-OCR SDK guidance https://github.com/zai-org/GLM-skills/tree/main/skills/glmocr-sdk

GLM-Image

Skill Purpose Link
glm-image-gen Text-to-image generation https://github.com/zai-org/GLM-skills/tree/main/skills/glm-image-gen

GLM-V

Skill Purpose Link
glmv-caption Image/video/file captioning https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-caption
glmv-prompt-gen Prompt generation from visual input https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-prompt-gen
glmv-resume-screen Resume screening https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-resume-screen
glmv-grounding Image/video target localization & bounding-box visualization https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-grounding
glmv-doc-based-writing Document-based content generation (PDF/DOCX) https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-doc-based-writing
glmv-pdf-to-ppt PDF to HTML presentation conversion https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-pdf-to-ppt
glmv-pdf-to-web PDF to academic project website conversion https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-pdf-to-web
glmv-prd-to-app Build full-stack web app from PRD documents & prototypes https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-prd-to-app
glmv-stock-analyst Multi-source stock analysis and report generation https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-stock-analyst
glmv-web-replication Frontend visual replication of public websites https://github.com/zai-org/GLM-skills/tree/main/skills/glmv-web-replication

Installation Methods / 安装方式

Method A: Install from Clawhub (Recommended first)

npx clawhub@latest install \x3Cskill-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/GLM-skills.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 \x3Cskill-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 刻意不包含可执行安装脚本,以降低审核风险。

安全使用建议
This skill is a read-only catalog and appears coherent with that purpose. Before following any install commands the skill suggests: (1) review the target repositories' SKILL.md and source code on GitHub so you know what will be installed; (2) prefer pinning versions (avoid indiscriminately using `@latest`) and verify the authenticity of the npm package (clawhub) before running npx; (3) be aware that running `npx` or `git clone` will fetch and execute network code—treat those as normal code-install risks; (4) downstream skills may require ZHIPU_API_KEY—create a limited-scope key and do not commit it to source control; and (5) if you do not want an agent to run shell commands automatically, keep autonomous execution disabled for the agent or explicitly instruct it not to run commands.
能力评估
Purpose & Capability
The skill is described as a documentation-only index of GLM skills and indeed contains only a catalog and installation guidance. It requests no credentials, binaries, or config paths, which is appropriate for a guide.
Instruction Scope
The SKILL.md contains shell commands (npx, git clone) and install guidance for downstream skills but does not instruct the agent itself to read local files or exfiltrate data. The description says it "does not execute scripts or subprocess commands" — that refers to the skill itself, not the user-facing install commands; this could be mildly confusing to non-technical users.
Install Mechanism
No install spec or code files are bundled. The document recommends using npx and git clone to fetch downstream skills (normal for installation docs). Because it suggests running npx @latest, users should be aware that following those commands downloads code at runtime from npm/GitHub (expected but worth attention).
Credentials
The master skill itself requires no environment variables. It correctly notes that many downstream GLM skills use ZHIPU_API_KEY and gives reasonable best-practice advice for key handling; requesting that key for downstream use is proportional and expected.
Persistence & Privilege
The skill does not request permanent presence (always:false) and does not modify other skills or system configuration. Autonomous model invocation is allowed by platform default but the skill's content does not exploit that.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install glm-master-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /glm-master-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.9
- Updated all GLM skill links from the previous repository path to the new https://github.com/zai-org/GLM-skills structure. - Updated the metadata fields "source" and "homepage" to point to the new repository location. - Adjusted GitHub installation instructions to match the new repository. - No logic or functional changes; documentation and navigation only.
v1.0.8
- Updated official skill catalog links to use the new zai-org/skills monorepo paths. - Added `glmv-stock-analyst` and `glmocr-sdk` to the catalog. - Updated homepage and source fields in the metadata for accuracy. - Refined example installation commands to match updated skill names. - No functional changes; documentation and navigation improvements only.
v1.0.7
- Improved API key setup instructions with updated security best practices, including recommendations for limited-scope keys and never storing API keys in source control. - Clarified that the master skill itself does not access or use the API key—downstream skills require it. - Provided specific guidance on environment variable management and `.gitignore` usage. - No functional or behavioral changes to the skill; documentation update only.
v1.0.6
- Added new GLM-V skills: `glmv-prd-to-app` and `glmv-web-replication` to the official catalog. - Updated installation example to include these new skills. - No executable logic added; documentation-only approach maintained.
v1.0.5
- Expanded the GLM-V catalog with new official skills: `glmv-grounding`, `glmv-doc-based-writing`, `glmv-pdf-to-ppt`, and `glmv-pdf-to-web`. - Updated installation examples and instructions to include the newly listed GLM-V skills. - No changes to logic or functionality; documentation update only.
v1.0.4
- Updated the catalog: the GLM-Image text-to-image skill is now listed as glm-image-gen (was previously glm-image-generation). - No executable scripts or subprocess logic added; documentation-only approach maintained. - No other functional or instructional changes.
v1.0.3
- Clarified that the skill does not execute scripts or use subprocess, enhancing security and review compatibility. - Updated the description and requirements to reflect that no environment variables or binaries are needed. - Added a new "Why this design" section explaining the documentation-only, non-executable approach. - Retained all installation links, methods, and resources for user reference. - No functional or catalog changes; documentation and metadata improvements only.
v1.0.2
- Added ZHIPU_API_KEY to the required environment variables in the metadata section. - No other changes; all documentation and catalog content remain the same.
v1.0.1
- Clarified that the skill is documentation-only and does not execute local scripts. - Removed "does not run any local scripts" and "does not use subprocess" from the feature list for brevity. - No functional changes; guide and catalog content remains the same. - Security notice and guidance remain unchanged. - No files were changed besides minor documentation simplification.
v1.0.0
- Initial release of the GLM Master Skill (documentation-only, guide purpose). - Provides a curated catalog of official GLM skills with links and descriptions. - Lists recommended installation methods, including Clawhub and direct GitHub source. - Shares API key setup instructions and resource links. - No scripts or subprocess execution—purely navigation and explanation for safer distribution.
元数据
Slug glm-master-skill
版本 1.0.9
许可证 MIT-0
累计安装 2
当前安装数 2
历史版本数 10
常见问题

GLM-Master-Skill 是什么?

Documentation-only master skill for GLM ecosystem discovery and installation. This skill does not execute scripts or subprocess commands. It provides a curat... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 764 次。

如何安装 GLM-Master-Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install glm-master-skill」即可一键安装,无需额外配置。

GLM-Master-Skill 是免费的吗?

是的,GLM-Master-Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

GLM-Master-Skill 支持哪些平台?

GLM-Master-Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 GLM-Master-Skill?

由 Jared Wen(@jaredforreal)开发并维护,当前版本 v1.0.9。

💬 留言讨论