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

vibe-sanitizer振动消毒剂

Agent Skill

vibe-sanitizer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,120

周安装

134

GitHub Stars

1

下载量

1,093
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:vibe-sanitizer(振动消毒剂)
来源仓库:https://github.com/macoloye/vibe-sanitizer
安装命令:
openclaw skills install vibe-sanitizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install vibe-sanitizer

简介

扫描 Git 仓库中的机密、凭据与敏感文件路径。

  • 适合代码安全与合规审计场景,支持就地清理操作。
  • 自动识别高风险内容并生成修复建议报告。vibe-sanitizer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install vibe-sanitizer。
  • 操作前务必备份,避免误删关键配置文件。

SKILL.md

name
vibe-sanitizer
description
Use this skill when an agent needs to scan a Git repository for secrets, credentials, or machine-specific file paths, then sanitize safe findings in place or export a sanitized shareable copy using the bundled Python source in ./src.
version
1.1.0

vibe-sanitizer

Use this skill to scan a Git repository for secrets, credentials, or machine-specific file paths and make a repository safer before commit, before sharing, or before publishing.

This skill is for local agent workflows in Codex, Claude Code, OpenClaw, and similar coding agents that can read repositories and run shell commands.

When To Use

Use this skill when the user wants to...Recommended action
Scan a repo before commitscan --scope working-tree or scan --scope staged
Audit tracked files or a commitscan --scope tracked or scan --scope commit
Fix safe findings in the original reposanitize --mode in-place
Create a shareable sanitized copyexport --output ...
Check AI-assisted or vibe-coded repos for leaked pathsUse normal scan flow with path detectors enabled

What It Catches

CategoryDetectors
Private materialPEM-style private key blocks
API keys and tokensOpenAI-style keys, AWS access key ids, GitHub tokens, Slack tokens, bearer tokens
Credentials in textURLs with embedded credentials, quoted secret-like assignments
Machine-specific pathsWorkspace paths, home-directory paths, temporary paths, Windows user-directory paths
Finding classMeaning
FixableSafe to rewrite in place
Review-requiredShould be flagged, but not auto-rewritten in the original repo

Runtime Setup

StepCommand
Verify bundled CLIcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli --help
If not in audited repoPass --root {{repo_dir}}
If verification failsConfirm {{skill_dir}}/src/vibe_sanitizer/cli.py exists and python3 is available

Workflow

StepAction
1Confirm the target repository root
2Run the bundled CLI from {{skill_dir}}/src
3Use the narrowest useful scope
4Run scan first
5Summarize findings by file, detector, severity, and fixability
6Never print raw secret values
7Use sanitize --mode in-place only for safe pre-commit cleanup
8Use export when the user wants a separate sanitized copy

Scope Guide

ScopeUse when
working-treeChecking tracked and untracked files that are not ignored
stagedChecking what is about to be committed
trackedAuditing tracked repository files
commitAuditing one specific commit

Commands

TaskCommand
Verify CLIcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli --help
Working tree scancd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli scan --root {{repo_dir}} --scope working-tree
Staged scancd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli scan --root {{repo_dir}} --scope staged
Tracked auditcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli scan --root {{repo_dir}} --scope tracked --format json
Commit auditcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli scan --root {{repo_dir}} --scope commit --commit <sha>
Safe in-place cleanupcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli sanitize --root {{repo_dir}} --scope staged --mode in-place
Shareable exportcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli export --root {{repo_dir}} --scope tracked --output ../safe-share
Starter configcd {{skill_dir}}/src && python3 -m vibe_sanitizer.cli init-config --path {{repo_dir}}/.vibe-sanitizer.yml

Guardrails

RuleRequirement
Secret handlingNever paste full secrets or full local paths into the response
ReportingPrefer masked snippets such as sk-***abcd
ScopePrefer the narrowest scope that answers the request
In-place rewriteDo not auto-rewrite review-required findings unless explicitly requested
ExportDo not export into a directory inside the source repository
Repo modelDo not treat an exported copy as the default replacement for the main repo
Runtime assumptionDo not assume a global vibe_sanitizer install when bundled source exists

Agent Response Style

IncludeAvoid
Scope usedRaw credentials
Counts by severity when usefulFull local machine paths
Grouping by file when usefulUnnecessary command noise
Which findings are fixableImplying review-required findings were auto-fixed
Which findings need manual review

Supported CLI Commands

CommandPurpose
scanReport findings
sanitizeRewrite only safe findings in place
exportCreate a separate sanitized copy
init-configCreate a starter config file

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.08%
按下载量换算941

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills