rippy-cli 0.1.2

A shell command safety hook for AI coding tools (Claude Code, Cursor, Gemini CLI) — Rust rewrite of Dippy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Git cautious style: ask for all write operations.
# When used as a branch override, suppresses more permissive defaults.

[[rules]]
action = "ask"
command = "git"
subcommands = [
    "add", "commit", "push", "pull", "merge", "rebase", "cherry-pick",
    "checkout", "switch", "stash", "branch", "tag", "am", "apply",
    "rm", "mv", "restore", "revert", "reset", "clean",
    "gc", "prune", "filter-branch", "filter-repo",
    "submodule", "worktree", "init", "clone",
]