Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add hooks/jamkris/everything-gemini-code/before-toolgit clone --depth 1 https://github.com/Jamkris/everything-gemini-codeGrade A, and why
BeforeTool scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the commands this hook runs, not an audit. A hook is shell that executes on your machine at the event it names, which is why every command in it is printed with what was found.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
{
"BeforeTool": [
{
"matcher": "tool == \"run_shell_command\"",
"hooks": [
{
"type": "command",
"command": "node \"$HOME/.gemini/extensions/everything-gemini-code/scripts/hooks/block-no-verify.js\""
}
],
"description": "Block git --no-verify and core.hooksPath= overrides on commit/push/merge/cherry-pick/rebase/am — protects pre-commit, commit-msg, and pre-push hooks from being skipped"
},
{
"matcher": "tool == \"run_shell_command\"",
"hooks": [
{
"type": "command",
"command": "node \"$HOME/.gemini/extensions/everything-gemini-code/scripts/hooks/pre-bash-dev-server-block.js\""
}
],
"description": "Block dev servers outside tmux — quote/subshell/brace-aware via scripts/hooks/pre-bash-dev-server-block.js. Allows tmux new-session -d -s dev \"npm run dev\" launchers and ignores literal mentions inside quoted strings (git commit messages, echo args, grep patterns)."
},
{
"matcher": "tool == \"run_shell_command\" && tool_input.command matches \"^\\\\s*(npm (install|test|i|ci)|pnpm (install|test|i)|yarn (install|test|add|remove|upgrade)|bun (install|test|i|add|remove)|cargo build|make|docker|pytest|vitest|playwright)\\\\b\"",
"hooks": [
{
"type": "command",
"command": "node -e \"if(!process.env.TMUX){console.error('[Hook] Consider running in tmux for session persistence');console.error('[Hook] tmux new -s dev | tmux attach -t dev')}\""
}
],
"description": "Reminder to use tmux for long-running commands. Anchored at start (^\\s*) so literal mentions inside quoted strings don't trigger it; includes the short forms `pnpm i`, `npm ci`, `bun i`, and `yarn add/remove/upgrade` that the previous matcher silently skipped."
},
{
"matcher": "tool == \"run_shell_command\" && tool_input.command matches \"^\\\\s*git\\\\s+push\\\\b\"",
"hooks": [
{
"tWhat this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 64 lines scan A 60e02cd64023
BeforeTool is a hook published in the GitHub repository Jamkris/everything-gemini-code (87 stars, last pushed 3mo ago), licensed MIT. Its token cost is not measured: a hook is shell that never enters the context. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other hooks, from other repositories
SessionStart
Runs when a session starts, running an inline shell check. From n24q02m/better-code-review-graph.
BeforeTool
Runs on the BeforeTool event for run_gaql tool calls, executing validate-gaql.js via node. From itallstartedwithaidea/google-ads-gemini-extension.
AfterAgent
Runs on the AfterAgent event, executing phase-gate.js and ralph-retry.js via node (2 commands). From richardcb/oh-my-gemini.
SessionStart
Runs when a session starts, running bd prime. From thoreinstein/gemini-beads.
BeforeTool
Runs on the BeforeTool event for write_file, replace, run_shell_command and shell tool calls, executing before-tool.js via node. From richardcb/oh-my-gemini.
AfterTool
Runs on the AfterTool event for write_file and replace tool calls, executing after-tool.js via node. From richardcb/oh-my-gemini.