← 返回 Skills 市场
安全审核标准 - 自动化版
作者
tlcyqj2023
· GitHub ↗
· v1.0.0
· MIT-0
88
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install skill-vetter-2
功能描述
自动扫描 workspace/skills 目录中多种文件,识别风险关键词,生成安全审计报告并给出安装建议。
安全使用建议
This skill appears to do what it claims: it reads files under /workspace/skills, searches for listed risky keywords, and writes a Markdown+JSON report to /workspace. Before installing or enabling it, consider: (1) it will read any secrets stored in /workspace/skills — ensure no sensitive credentials are there or rotate them after a scan; (2) substring matching is brittle: expect false positives (keywords in comments or docs) and some bypasses (obfuscated code or renamed files); (3) the filename-based whitelist can be abused by a file named to appear safe — review whitelist patterns if you rely on automatic exclusions; (4) run the scanner manually in a sandbox first (python3 scan_skills.py) to inspect the produced report and confirm it behaves as expected; (5) because it has read access to your skills directory, prefer running it in an environment with limited permissions or inspect its source (scan_skills.py) yourself — the code is short and readable. If you need, I can list exact lines where the scanner: (a) defines the keyword lists, (b) performs substring matching, and (c) writes the report so you can review them quickly.
功能分析
Type: OpenClaw Skill
Name: skill-vetter-2
Version: 1.0.0
The skill bundle is a security auditing tool designed to scan other skills in the `/workspace/skills/` directory for risky code patterns (e.g., `eval`, `os.system`, network calls). The implementation in `scan_skills.py` performs static string matching and generates local Markdown and JSON reports. There is no evidence of data exfiltration, unauthorized execution, or malicious intent; the behavior is entirely consistent with its stated purpose as a defensive utility.
能力评估
Purpose & Capability
Name/description claim to scan the workspace/skills directory and produce a risk report; the provided scan_skills.py implements exactly that (os.walk over /workspace/skills, substring keyword checks, Markdown+JSON report). There are no extra env variables, binaries, or external services required.
Instruction Scope
Instructions and script read every file under /workspace/skills for listed extensions and produce local reports in /workspace. This is consistent with purpose but means the skill will read any sensitive data stored in that directory. Detection is done by simple substring matching (kw in content) rather than robust parsing, which causes likely false positives (comments/strings) and false negatives (obfuscated patterns). The whitelist logic is filename-based (SAFE_PATTERNS) and can be bypassed by a maliciously named file; the scanner does not attempt deeper static analysis or network sink detection.
Install Mechanism
No install spec and no external downloads. The skill is instruction-only with a bundled Python script that runs in-place. No packages are installed and no archives are fetched.
Credentials
The skill requests no credentials or env vars, which is proportional. However, it requires read access to /workspace/skills (and will open many files), which is necessary for its purpose but means it can see any secrets or tokens present in that directory. The SUSPICIOUS keyword list contains dangerous tokens (e.g., 'eval(', 'os.system') only as literals in the scanner — they are not executed by the scanner itself (expected).
Persistence & Privilege
Flags show always:false and normal autonomous invocation is allowed (platform default). The script writes only its own report files to /workspace and does not modify other skills or agent configuration. No elevated system privileges are requested.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install skill-vetter-2 - 安装完成后,直接呼叫该 Skill 的名称或使用
/skill-vetter-2触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
v1.0.0: 初始版本,支持四级风险检测、白名单、修复建议
元数据
常见问题
安全审核标准 - 自动化版 是什么?
自动扫描 workspace/skills 目录中多种文件,识别风险关键词,生成安全审计报告并给出安装建议。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。
如何安装 安全审核标准 - 自动化版?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install skill-vetter-2」即可一键安装,无需额外配置。
安全审核标准 - 自动化版 是免费的吗?
是的,安全审核标准 - 自动化版 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
安全审核标准 - 自动化版 支持哪些平台?
安全审核标准 - 自动化版 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 安全审核标准 - 自动化版?
由 tlcyqj2023(@tlcyqj2023)开发并维护,当前版本 v1.0.0。
推荐 Skills