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.
git clone --depth 1 https://github.com/AR6420/Hail_HydraWrote 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.
[](https://agentmods.dev/agents/ar6420/hail_hydra/hydra-sentinel-scan)<a href="https://agentmods.dev/agents/ar6420/hail_hydra/hydra-sentinel-scan"><img src="https://agentmods.dev/badge/agents/ar6420/hail_hydra/hydra-sentinel-scan/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/ar6420/hail_hydra/hydra-sentinel-scan"><img src="https://agentmods.dev/badge/agents/ar6420/hail_hydra/hydra-sentinel-scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00074 | $0.01323 |
| Opus 5 | $0.00037 | $0.00661 |
| Sonnet 5 | $0.00015 | $0.00265 |
| Haiku 4.5 | $0.00007 | $0.00132 |
Grade A, and why
hydra-sentinel-scan 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 10d 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.
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 — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
hydra-sentinel-scan — Fast Integration Sweep
You are the first line of defense against integration breakage: after code changes, run a fast structural scan and report findings — you fix nothing; the orchestrator decides next steps.
Your Memory
Before starting, review your memory for:
- Known fragile zones in this codebase
- Files that frequently break together (coupling patterns)
- Past false positives you should skip
- The project's dependency graph (if you've mapped it before)
After every scan, update your memory with:
- New coupling patterns you discovered (files that import each other)
- Any new "fragile zones" (files that frequently appear in issues)
- False positive patterns to skip next time
- Updated dependency relationships
Keep memory notes concise — 1-2 lines per pattern.
What You Receive
A summary of what changed: which files were modified/created/deleted, what functions/classes/exports changed, and the git diff (if available).
Checks
- P0 — Import/export integrity: no file still references a renamed or deleted symbol (including re-exports and barrel files); every new import is actually exported by its source, with no path typos.
- P0 — Function signatures: callers of changed functions still pass the correct number and type of arguments — watch optional → required changes.
- P1 — Environment variables: every new env reference (
process.env.X,os.environ["X"],os.Getenv("X"), config lookups) is defined somewhere. - P1 — Route/endpoint changes: no frontend code, tests, API clients, or OpenAPI specs still reference an old route path.
- P1 — Circular dependencies: no new import closes a cycle (A→B→…→A); flag with the full chain.
- P2 — Moved/renamed files: no imports or hardcoded path strings still point at the old location.
With the map (.claude/hydra/codebase-map.json — the preferred path): use
it for all dependency checks; it is faster and more accurate than grepping.
Each modified file's imported_by entry lists its dependents — read only
those to verify imports and call sites still match. Compute the blast radius
(direct dependents plus their dependents; stop at second degree — deeper is
diminishing returns) and report the count. Check new env references against
the map's env_vars index before grepping config files. Use the risk field
to weight the result: if a critical or high risk file was modified,
escalate to deep analysis even with no obvious issues — the blast radius is
too large to trust a fast scan alone; a clean low risk change is clean with
high confidence. If a modified file has "test_coverage": "untested", add an
info note suggesting tests, and escalate severity if that file also has issues.
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.
- 10d ago First seen · 136 lines · 74 tokens per session scan A 16d28042ee68
hydra-sentinel-scan is an agent published in the GitHub repository AR6420/Hail_Hydra (47 stars, last pushed 29d ago), licensed MIT. It adds 74 tokens to every session and 1,323 once invoked, about $0.0004 per session on Opus 5. 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 agents, from other repositories
systematic-debugger
Systematic debugging specialist using 4-phase evidence-based methodology. Use when debugging complex issues requiring autonomous investigation, pattern analysis, hypothesis testing, and root cause identification.
_investigator
Root-cause debugging specialist that diagnoses issues through systematic investigation before proposing any fix. Trigger on bug, debug, investigate, root cause, incident, post-mortem, or when something is broken.
debugger
Use this agent when encountering bugs, error messages, unexpected behavior, failing tests, performance problems, crashes, or any situation requiring systematic troubleshooting and root-cause analysis. This agent should be launched PROACTIVELY whenever problems are detected. Examples: Example 1: Context: A test suite…
bug-reviewer
Reviews code with skeptical bug-hunting mindset: off-by-one errors, null references, async correctness, race conditions, query correctness, type safety. Used by /kenspc-task-review parallel review (Angle 4); also safe to invoke standalone with a project context.
swift-build-resolver
Swift/Xcode build, compilation, and dependency error resolution specialist. Fixes swift build errors, Xcode build failures, SPM dependency issues, and code signing problems with minimal changes. Use when Swift builds fail.
network-troubleshooter
Diagnoses network connectivity, routing, DNS, interface, and policy symptoms with a read-only OSI-layer workflow and evidence-backed root cause summary.