Install
openclaw skills install gh-skillguardRun a complete security audit on any OpenClaw SKILL.md in one call. Combines malware scanning (SkillScan), permission scope analysis (ScopeCheck), and prompt injection detection (PromptGuard) into a single unified report with a SAFE/CAUTION/DANGEROUS verdict.
openclaw skills install gh-skillguardFull security audit of a SKILL.md — three checks, one call.
uvicorn skillguard.app:app --port 8005
curl -s -X POST http://localhost:8005/v1/audit-skill \
-H "Content-Type: application/json" \
-d "{\"skill_content\": $(cat path/to/SKILL.md | jq -Rs)}" | jq
Returns verdict (SAFE/CAUTION/DANGEROUS), total_findings, and three sub-reports:
One call instead of three. Same price. Combined verdict logic: if the malware scan finds anything, it's DANGEROUS. If only scope or injection issues, it's CAUTION. Clean skill = SAFE.