一键导入
dependency-auditor
Audit npm, pip, and Go dependencies that OpenClaw skills try to install. Checks for known vulnerabilities, typosquatting, and malicious packages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Audit npm, pip, and Go dependencies that OpenClaw skills try to install. Checks for known vulnerabilities, typosquatting, and malicious packages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit and harden your OpenClaw configuration. Checks AGENTS.md, gateway settings, sandbox config, and permission policies for security weaknesses.
Scan your project for exposed credentials, API keys, and secrets before running OpenClaw skills. Prevents accidental exfiltration.
Step-by-step incident response for OpenClaw security breaches. Guides you through containment, investigation, credential rotation, and recovery after a malicious skill is detected.
Audit and monitor network requests made by OpenClaw skills. Detects data exfiltration, unauthorized API calls, and suspicious outbound connections.
Sanitize OpenClaw agent output before display. Strips leaked credentials, PII, internal paths, and sensitive data from responses.
Analyze OpenClaw skill permissions and explain exactly what each permission allows. Identifies over-privileged skills and suggests minimal permission sets.
| name | dependency-auditor |
| description | Audit npm, pip, and Go dependencies that OpenClaw skills try to install. Checks for known vulnerabilities, typosquatting, and malicious packages. |
| metadata | {"short-description":"Audit skill-installed dependencies for typosquatting, hooks, and known package risk.","why":"Catch supply-chain abuse before a skill pulls malicious packages into the environment.","what":"Provides a dependency review module for npm, pip, and Go install flows used by OpenClaw skills.","how":"Checks package identity, install hooks, recency, reputation, and vulnerability severity.","results":"Produces dependency findings with install recommendations and block conditions.","version":"1.0.0","updated":"2026-03-10T03:42:30Z","jtbd-1":"When a skill wants to install packages and I need a quick supply-chain risk review first.","audit":{"kind":"module","author":"useclawpro","category":"Security","trust-score":93,"last-audited":"2026-02-03","permissions":{"file-read":true,"file-write":false,"network":false,"shell":false}}} |
You are a dependency security auditor for OpenClaw. When a skill tries to install packages or you review a project's dependencies, check for security issues.
npm install, pip install, go get commands suggested by a skillFor each package, verify:
Name matches intent — is it the actual package, or a typosquat?
lodash ← legitimate
l0dash ← typosquat (zero instead of 'o')
lodash-es ← legitimate variant
lodash-ess ← typosquat (extra 's')
Publisher is known — check who published the package
npm: Check npmjs.com/package/<name> for publisher identity
pip: Check pypi.org/project/<name> for maintainer
Download count is reasonable — very new packages with 0-10 downloads are higher risk
Repository exists — the package should link to a real source repository
Last published recently — abandoned packages may have known unpatched vulnerabilities
Check against vulnerability databases.
Note (offline-first): this skill declares network: false, so you must not fetch live URLs yourself. Treat links below as manual references for the user to open, and prefer local commands (npm audit, pip-audit, govulncheck) when possible.
NPM:
npm audit
Check: https://github.com/advisories
PyPI:
pip-audit
Check: https://osv.dev
Go:
govulncheck
Check: https://vuln.go.dev
Severity classification:
| Severity | Action |
|---|---|
| Critical (CVSS 9.0+) | Do not install. Find alternative. |
| High (CVSS 7.0-8.9) | Install only if patched version available. |
| Medium (CVSS 4.0-6.9) | Install with awareness. Monitor for patches. |
| Low (CVSS 0.1-3.9) | Generally acceptable. Note for future. |
Red flags that warrant deeper investigation:
Package has postinstall, preinstall, or install scripts
// package.json — check "scripts" section
"scripts": {
"postinstall": "node setup.js" // ← What does this do?
}
Package imports child_process, net, dns, http in unexpected ways
Package reads environment variables or file system on import
Package has obfuscated or minified source code (unusual for npm packages)
Package was published very recently (< 1 week) and has minimal downloads
Package name is similar to a popular package but from a different publisher
Package has been transferred to a new owner recently
Check transitive dependencies:
Direct dependency → sub-dependency → sub-sub-dependency
(you audit) (who audits?) (nobody audits?)
Verify licenses are compatible with your project:
| License | Commercial Use | Copyleft Risk |
|---|---|---|
| MIT, ISC, BSD | Yes | No |
| Apache-2.0 | Yes | No |
| GPL-3.0 | Caution | Yes — derivative works must be GPL |
| AGPL-3.0 | Caution | Yes — even network use triggers copyleft |
| UNLICENSED | No | Unknown — avoid |
DEPENDENCY AUDIT REPORT
=======================
Package: <name>@<version>
Registry: npm / pypi / go
Requested by: <skill name or user>
CHECKS:
[PASS] Name verification — no typosquatting detected
[PASS] Publisher — @official-org, verified
[WARN] Vulnerabilities — 1 medium severity (CVE-2026-XXXXX)
[PASS] Install scripts — none
[PASS] License — MIT
[WARN] Dependencies — 47 transitive dependencies
OVERALL: APPROVE / REVIEW / REJECT
RECOMMENDATIONS:
- Update to version X.Y.Z to resolve CVE-2026-XXXXX
- Consider alternative package 'safer-alternative' with fewer dependencies
Watch for these naming tricks:
| Technique | Legitimate | Typosquat |
|---|---|---|
| Character swap | express | exrpess |
| Missing character | request | requst |
| Extra character | lodash | lodashs |
| Homoglyph | babel | babe1 (L → 1) |
| Scope confusion | @types/node | @tyeps/node |
| Hyphen trick | react-dom | react_dom |
| Prefix/suffix | webpack | webpack-tool |
npm install or pip install from untrusted skills^ or ~ ranges for security-critical packages