Security framework for AI agents. Provides code scanning, runtime action evaluation, and trust management.
This project provides a unified Claude Code skill: /agentguard
/agentguard scan <path> — Scan code for security risks (20 detection rules)
/agentguard action <description> — Evaluate runtime action safety (allow/deny/confirm)
/agentguard trust <subcommand> — Manage skill trust levels (lookup/attest/revoke/list)
/agentguard report — View security event audit log
/agentguard config <level> — Set protection level (strict/balanced/permissive)
skills/agentguard/— Claude Code skill definition and supporting filessrc/— TypeScript source (scanner rules, registry, action detectors, MCP server)data/— Registry storage (registry.json)dist/— Compiled JavaScript output
The trust and action subcommands use CLI scripts that require the agentguard package:
cd skills/agentguard/scripts && npm installFor GoPlus API (optional Web3 enhancement for action evaluation):
export GOPLUS_API_KEY=your_key
export GOPLUS_API_SECRET=your_secret