Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

skill-publish-vetter技能发布审查员

Agent Skill

skill-publish-vetter 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,081

周安装

85

GitHub Stars

公开资料未说明

下载量

673
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-publish-vetter(技能发布审查员)
来源仓库:https://github.com/weidongkl/skill-publish-vetter
安装命令:
openclaw skills install skill-publish-vetter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-publish-vetter

简介

预先发布 ClawHub 技能的隐私扫描。在发布之前检测令牌、密钥、凭据、.env 机密、个人信息和内部 IP。

SKILL.md

name
skill-publish-vetter
version
1.1.0
description
Pre-publish privacy scan for ClawHub skills. Detects tokens, keys, credentials, .env secrets, personal info, and internal IPs before publishing.

Skill Publish Vetter 🛡️

Pre-publish privacy scan for ClawHub skills.

Every skill must pass this scan before publishing to ClawHub.


When to Use

  • User says "publish skill to ClawHub"
  • User says "upload skill to ClawHub"
  • User says "update skill on ClawHub"
  • Any request to submit a skill to a public registry

Core Principle

Publishing to ClawHub = publicly visible. Any leaked secret is exposed to the world.

Better safe than sorry. Even if the scan passes, always ask for user confirmation before publishing.


Publish Workflow (Mandatory)

When the user requests a publish/upload/update to ClawHub, follow these steps strictly:

Step 1: Identify the Target Skill

  • If the context clearly identifies the target skill, proceed.
  • Otherwise, ask the user which skill to publish.

Step 2: Run the Privacy Scan

The scan script lives in this skill's scripts/publish-check.sh. Run it from this skill's directory:

bash scripts/publish-check.sh <target-skill-directory>

It scans for:

CategoryDetection PatternExample
Tokens / Keyssk-, ghp_, github_pat_, gpg_, xoxb-, glpat-, JWT tokenssk-abc123...
API Keysapi_key, apikey, API_KEY, access_token with actual valuesAPI_KEY=abc123
Passwordspassword, passwd, pwd with non-placeholder valuespassword=mysecret123
Private KeysBEGIN.*PRIVATE KEYPEM private key
Public KeysBEGIN.*PUBLIC KEY, ssh-rsa long stringsSSH public key
.env Values.env files with actual (non-placeholder) assignments.env: DB_PASS=real_password
Hardcoded CredsAuthorization: Bearer with real tokenscurl -H "Authorization: Bearer sk-xxx"
Personal EmailsNon-placeholder, non-org emailszhangsan@gmail.com
Personal Paths/home/username/, /Users/username/ absolute paths/Users/weidongkl/.ssh/id_rsa
Internal IPs192.168.x.x, 10.x.x.x, 172.16-31.x.xhttps://192.168.1.100:8080

Step 3: Output the Full Report

Output the complete scan report to the chat. Do not summarize or omit anything.

Step 4: Secondary Confirmation (Required)

Always ask for confirmation before publishing — even if the scan is clean.

Confirmation message must include:

  1. Skill name
  2. Skill directory path
  3. Full scan report
  4. A clear confirmation prompt

Template:

📋 Publish Confirmation

Skill: <name>
Path: <directory>
Version: <version>
Scan Result: <PASS / ISSUES FOUND>

[Full report here]

Reply "yes" or "confirm" to proceed with publishing, or "cancel" to abort.

Step 5: Wait for User Response

  • "yes" / "confirm" / "ok" / "go" → proceed to Step 6.
  • "cancel" / "no" / "stop" → abort. Do nothing.
  • No response → do not publish. Wait.

Never skip confirmation. Never auto-publish.

Step 6: Publish

After confirmation:

clawhub publish <skill-directory> --slug <slug> --name "<name>" --version "<version>" --changelog "<changelog>"

Ask the user for slug, name, version, and changelog if not provided.

Step 7: Report Result

Tell the user whether publishing succeeded or failed.


Risk Levels

LevelMeaningAction
🚨 CRITICALToken, key, password, private key with actual valuesBlock publish. User must fix first.
⚠️ WARNINGPersonal email, personal path, internal IPRecommend fixing before publishing.
💬 INFOauthor, repository identity fields, metadata env exposureAsk user if intentionally public.

Red Lines (Auto-Block)

If any of these are found, refuse to publish by default:

  1. Any token with actual values (Bearer tokens, API keys, Access tokens)
  2. Any private key content (PEM format, SSH private keys)
  3. Any password/credential with actual values (not placeholders)
  4. .env files with actual configuration values
  5. Hardcoded internal IPs or domains
  6. Base64-encoded sensitive data

If the user explicitly says "publish anyway despite risks", re-confirm once before proceeding.


Placeholder Reference

Use these placeholders when fixing issues:

TypePlaceholder
Tokenyour-api-token / <YOUR_TOKEN>
API Keyyour-api-key / <API_KEY>
Passwordyour-password / <PASSWORD>
Emailyou@example.com / <YOUR_EMAIL>
Usernameyour-username / <USERNAME>
URLhttps://your-server.example.com
IPyour-server-ip

Scan Script

The script is at scripts/publish-check.sh relative to this skill's directory. It uses no absolute paths and works in any installation location.

bash scripts/publish-check.sh <target-skill-directory>

*Safety first, publishing second. Never publish without confirmation.* 🛡️

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.1%
按下载量换算600

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills