返回顶部
d

dcg-guard

Hard-blocks dangerous shell commands (rm -rf, git push --force, etc.) before execution via OpenClaw's before_tool_call plugin hook. Zero noise on safe commands, ~27ms latency. Uses DCG (Dangerous Command Guard) binary.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.1.0
安全检测
已通过
671
下载量
0
收藏
概述
安装方式
版本历史

dcg-guard

# DCG Guard An OpenClaw plugin that hard-blocks dangerous shell commands before they execute. Works on any OpenClaw installation (Windows, macOS, Linux, local, VPS, anywhere). No binary dependencies required. ## What It Does Intercepts every `exec`/`bash` tool call via OpenClaw's `before_tool_call` plugin event. Pipes the command through [DCG](https://github.com/Dicklesworthstone/destructive_command_guard) (Dangerous Command Guard). Safe commands pass silently with zero overhead. Dangerous commands are blocked before execution. **Blocked (Unix):** `rm -rf ~`, `git push --force`, `git reset --hard`, `git clean -fd`, `git branch -D` **Blocked (Windows):** `Remove-Item -Recurse -Force`, `rd /s /q`, `del /s`, `Format-Volume`, `reg delete HKLM` **Allowed:** `ls`, `cat`, `echo`, `git status`, `npm install`, `dir`, `Get-ChildItem` ## Install ```bash # After clawhub install dcg-guard: bash install.sh ``` Or manually: ```bash # 1. Install DCG binary curl -sSL https://raw.githubusercontent.com/Dicklesworthstone/destructive_command_guard/master/install.sh | bash # 2. Link plugin into OpenClaw openclaw plugins install -l /path/to/dcg-guard openclaw gateway restart ``` ## How It Works 1. Agent calls `exec` with a command 2. Plugin intercepts via `before_tool_call` (runs before execution) 3. Command is checked against built-in rules (cross-platform, <1ms, no subprocess) 4. If no built-in match and DCG binary is installed, command is piped to DCG (~27ms) 5. Safe: silent passthrough, agent never knows the plugin exists 6. Dangerous: `{ block: true }` returned to OpenClaw, command never executes **v1.1.0:** Built-in rules work without the DCG binary. DCG binary is optional (adds extra unix rules). Windows fully supported out of the box. ## Security - **No shell interpolation.** Commands are passed to DCG via stdin using `execFileSync` (not `execSync`). No injection risk. - **Fail-open.** If DCG binary is missing or crashes, commands pass through. The plugin never deadlocks your agent. - **Zero dependencies.** Only requires the DCG binary (single Go binary, no runtime deps). ## Configuration Optional, in `openclaw.json` under `plugins.entries.dcg-guard.config`: ```json { "enabled": true, "dcgBin": "/custom/path/to/dcg" } ``` Default DCG path: `~/.local/bin/dcg` Override with env var: `DCG_BIN=/path/to/dcg` ## Agent Instructions (optional) Add to your workspace `AGENTS.md`: ``` When a command is blocked by DCG Guard, do NOT retry it. Ask the user for explicit permission before attempting any alternative. The block exists because the command is destructive or irreversible. ```

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 dcg-guard-1776419995 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 dcg-guard-1776419995 技能

通过命令行安装

skillhub install dcg-guard-1776419995

下载 Zip 包

⬇ 下载 dcg-guard v1.1.0

文件大小: 10.75 KB | 发布时间: 2026-4-17 19:25

v1.1.0 最新 2026-4-17 19:25
Cross-platform: 30+ built-in rules for Windows (PowerShell/cmd) + Unix. No binary dependency required. DCG binary optional as fallback. execFileSync for injection safety.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部