New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

clawvet

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clawvet

Skill vetting & supply chain security for OpenClaw. Scans SKILL.md files for prompt injection, credential theft, RCE, typosquatting, and social engineering.

latest
Source
npmnpm
Version
0.6.3
Version published
Maintainers
1
Created
Source

clawvet

Skill vetting & supply chain security for OpenClaw.

ClawVet scans OpenClaw SKILL.md files for prompt injection, credential theft, remote code execution, typosquatting, and social engineering — before they reach your agent.

Install

npm install -g clawvet

Usage

Scan a local skill

clawvet scan ./my-skill/
clawvet scan ./my-skill/SKILL.md

JSON output (for CI/CD)

clawvet scan ./my-skill/ --format json

Fail on severity threshold

clawvet scan ./my-skill/ --fail-on high
# exits 1 if any high or critical findings

Fetch and scan from ClawHub

clawvet scan weather-forecast --remote

Audit all installed skills

clawvet audit

Watch for new skill installs

clawvet watch --threshold 50

What it detects

ClawVet runs a 6-pass analysis on every skill:

PassWhat it checks
Skill ParserExtracts YAML frontmatter, code blocks, URLs, IPs, domains
Static Analysis54 regex patterns: RCE, reverse shells, credential theft, obfuscation, DNS exfil, privilege escalation
Metadata ValidatorUndeclared binaries, env vars, missing descriptions, invalid semver
Dependency Checkernpx -y auto-install, global npm install, risky packages
Typosquat DetectorLevenshtein distance against popular skills, suspicious naming patterns
Semantic AnalysisAI-powered detection of social engineering & prompt injection (optional)

Risk Scoring

ScoreGradeAction
0-10AApprove
11-25BApprove
26-50CWarn
51-75DWarn
76-100FBlock

CI/CD Integration

# GitHub Actions example
- name: Vet skill
  run: npx clawvet scan ./my-skill --format json --fail-on high

License

MIT

Keywords

openclaw

FAQs

Package last updated on 16 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts