GoPlus AgentGuard — AI agent security framework
npx claudepluginhub goplussecurity/agentguardGoPlus AgentGuard — AI agent security guard. Blocks dangerous commands, prevents data leaks, protects secrets. 20 detection rules, runtime action evaluation, trust registry.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Share bugs, ideas, or general feedback.
The essential security guard for every AI agent user.
Your AI agent has full access to your terminal, files, and secrets — but zero security awareness.
A malicious skill or prompt injection can steal your keys, drain your wallet, or wipe your disk.
AgentGuard stops all of that.
AI coding agents can execute any command, read any file, and install any skill — with zero security review. The risks are real:
AgentGuard is the first real-time security layer for AI agents. It automatically scans every new skill, blocks dangerous actions before they execute, runs daily security patrols, and tracks which skill initiated each action. One install, always protected.
Layer 1 — Automatic Guard (hooks): Install once, always protected.
rm -rf /, fork bombs, curl | bash and destructive commands.env, .ssh/, credentials filesLayer 2 — Deep Scan (skill): On-demand security audit with 24 detection rules.
Layer 3 — Daily Patrol (OpenClaw): Automated daily security posture assessment.
npm install @goplus/agentguard
git clone https://github.com/GoPlusSecurity/agentguard.git
cd agentguard && ./setup.sh
claude plugin add /path/to/agentguard
This installs the skill, configures hooks, and sets your protection level.
git clone https://github.com/GoPlusSecurity/agentguard.git
cp -r agentguard/skills/agentguard ~/.claude/skills/agentguard
npm install @goplus/agentguard
Register in your OpenClaw plugin config:
import register from '@goplus/agentguard/openclaw';
export default register;
Or register manually with options:
import { registerOpenClawPlugin } from '@goplus/agentguard';
export default function setup(api) {
registerOpenClawPlugin(api, {
level: 'balanced', // Protection level: strict | balanced | permissive
skipAutoScan: false, // Set true to disable auto-scanning of plugins
});
};
What happens on registration:
toolName → pluginId for initiating skill trackingAgentGuard hooks into OpenClaw's before_tool_call / after_tool_call events to block dangerous actions and log audit events.
Then use /agentguard in your agent: