destructive_command_guard 0.4.3

A Claude Code hook that blocks destructive commands before they execute
Documentation
1
2
3
4
5
6
7
8
9
10
//! Infrastructure pack - protections for `IaC` tool commands.
//!
//! This pack provides protection against destructive infrastructure operations:
//! - `Terraform` (`terraform destroy`, `terraform taint`)
//! - `Ansible` (with dangerous flags)
//! - `Pulumi` (`pulumi destroy`)

pub mod ansible;
pub mod pulumi;
pub mod terraform;