Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

destructive-command-guard破坏性指挥守卫

Agent Skill

destructive-command-guard 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

815

周安装

35

GitHub Stars

10

下载量

286
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:destructive-command-guard(破坏性指挥守卫)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/destructive-command-guard
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill destructive-command-guard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill destructive-command-guard

简介

destructive-command-guard 是一个高性能的 Claude Code 钩子,用于拦截并阻止执行破坏性命令。

  • 适用于需要防止误操作或恶意命令执行的自动化流程,保障系统安全。
  • 通过白名单机制优先放行安全命令,对已知危险模式进行毫秒级过滤。
  • 安装前需确认运行环境权限,注意其仅拦截特定命令模式,不替代完整安全防护。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Destructive Command Guard

A high-performance Claude Code hook that intercepts and blocks destructive commands before they execute. Written in Rust with SIMD-accelerated filtering via the memchr crate and Aho-Corasick multi-pattern matching for sub-millisecond latency. Assumes agents are well-intentioned but fallible.

Overview

DCG uses a whitelist-first architecture: safe patterns are checked before destructive patterns, and unrecognized commands are allowed by default (fail-safe). This ensures legitimate workflows are never broken while known dangerous patterns are always blocked. DCG runs as a PreToolUse hook in Claude Code, receiving JSON on stdin for each Bash tool invocation and returning exit code 0 (allow) or 2 (block). It only inspects direct Bash tool invocations, not contents of shell scripts.

The processing pipeline has four stages: JSON parsing, command normalization (strips absolute paths like /usr/bin/git), SIMD quick-reject filter (skips regex for commands without git or rm), and pattern matching. The memchr crate provides hardware-accelerated substring search (SSE2/AVX2 on x86_64, NEON on ARM), while Aho-Corasick handles multi-pattern matching in O(n) time regardless of pattern count.

DCG supports 49+ modular security packs organized by category (git, filesystem, databases, containers, Kubernetes, cloud providers, infrastructure tools). Core packs (core.git, core.filesystem) are always enabled; additional packs are configured via ~/.config/dcg/config.toml or the DCG_PACKS environment variable. The dcg scan subcommand can also audit files for destructive command contexts, suitable for CI integration.

DCG is not published on crates.io; it is installed from GitHub via cargo +nightly install or prebuilt binaries for Linux, macOS, and Windows WSL. The threat model assumes agents are well-intentioned but fallible; DCG catches honest mistakes, not adversarial attacks.

Quick Reference

CategoryBlocked Commands
Uncommitted workgit reset --hard, git checkout -- <file>, git restore <file>, git clean -f
Remote historygit push --force / -f, git branch -D
Stashed workgit stash drop, git stash clear
Filesystemrm -rf (outside /tmp, /var/tmp, $TMPDIR)
CategoryAllowed Commands
Safe gitgit status, git log, git diff, git add, git commit, git push, git pull, git fetch, git branch -d, git stash, git stash pop
Safe patternsgit checkout -b, git restore --staged, git clean -n, git push --force-with-lease
Temp dirsrm -rf /tmp/*, rm -rf $TMPDIR/*
SettingValue
Exit code (safe)0
Exit code (blocked)2
Default behaviorAllow (fail-safe)
Pattern prioritySafe checked first, then destructive
Safe patterns34
Destructive patterns16
Pack CategoryExamples
Core (default)core.git, core.filesystem
Databasedatabase.postgresql, database.mysql, database.mongodb
Containerscontainers.docker, containers.compose, containers.podman
Kuberneteskubernetes.kubectl, kubernetes.helm, kubernetes.kustomize
Cloudcloud.aws, cloud.gcp, cloud.azure
Infrastructureinfrastructure.terraform, infrastructure.ansible
Systemsystem.disk, system.permissions, system.services
Otherstrict_git, package_managers
Environment VariablePurpose
DCG_PACKSEnable packs (comma-separated)
DCG_DISABLEDisable specific packs
DCG_VERBOSEVerbose output
DCG_BYPASSBypass DCG entirely (escape hatch)
DCG_COLORColor mode (auto, always, never)
Installation MethodCommand
Quick install`curl -fsSL ".../install.sh" \bash -s -- --easy-mode`
From sourcecargo +nightly install --git https://github.com/Dicklesworthstone/destructive_command_guard destructive_command_guard
Prebuilt binariesLinux x86_64, Linux ARM64, macOS Intel, macOS Apple Silicon, Windows WSL
Processing StageDescription
JSON parsingReads PreToolUse hook input, allows non-Bash tools
NormalizationStrips absolute paths (/usr/bin/git becomes git)
SIMD quick-rejectmemchr substring search skips regex for irrelevant commands
Pattern matchingSafe patterns first, then destructive, default allow

Common Mistakes

MistakeCorrect Pattern
Forgetting to restart Claude Code after adding the hookAlways restart Claude Code after modifying ~/.claude/settings.json
Using DCG_BYPASS=1 permanently in shell profileOnly set bypass temporarily for a single command, then remove it
Assuming DCG inspects commands inside scriptsDCG only inspects direct Bash tool invocations, not contents of ./deploy.sh
Blocking git branch -d (lowercase) thinking it is destructiveLowercase -d is safe (merge-checked); only uppercase -D force-deletes
Not enabling database or cloud packs for production environmentsConfigure relevant packs in ~/.config/dcg/config.toml for your stack
Expecting DCG to stop malicious actorsDCG catches honest mistakes; determined users can always bypass the hook
Running cargo install without nightly toolchainDCG requires Rust nightly (edition 2024); use cargo +nightly install

Delegation

  • Audit which destructive commands an agent session has attempted: Use Explore agent
  • Set up DCG with custom packs for a new project environment: Use Task agent
  • Plan a layered safety architecture combining DCG with other guardrails: Use Plan agent

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.61%
按下载量换算102

Claude

29.68%
按下载量换算85

Cursor

21.39%
按下载量换算61

Gemini CLI

9.88%
按下载量换算28

安全审计

Gen Agent Trust Hub

可疑

Socket

未通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills