I Built a PreToolUse Hook to Require Confirmation for Selected Commands—even in Claude Code's Auto Mode A developer built an open-source tool called PolicyApprovalGate, a PreToolUse hook that enforces rule-based policies before Claude Code or Codex CLI executes Bash commands, denying or requiring confirmation for dangerous operations. The tool, written in Go, checks commands against built-in rules for sensitive paths and risky operations, and records decisions in an audit log. It was created after the developer's Claude Code attempted to run a command explicitly prohibited in CLAUDE.md, highlighting the need for enforceable execution-time rules. I built an open-source tool called PolicyApprovalGate . It uses local rules to deny commands or require confirmation immediately before Claude Code or Codex CLI runs a Bash command. PolicyApprovalGate is a PreToolUse hook that applies rule-based policies before Claude Code or Codex CLI runs a Bash command. It checks dangerous commands, pushes to protected branches, and access to out-of-project or sensitive paths, then records decisions in an audit log. Important PolicyApprovalGate complements your existing permission model, sandbox, and human review. It is neither a complete shell analyzer nor a security boundary, and should not be your only line of defense. The built-in rules are intended to reduce missed, clearly dangerous operations, not to block every possible risk. By default, operations that cannot be classified are delegated to the host's normal approval flow. I started this project after Claude Code tried to run a command that I had explicitly told it not to run in CLAUDE.md . CLAUDE.md is useful for communicating project policies, coding conventions, and preferred workflows. However, writing a prohibition there does not make it an enforceable rule at execution time. The official Claude Code documentation https://code.claude.com/docs/en/memory describes CLAUDE.md as instructions loaded into the model's context, not as a hard enforcement layer. Instructions may not always be followed exactly, especially when they are ambiguous or conflict with one another. This was particularly concerning in Auto mode, which reduces confirmation prompts so that Claude Code can work on longer tasks with fewer interruptions. Auto mode currently uses a separate classifier to review each tool call. It also takes CLAUDE.md into account, but the documentation states that this does not guarantee safety https://code.claude.com/docs/en/permission-modes . I therefore decided to add a separate check that runs every time, immediately before a Bash command is executed. I wanted it to do four things: That is why I built PolicyApprovalGate. PolicyApprovalGate is a policy gate written in Go that runs as a PreToolUse hook for Claude Code and Codex CLI. When an agent attempts to run a Bash command, PolicyApprovalGate receives the tool call through standard input and checks it against the configured rules. It returns one of the following results: | Decision | Claude Code | Codex CLI | |---|---|---| deny | Rejects the command | Rejects the command | ask | Prompts the user for confirmation | Converts the result to deny because standalone ask is not supported | | No decision | Delegates to the normal approval flow | Delegates to the normal approval flow | PolicyApprovalGate never executes the command itself. It only inspects the command string and paths, then returns a decision to the host. The built-in rules check operations such as: / or the current user's home directory .env files, SSH keys, credential files, and other sensitive pathsPolicyApprovalGate parses shell syntax with mvdan.cc/sh rather than relying solely on simple regular expressions. This allows it to track cases such as the following where possible: cd /tmp && rm -rf target env and command git -C cp -t or install --target-directory However, PolicyApprovalGate is not a complete shell interpreter. Unsupported syntax and operations that cannot be determined statically are delegated to the host's normal approval flow by default. Preventing commands from modifying or deleting data is only part of the problem. It is equally important to avoid letting the agent read secrets into its context. PolicyApprovalGate's built-in configuration treats paths such as the following as sensitive paths : .env files and their variants .ssh directories and SSH keys .pem , .p12 , .pfx , and .key files .netrc By default, supported Bash commands return ask for reads and deny for writes and deletions. Claude Code asks for confirmation before a read, while Codex CLI converts ask to deny . If you do not want these files to be read even after confirmation, keep the existing patterns generated by policygate init and change sensitive paths.policy.read to deny in ~/.policygate/config.yaml : sensitive paths: policy: - read: "ask" + read: "deny" write: "deny" delete: "deny" After changing the setting, you can use evaluate to check the decision without reading the actual file: policygate check-config policygate evaluate --host claude --command 'cat ~/.ssh/id rsa' There is an important limitation: PolicyApprovalGate only evaluates Bash tool calls. It does not inspect direct reads performed through Claude Code's Read , Grep , or Glob tools. Nor can it prevent every read performed through unsupported commands or arbitrary child processes. To prevent Claude Code's own file tools from reading sensitive files under your home directory, configure the standard permissions.deny rules as well: { "permissions": { "deny": "Read ~/.ssh/ ", "Read ~/.aws/ ", "Read ~/.gnupg/ ", "Read ~/.config/gh/ ", "Read /.env " } } The Claude Code permissions documentation https://code.claude.com/docs/en/permissions read-and-edit explains that Read deny rules apply not only to built-in file tools but also to Bash file commands that Claude Code recognizes, including cat , head , tail , and sed . They do not cover arbitrary subprocesses, such as Python or Node.js programs that access files directly. If every child process must be restricted at the OS level, combine these controls with Claude Code's sandbox filesystem restrictions, a container, or a dedicated operating-system user. In other words, the responsibilities are divided across these layers: permissions.deny to block Claude Code's built-in file tools and recognized Bash file commands sensitive paths to confirm or deny access by supported Bash commands, providing an additional shared layer for Claude Code and Codex CLIPolicyApprovalGate does not completely protect secrets on its own. It is an additional layer designed to work alongside existing permission controls. PolicyApprovalGate stores its configuration in YAML. For example, you can add an ask rule when you always want confirmation before git push : ask: - pattern: ' ^| ;&| \s /\S / ?git\s+push\b' reason: "Confirm before pushing to a remote" When this rule matches in Claude Code, the PreToolUse hook returns ask . According to the Claude Code Hooks documentation https://code.claude.com/docs/en/hooks pretooluse-decision-control , an ask result from a PreToolUse hook forces a confirmation prompt even in Auto mode, so the classifier cannot silently approve the command. A deny result rejects the command itself. Codex CLI does not support a standalone ask decision from PreToolUse. PolicyApprovalGate therefore converts ask to deny when invoked with --host codex , choosing the safer behavior instead of allowing the command to proceed without confirmation. At the time of writing, PolicyApprovalGate does not yet have a tagged release, so build it from the repository: git clone https://github.com/nobuo-miura/PolicyApprovalGate.git cd PolicyApprovalGate go build -o policygate ./cmd/policygate sudo install -m 0755 policygate /usr/local/bin/policygate Create the configuration file: policygate init policygate check-config The evaluate command lets you check the decision without executing the command being evaluated: policygate evaluate --host claude --command 'rm -rf /' It returns a deny decision as JSON. For readability, the example below is formatted and omits the matched by field included in the actual output: { "decision": "deny", "reason": "Recursive force-delete of / or $HOME", "source": "deny rule" } Instead of enabling the hook immediately after changing the configuration, you can first use check-config and evaluate to verify that it produces the intended decisions. Add the PreToolUse hook to .claude/settings.json : { "hooks": { "PreToolUse": { "matcher": "Bash", "hooks": { "type": "command", "command": "/usr/local/bin/policygate --host claude" } } } } If you are not ready to let the hook block commands, start in observe mode and review only the decisions and audit log: { "type": "command", "command": "/usr/local/bin/policygate observe --host claude" } Add the hook to ~/.codex/config.toml : hooks.PreToolUse matcher = "^Bash$" hooks.PreToolUse.hooks type = "command" command = "/usr/local/bin/policygate --host codex" After registering it, run /hooks in Codex, review the displayed hook, and trust it. Hooks that have not been trusted, or that have changed since they were trusted, are not executed. If you only use Claude Code and need to reliably block a simple command or path, the standard permissions.deny rules should be your first choice. Managed settings are also available when an organization needs to enforce these rules. PolicyApprovalGate is intended for cases such as: You do not have to choose one or the other. PolicyApprovalGate is intended to be layered onto the areas where it is needed while retaining the host's standard permission controls and sandbox. PolicyApprovalGate is a defense-in-depth guardrail, not a security boundary. It is not a replacement for remote branch protection, OS permissions, sandboxing, or human review. Writing a prohibition in CLAUDE.md and mechanically enforcing a rule immediately before execution serve different purposes. You can use CLAUDE.md to communicate everyday development policies, while a PreToolUse hook checks hard boundaries such as “never execute this command” or “always ask before doing this.” PolicyApprovalGate brings this two-layer approach to both Claude Code and Codex CLI. PolicyApprovalGate is a PreToolUse hook that applies rule-based policies before Claude Code or Codex CLI runs a Bash command. It checks dangerous commands, pushes to protected branches, and access to out-of-project or sensitive paths, then records decisions in an audit log. Important PolicyApprovalGate complements your existing permission model, sandbox, and human review. It is neither a complete shell analyzer nor a security boundary, and should not be your only line of defense. The built-in rules are intended to reduce missed, clearly dangerous operations, not to block every possible risk. By default, operations that cannot be classified are delegated to the host's normal approval flow.