hydra-sentinel-scan

hydra-sentinel-scan is an agent for Claude Code from AR6420/Hail_Hydra. It costs 74 tokens per session (1,323 once invoked), scanned A, original, MIT.

A quick checker that looks for broken connections between changed parts of a codebase after edits. It checks references such as imports, exports, function signatures, environment variables, dependencies, and API routes.

In plain words
What is it for?
Use it after code changes to find missing exports, renamed symbols, incorrect paths, missing configuration values, circular dependencies, or changed routes.
Why use it?
It can reveal integration mistakes early, before they become harder to diagnose during testing or deployment.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it after code changes to find missing exports, renamed symbols, incorrect paths, missing configuration values, circular dependencies, or changed routes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ar6420/hail_hydra/hydra-sentinel-scan
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.

Clone the repo
git clone --depth 1 https://github.com/AR6420/Hail_Hydra

Made for: Claude Code.

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 hydra-sentinel-scan

README.md
[![agentmods](https://agentmods.dev/badge/agents/ar6420/hail_hydra/hydra-sentinel-scan/github.svg)](https://agentmods.dev/agents/ar6420/hail_hydra/hydra-sentinel-scan)
Your own site
<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.

agentmods 80×15 button for hydra-sentinel-scan

Your own site · 80×15
<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>
Per session 74 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,323 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00074 $0.01323
Opus 5 $0.00037 $0.00661
Sonnet 5 $0.00015 $0.00265
Haiku 4.5 $0.00007 $0.00132

Measured 10d ago against content hash 16d28042ee68, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

content/agents/hydra-sentinel-scan.md · 136 lines

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.

Read the full file on GitHub · 136 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. 10d ago First seen · 136 lines · 74 tokens per session scan A 16d28042ee68

Subscribe to this mod's changes

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.

Related

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.

joaquimscosta/arkhe-claude-plugins · 37 tokens

_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.

navox-labs/agents · 44 tokens

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…

jonase47/ccpr · 476 tokens

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.

kenspc/kenspc-claude-plugin · 57 tokens

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.

affaan-m/ECC · 48 tokens

network-troubleshooter

Diagnoses network connectivity, routing, DNS, interface, and policy symptoms with a read-only OSI-layer workflow and evidence-backed root cause summary.

affaan-m/ECC · 34 tokens