plugins marketplace
← All plugins

bouncer

v1.0.0

A one-file PreToolUse door-guard that bounces destructive Bash commands (rm -rf, DROP TABLE, curl|sh, force-push, device wipes) before they run. Blocks 45/45 known footguns, 0 false positives.

CodexClaude Code

by Karan BansalMIT5updated 1 month ago

Source

git clone https://github.com/karanb192/bouncer

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

bouncer/
├── .codex-plugin/plugin.json
└── .claude-plugin/plugin.json

Manifests2

.codex-plugin/plugin.json
{
  "name": "bouncer",
  "version": "1.0.0",
  "description": "A one-file PreToolUse door-guard that bounces destructive Bash commands (rm -rf, DROP TABLE, curl|sh, force-push, device wipes) before they run. Blocks 45/45 known footguns, 0 false positives.",
  "author": {
    "name": "Karan Bansal",
    "url": "https://github.com/karanb192"
  },
  "homepage": "https://github.com/karanb192/bouncer",
  "repository": "https://github.com/karanb192/bouncer",
  "license": "MIT",
  "keywords": [
    "security",
    "safety",
    "hooks",
    "guardrails",
    "codex",
    "pretooluse"
  ],
  "hooks": "./hooks/bouncer-hooks.json",
  "interface": {
    "displayName": "Bouncer",
    "shortDescription": "Bounces destructive shell commands before they run",
    "longDescription": "A one-file PreToolUse guard that denies destructive Bash commands (rm -rf, DROP TABLE, curl|sh, force-push, device wipes) before Codex runs them. 45/45 known footguns blocked, 0 false positives.",
    "developerName": "Karan Bansal",
    "category": "Security",
    "capabilities": [
      "Lifecycle hooks"
    ],
    "websiteURL": "https://github.com/karanb192/bouncer"
  }
}
.claude-plugin/plugin.json
{
  "name": "bouncer",
  "version": "1.0.0",
  "description": "A one-file PreToolUse door-guard that bounces destructive Bash commands (rm -rf, DROP TABLE, curl|sh, force-push, device wipes) before they run. Blocks 45/45 known footguns, 0 false positives.",
  "author": {
    "name": "Karan Bansal",
    "url": "https://github.com/karanb192"
  },
  "homepage": "https://github.com/karanb192/bouncer",
  "license": "MIT",
  "keywords": [
    "security",
    "safety",
    "hooks",
    "guardrails",
    "claude-code",
    "pretooluse"
  ],
  "hooks": "./hooks/bouncer-hooks.json"
}