Skip to content

CLI interface for MoltCheck, the security scanner for the Moltbot ecosystem.

Notifications You must be signed in to change notification settings

moltcheck/moltcheck-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

3 Commits
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

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

About

CLI interface for MoltCheck, the security scanner for the Moltbot ecosystem.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published