Skip to content

Latest commit

 

History

History
79 lines (56 loc) · 1.33 KB

File metadata and controls

79 lines (56 loc) · 1.33 KB

MoltCheck CLI

Security scanner for AI agent skills. Scan before you install.

Install

npm install -g moltcheck

Or use directly:

npx moltcheck scan https://github.com/owner/repo

Usage

# 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_key

Pre-Install Hook

Block 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_safe

Now clawdhub install <skill> scans first!

Exit Codes

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

Pricing

  • Free: 3 scans/day
  • Bulk: $10 for 100 scans, $25 for 500 scans

Get an API key: https://moltcheck.com/buy

Links