Security scanner for AI agent skills. Scan before you install.
npm install -g moltcheckOr use directly:
npx moltcheck scan https://github.com/owner/repo# Scan a repository
moltcheck scan https://github.com/owner/repo
# Short form
moltcheck scan owner/repo
# Output as JSON
moltcheck scan owner/repo --json
# Use API key for higher limits
moltcheck scan owner/repo --key mc_your_key
# Or: export MOLTCHECK_API_KEY=mc_your_keyBlock dangerous skills automatically:
# Add to ~/.bashrc or ~/.zshrc
clawdhub_safe() {
if [ "$1" = "install" ]; then
echo "๐ Scanning $2..."
moltcheck scan "$2" --quiet || {
echo "โ Skill failed security check. Aborting install."
return 1
}
fi
clawdhub "$@"
}
alias clawdhub=clawdhub_safeNow clawdhub install <skill> scans first!
| Code | Meaning |
|---|---|
| 0 | Grade A-C (safe) |
| 1 | Grade D (warning) |
| 2 | Grade F (dangerous) |
Use in scripts:
moltcheck scan owner/repo --quiet && clawdhub install skill-name- Free: 3 scans/day
- Bulk: $10 for 100 scans, $25 for 500 scans
Get an API key: https://moltcheck.com/buy
- Website: https://moltcheck.com
- API Docs: https://moltcheck.com/api-docs.md