Hook Examples
Sample hooks for Grok. Copy to ~/.grok/hooks/ to enable globally, or to <project>/.grok/hooks/ for project-scoped hooks (requires /hooks-trust).
Available Examples
1. Safe Shell Guard (safe-shell.json)
Type: blocking (PreToolUse)
Denies obviously destructive shell commands before they execute:
rm -rf /,sudo rm -rf,mkfs,ddto devices, fork bombs
Install:
mkdir -p ~/.grok/hooks/bin
cp examples/hooks/safe-shell.json ~/.grok/hooks/
cp examples/hooks/bin/safe-shell-guard.sh ~/.grok/hooks/bin/
chmod +x ~/.grok/hooks/bin/safe-shell-guard.sh2. No Recursive Grep (no-recursive-grep.json)
Type: blocking (PreToolUse)
Denies recursive grep invocations in the shell before they execute:
grep -r,grep -R,grep --recursive,grep --dereference-recursive,grep -d recurse, clustered flags (grep -rn,grep -nri), andrgrep
Recursive grep walks an entire directory tree into memory and can OOM-kill the agent process on large repos. The system prompt already steers the model away from this, but a prompt is advisory — this hook makes it a hard, deterministic block. Point the model at the dedicated search tool (ripgrep-backed) instead.
It is careful to avoid false positives: ls -R | grep foo (the -R belongs to ls), grep -e -r file (-r is the pattern), and grep -- -r file are all allowed.
Install:
mkdir -p ~/.grok/hooks/bin
cp examples/hooks/no-recursive-grep.json ~/.grok/hooks/
cp examples/hooks/bin/no-recursive-grep-guard.py ~/.grok/hooks/bin/
chmod +x ~/.grok/hooks/bin/no-recursive-grep-guard.py(Requires python3 on PATH.)
3. Session Audit Log (session-log.json)
Type: passive (SessionStart + SessionEnd)
Appends session metadata to ~/.grok/session-audit.log — event, session ID, cwd, timestamp.
Install:
mkdir -p ~/.grok/hooks/bin
cp examples/hooks/session-log.json ~/.grok/hooks/
cp examples/hooks/bin/session-log.sh ~/.grok/hooks/bin/
chmod +x ~/.grok/hooks/bin/session-log.sh4. Tool Activity Logger (tool-logger.json)
Type: observe-only in this example (PreToolUse + PostToolUse) — logging only; it exits 0 and writes nothing to stdout, so it changes nothing the model sees
Logs all tool calls to ~/.grok/tool-activity.log — tool name, event type, effective tool name, backgrounded status.
Install:
mkdir -p ~/.grok/hooks/bin
cp examples/hooks/tool-logger.json ~/.grok/hooks/
cp examples/hooks/bin/tool-logger.sh ~/.grok/hooks/bin/
chmod +x ~/.grok/hooks/bin/tool-logger.sh5. Stop Gate: verify before finishing (stop-verify.json)
Type: blocking (Stop)
Keeps the agent working until cargo build passes. A Stop hook runs when the agent is about to finish its turn; returning {"decision":"block","reason":"…"} feeds the reason back to the model and runs another round. The built-in cap ends the turn after 8 continuations. The hook sets a 300-second timeout because a timed-out Stop hook fails open and lets the agent stop.
Install:
mkdir -p ~/.grok/hooks/bin
cp examples/hooks/stop-verify.json ~/.grok/hooks/
cp examples/hooks/bin/stop-verify.sh ~/.grok/hooks/bin/
chmod +x ~/.grok/hooks/bin/stop-verify.shFormat
Hook files use the Claude-compatible JSON format:
{
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{ "type": "command", "command": "bin/check.sh", "timeout": 5 }
]
}
]
}
}- Event names:
SessionStart,PreToolUse,PostToolUse,Stop,SubagentStop,SessionEnd(see the user guide for the full set) - Matcher: regex on tool name. Claude names like
Bash,Read,Editare auto-expanded to also match Grok names (run_terminal_cmd,read_file,search_replace) - Timeout: in seconds (default: 5)
- Command: path to script (relative to hook file directory) or inline shell command
Script Contract
Scripts receive the hook event envelope as JSON on stdin and should write a response to stdout:
For tool gates (PreToolUse):
{"decision":"allow"}or
{"decision":"deny","reason":"Explanation for the user"}For stop gates (Stop / SubagentStop): keep the agent working or force it to stop:
{"decision":"block","reason":"Feedback fed back to the model"}{"hookSpecificOutput":{"hookEventName":"Stop","additionalContext":"Non-error feedback"}}{"continue":false,"stopReason":"Shown to the user; overrides any block"}The turn ends after 8 consecutive continuations. The input carries stopHookActive (true once a block has already continued this turn) so a hook can give up.
For PostToolUse: the tool has already run, so nothing is blocked, but stdout decides what the model sees next:
{"decision":"block","reason":"Feedback delivered to the model with the tool result"}{"hookSpecificOutput":{"hookEventName":"PostToolUse","additionalContext":"A note for the model"}}{"hookSpecificOutput":{"hookEventName":"PostToolUse","updatedMCPToolOutput":"[redacted]"}}updatedToolOutput replaces a built-in tool's output and must match that tool's own output shape (the toolResult in the same event); updatedMCPToolOutput replaces an MCP tool's output and is not shape-checked. The scrollback and telemetry keep the original either way. Every hook's block reason and additionalContext are delivered in call order, each naming its hook; only the replacements are last-writer-wins.
Exit codes: 0 = allow / no decision, 2 = deny (PreToolUse), block-stop with stderr as the feedback (Stop/SubagentStop), or stderr fed to the model as feedback (PostToolUse), other = fail-open. Valid decision JSON on stdout wins over the exit code, except that a PostToolUse hook that exits non-zero keeps only its block reason — its context and its replacement are dropped.
For passive hooks (SessionStart, Notification, …): stdout is informational only. Exit 0 for success.
Uninstall
Remove the JSON file from ~/.grok/hooks/. The hook stops running on the next session.