Install
openclaw skills install openclaw-security-suiteComprehensive security suite for OpenClaw skills. Includes static scanning (AST + keywords) and AI-powered semantic behavior review to detect malicious code.
openclaw skills install openclaw-security-suiteA comprehensive security protection layer for OpenClaw extensions, providing both static analysis and AI-assisted behavioral review.
This suite bundles two core security capabilities:
action: "scan")Analyzes a full skill directory for deterministic threats:
child_process, clusterexec(), spawn()eval(, __proto__, rm -rf/etc/passwd, /.envcurl ... | bashaction: "review")Uses the active LLM context (ctx.llm) to semantically analyze a specific file for hidden threats:
You must specify an action and a path.
Example 1: Static Scan
{
"action": "scan",
"path": "/path/to/skill/directory"
}
Example 2: AI Review
{
"action": "review",
"path": "/path/to/skill/index.ts"
}
Scan Output:
{
"safe": false,
"results": [
{
"file": "index.ts",
"issues": [{ "type": "blocked_module", "module": "child_process" }]
}
]
}
Review Output:
{
"risk_level": "high",
"reason": "Code reads AWS credentials from environment and posts them to an external IP."
}