claude-ruby-grape-rails hooks-review.instructions.md

claude-ruby-grape-rails hooks-review.instructions.md is an instructions file for GitHub Copilot from slbug/claude-ruby-grape-rails. It costs 2,794 tokens per session, scanned B, original, MIT.

Review instructions for shell and Ruby hook scripts, which run automatically in response to coding-agent events. They cover hardening, safe file handling, deletion protection, and hook output.

In plain words
What is it for?
Use them when reviewing executable hooks, shell libraries, Ruby hooks, or bundled command-line binaries in a plugin.
Why use it?
They help reviewers spot unsafe scripts, accidental data changes, weak error handling, and insecure telemetry files.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/slbug/claude-ruby-grape-rails/hooks-review
Clone the repo
git clone --depth 1 https://github.com/slbug/claude-ruby-grape-rails

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claude-ruby-grape-rails hooks-review.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/slbug/claude-ruby-grape-rails/hooks-review.svg)](https://agentmods.dev/instructions/slbug/claude-ruby-grape-rails/hooks-review)
Your own site
<a href="https://agentmods.dev/instructions/slbug/claude-ruby-grape-rails/hooks-review"><img src="https://agentmods.dev/badge/instructions/slbug/claude-ruby-grape-rails/hooks-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,794 This file is loaded in full into every session.
When invoked 2,794 The same file — it is already loaded in full.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02794 $0.02794
Opus 5 $0.01397 $0.01397
Sonnet 5 $0.00559 $0.00559
Haiku 4.5 $0.00279 $0.00279

Measured 3d ago against content hash 4bfb02a5eb3c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

claude-ruby-grape-rails hooks-review.instructions.md scanned grade B 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 body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletemediumDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- `rm -rf` only for validated `mktemp -d` outputs

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

.github/instructions/hooks-review.instructions.md · 221 lines

How it starts

The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shell Script and Hook Review Rules

Scope: shell hook scripts under plugins/**/hooks/scripts/*.sh, Ruby hook scripts under plugins/**/hooks/scripts/*.rb (e.g. compress-verify-output.rb, skill-discovery-observer.rb), and shipped binaries under plugins/**/bin/*. Shell-specific rules below apply to .sh scripts; Ruby hooks follow the cross-cutting hook conventions (# Policy: header, opt-in env var short-circuit before side effects, file mode 0o600 on telemetry artifacts, symlink-refusal on ${CLAUDE_PLUGIN_DATA} before mkdir_p/writes).

Audience: Agents, Not Humans

Imperative-only. Hook script source code follows normal code-comment conventions — rule applies to markdown review checklist itself.

Shell Hardening

  • All executable hook scripts must use set -o nounset and set -o pipefail
  • Library files (*-lib.sh) sourced by other scripts may omit these since the caller's settings apply
  • Do NOT add set -e / set -o errexit unless the script must abort on any failure. Current strict-abort hooks: block-dangerous-ops.sh, block-out-of-bounds-writes.sh, active-plan-marker.sh. Most hooks intentionally handle failures gracefully — advisory hooks warn/skip, guardrails fail closed via explicit checks, not errexit
  • Use command -v to check for dependencies (jq, grep, etc) before use
  • Use ${var:?} in deletion commands to prevent empty-variable disasters
  • Each script should have a # Policy: comment near the top documenting its failure behavior (advisory, fail-closed, or security-sensitive)
  • Use read_hook_input from workspace-root-lib.sh for stdin JSON parsing
  • Use resolve_workspace_root for safe repo root resolution

Deletion Safety

  • rm -f only for mktemp outputs or exact fixed plugin-owned paths
  • rm -rf only for validated mktemp -d outputs
  • rmdir for expected-empty lock directories
  • For variable-based cleanup, validate the path/prefix first

Hook Output Patterns

  • PostToolUse stdout is verbose-mode only — use exit 2 + stderr to feed messages to Claude
  • SessionStart stdout IS added to Claude's context
  • SubagentStart uses hookSpecificOutput.additionalContext
  • PostToolUseFailure uses hookSpecificOutput.additionalContext
  • PreCompact uses stderr for context reminders; exit 2 blocks compaction during active work/full phases

Read the full file on GitHub · 221 lines

Changes

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.

  1. 3d ago First seen · 221 lines · 2,794 tokens per session scan B 4bfb02a5eb3c

Subscribe to this mod's changes

claude-ruby-grape-rails hooks-review.instructions.md is an instructions file published in the GitHub repository slbug/claude-ruby-grape-rails (7 stars, last pushed 4d ago), licensed MIT. It adds 2,794 tokens to every session, about $0.0140 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.