首页龙虾技能列表 › Skill Vetter — 技能安全审查

Skill Vetter — 技能安全审查

v1.0.0

安全优先的 AI 技能审查工具,用于在安装 ClawHub、GitHub 等来源的技能前检查红旗标志、权限范围和可疑模式。

899· 207,000·3793 当前·3872 累计
by @spclaudehome·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/22
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该技能是一个仅含指令的审查清单,与其目的内部一致,不请求凭证、安装或异常权限。
评估建议
这是一个连贯的低风险仅指令审查技能:包含合理的清单和 GitHub 查询示例,不要求密钥或安装。使用前请注意:(1) 审查需要代理读取候选技能文件,可能执行网络调用——确认您授权这些权限;(2) 清单有助于检测明显的红旗,但不能保证检测到巧妙混淆或延时执行的恶意代码,因此对高风险技能应进行人工代码审查;(3) 在受控环境中运行 curl 命令(shell 中不要有特权凭证),避免将敏感令牌粘贴到输出中。如需更强保障,要求对 MEDIUM+ 级别或请求任何凭证的技能进行人工审批。...
详细分析 ▾
用途与能力
名称和描述(技能审查)与 SKILL.md 一致:提供清单和命令来检查仓库和文件,不请求无关凭证、二进制文件或安装。
指令范围
指令指导代理读取和审查候选技能的所有文件,并对 GitHub 托管的技能运行 GitHub API/原始内容查询。这适用于审查,但指令假设代理可能执行网络调用和完整文件读取——确保代理有权访问这些仓库且您允许该级别的访问。
安装机制
无安装规范和代码文件——最低风险模型。提供的快捷命令使用 curl/jq 访问 GitHub,适用于仓库检查,不引入安装时下载或解压归档。
凭证需求
该技能不请求环境变量、凭证或配置路径,与审查/清单技能的比例相符。
持久化与权限
always 为 false 且允许模型调用(平台默认)。该技能不请求持久系统存在,也不尝试修改其他技能或系统范围设置。
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/1/31

Initial release - Security-first skill vetting for AI agents

● 无害

安装命令 点击复制

官方npx clawhub@latest install skill-vetter
镜像加速npx clawhub@latest install skill-vetter --registry https://cn.clawhub-mirror.com

技能文档

Security-first vetting protocol for AI agent skills. Never install a skill without vetting it first.

When to Use

  • Before installing any skill from ClawdHub
  • Before running skills from GitHub repos
  • When evaluating skills shared by other agents
  • Anytime you're asked to install unknown code

Vetting Protocol

Step 1: Source Check

Questions to answer:
  • [ ] Where did this skill come from?
  • [ ] Is the author known/reputable?
  • [ ] How many downloads/stars does it have?
  • [ ] When was it last updated?
  • [ ] Are there reviews from other agents?

Step 2: Code Review (MANDATORY)

Read ALL files in the skill. Check for these RED FLAGS:

🚨 REJECT IMMEDIATELY IF YOU SEE:
─────────────────────────────────────────
• curl/wget to unknown URLs
• Sends data to external servers
• Requests credentials/tokens/API keys
• Reads ~/.ssh, ~/.aws, ~/.config without clear reason
• Accesses MEMORY.md, USER.md, SOUL.md, IDENTITY.md
• Uses base64 decode on anything
• Uses eval() or exec() with external input
• Modifies system files outside workspace
• Installs packages without listing them
• Network calls to IPs instead of domains
• Obfuscated code (compressed, encoded, minified)
• Requests elevated/sudo permissions
• Accesses browser cookies/sessions
• Touches credential files
─────────────────────────────────────────

Step 3: Permission Scope

Evaluate:
  • [ ] What files does it need to read?
  • [ ] What files does it need to write?
  • [ ] What commands does it run?
  • [ ] Does it need network access? To where?
  • [ ] Is the scope minimal for its stated purpose?

Step 4: Risk Classification

Risk LevelExamplesAction
🟢 LOWNotes, weather, formattingBasic review, install OK
🟡 MEDIUMFile ops, browser, APIsFull code review required
🔴 HIGHCredentials, trading, systemHuman approval required
⛔ EXTREMESecurity configs, root accessDo NOT install

Output Format

After vetting, produce this report:

SKILL VETTING REPORT
═══════════════════════════════════════
Skill: [name]
Source: [ClawdHub / GitHub / other]
Author: [username]
Version: [version]
───────────────────────────────────────
METRICS:
• Downloads/Stars: [count]
• Last Updated: [date]
• Files Reviewed: [count]
───────────────────────────────────────
RED FLAGS: [None / List them]

PERMISSIONS NEEDED: • Files: [list or "None"] • Network: [list or "None"] • Commands: [list or "None"] ─────────────────────────────────────── RISK LEVEL: [🟢 LOW / 🟡 MEDIUM / 🔴 HIGH / ⛔ EXTREME]

VERDICT: [✅ SAFE TO INSTALL / ⚠️ INSTALL WITH CAUTION / ❌ DO NOT INSTALL]

NOTES: [Any observations] ═══════════════════════════════════════

Quick Vet Commands

For GitHub-hosted skills:

# Check repo stats
curl -s "https://api.github.com/repos/OWNER/REPO" | jq '{stars: .stargazers_count, forks: .forks_count, updated: .updated_at}'

# List skill files curl -s "https://api.github.com/repos/OWNER/REPO/contents/skills/SKILL_NAME" | jq '.[].name'

# Fetch and review SKILL.md curl -s "https://raw.githubusercontent.com/OWNER/REPO/main/skills/SKILL_NAME/SKILL.md"

Trust Hierarchy

  • Official OpenClaw skills → Lower scrutiny (still review)
  • High-star repos (1000+) → Moderate scrutiny
  • Known authors → Moderate scrutiny
  • New/unknown sources → Maximum scrutiny
  • Skills requesting credentials → Human approval always

Remember

  • No skill is worth compromising security
  • When in doubt, don't install
  • Ask your human for high-risk decisions
  • Document what you vet for future reference

Paranoia is a feature. 🔒🦀

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务