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/bjornjee/agent-dashboard/pre-tool-usegit clone --depth 1 https://github.com/bjornjee/agent-dashboardGrade C, and why
PreToolUse scanned grade C with 1 finding 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 3d ago.
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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
"description": "Block destructive shell commands (rm -rf, git reset --hard, DROP TABLE, etc.)" Copies of this mod
1 near-identical copy found in the catalogue:
- SessionStart — 86% identical, 46 lines differ
What it actually says
{
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/hooks/warn-destructive.js\""
}
],
"description": "Block destructive shell commands (rm -rf, git reset --hard, DROP TABLE, etc.)"
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/hooks/block-main-commit.js\""
}
],
"description": "Block git commit on main/master — require a feature branch"
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/hooks/pr-skill-gate.js\""
}
],
"description": "Block direct gh pr create — require /agent-dashboard:pr"
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/hooks/codex-write-gate.js\""
}
],
"description": "Block codex-companion task without --write (prevents read-only sandbox)"
},
{
"matcher": "*",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/hooks/agent-state-fast.js\"",
"async": true,
"timeout": 3
}
],
"description": "Fast state sync for dashboard (state, permission_mode, current_tool)"
}
]
}What 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.
- 3d ago First seen · 56 lines scan C cfeeda653d7f
PreToolUse is a hook published in the GitHub repository bjornjee/agent-dashboard (21 stars, last pushed 1mo ago), licensed MIT. Its token cost is not measured: a hook is shell that never enters the context. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other hooks, from other repositories
PreToolUse
Runs before the agent uses a tool for Bash tool calls, running an inline shell check. From Kanevry/session-orchestrator.
PreToolUse
Runs before the agent uses a tool for ^(Write, Edit, MultiEdit)$, ^(Glob, Grep)$, ^Read$, ^(Bash, PowerShell)$ and ^Agent$ tool calls, executing gate-hook.mjs and hook-handler.cjs via node (9 commands). From eric-cielo/moflo.
SubagentStop
Runs when a subagent finishes, running an inline shell check. From MostAshraf/ai-sdlc-harness.
Stop
Runs when the agent finishes a response, running an inline shell check. From codician-team/growmos.
PreToolUse
Runs before the agent uses a tool, executing hook.cjs via node. From Cotal-AI/Cotal.
SubagentStop
Runs when a subagent finishes for code-reviewer tool calls, executing require-review-verdict.sh via sh. From vmobifystudio/app-dev-team.