From agi-super-team
Audits OpenClaw configurations for security vulnerabilities, misconfigurations, secret leaks, and over-privileged agents. Produces structured JSON reports with risk scores and remediation steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:ai-shield-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Audit any OpenClaw config for security vulnerabilities, misconfigurations, and best-practice violations. Produces a structured JSON report with risk scores, findings, and remediation steps.
Audit any OpenClaw config for security vulnerabilities, misconfigurations, and best-practice violations. Produces a structured JSON report with risk scores, findings, and remediation steps.
node scripts/shield-audit.sh
Or directly:
node SKILL_DIR/bin/shield.js audit ~/.openclaw/openclaw.json --summary
node SKILL_DIR/bin/shield.js audit <config.json>
node SKILL_DIR/bin/shield.js audit <config.json> --summary # human-readable
cat config.json | node SKILL_DIR/bin/shield.js audit --stdin
node SKILL_DIR/bin/shield.js sanitize <config.json>
const { auditConfig } = require('SKILL_DIR/src/audit');
const config = require('./openclaw.json');
const report = auditConfig(config);
console.log(report.risk_level); // "CRITICAL" | "HIGH" | "MEDIUM" | "LOW"
console.log(report.overall_score); // 0-100
console.log(report.vulnerabilities); // detailed findings
Returns JSON with: risk_level, overall_score (0-100), vulnerabilities[], vulnerability_count, best_practices_compliance, action_recommended, safe_to_deploy, audit_timestamp.
cat ~/.openclaw/openclaw.jsonnode SKILL_DIR/bin/shield.js audit ~/.openclaw/openclaw.json --summarynode SKILL_DIR/bin/shield.js sanitize <file>npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamHost security hardening and risk-tolerance configuration for OpenClaw deployments. Runs security audits, firewall/SSH/update hardening, risk posture review, and cron scheduling.
Audits Clawdbot's security configuration by inspecting gateway exposure, authentication, tool access, and file permissions. Teaches Clawdbot to identify hardening opportunities.
Scans Claude Code configuration (.claude/ directory) for security vulnerabilities, misconfigurations, and injection risks using AgentShield.