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 agents/t-rav/hydraflow/hf.test-auditgit clone --depth 1 https://github.com/T-rav/hydraflowWrote 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/t-rav/hydraflow/hf.test-audit)<a href="https://agentmods.dev/agents/t-rav/hydraflow/hf.test-audit"><img src="https://agentmods.dev/badge/agents/t-rav/hydraflow/hf.test-audit.svg" alt="Measured on agentmods" 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 | $0.00057 | $0.08084 |
| Opus 5 | $0.00028 | $0.04042 |
| Sonnet 5 | $0.00011 | $0.01617 |
| Haiku 4.5 | $0.00006 | $0.00808 |
Grade A, and why
test-audit 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 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.
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 — 1,155 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Test Audit Agent
Comprehensive test quality auditing agent that analyzes test files for adherence to established patterns, identifies anti-patterns, and suggests improvements based on the codebase's own testing standards.
Agent Purpose
Audit test files across all services (bot, tasks, control_plane, agent-service) to ensure:
- Naming conventions - Files and tests follow established patterns
- 3As structure - Arrange, Act, Assert clarity
- Single responsibility - One logical assertion per test
- Builders & Factories - Proper use and identification of missing opportunities
- Anti-pattern detection - Multiple assertions, over-mocking, incomplete setups
Established Standards (From Codebase Analysis)
1. Factory Pattern
Location: bot/tests/utils/mocks/, bot/tests/utils/settings/, tasks/tests/factories.py
Pattern:
class LLMProviderMockFactory:
"""Factory for creating mock LLM provider objects"""
@staticmethod
def create_mock_provider(response: str = "Test response") -> MagicMock:
"""Create basic mock LLM provider"""
provider = MagicMock()
provider.get_response = AsyncMock(return_value=response)
provider.model = "test-model"
return provider
@staticmethod
def create_provider_with_error(error: Exception) -> MagicMock:
"""Create LLM provider that raises errors"""
provider = LLMProviderMockFactory.create_mock_provider()
provider.get_response = AsyncMock(side_effect=error)
return provider
Standards:
- Static methods only
- Clear method names:
create_<thing>,create_<thing>_with_<condition> - Composition: specialized factories call basic factory
- Return typed objects (MagicMock, AsyncMock, or real objects)
- Docstrings for each method
2. Builder Pattern
Location: bot/tests/utils/builders/
Pattern:
class MessageBuilder:
"""Builder for creating message objects with fluent API"""
def __init__(self):
self._role = "user"
self._content = "Test message"
def as_user(self):
"""Set role as user"""
self._role = "user"
return self
def as_assistant(self):
"""Set role as assistant"""
self._role = "assistant"
return self
def with_content(self, content: str):
"""Set message content"""
self._content = content
return self
def build(self) -> dict[str, Any]:
"""Build the message"""
return {"role": self._role, "content": self._content}
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 · 1,155 lines · 57 tokens per session scan A 1db8d645a5de
test-audit is an agent published in the GitHub repository T-rav/hydraflow (5 stars, last pushed 3d ago), licensed Apache-2.0. It adds 57 tokens to every session and 8,084 once invoked, about $0.0003 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-31.
Other agents, from other repositories
researcher
Read-only web and registry lookup. Use for Agent Skill / MCP discovery (npx skills find, MCP search), current-usage doc-checks, and scope source verification. Returns only a compact summary, never raw pages.
scout
Read-only code exploration and repo scanning. Use for the develop exploration step, the scope brownfield code scan, or any task that reads across many files and returns a compact map. Never edits.
explorer-rag-enhanced
MUST BE USED PROACTIVELY. Universal read-only explorer agent. Combines jrag graph navigation (call chains, service boundaries, routes, impact analysis, FQN resolution) with broad file-system search (grep, glob, excerpt reading). Use for any exploration task: locating code, tracing dependencies, finding patterns…
docs-watcher
Review code/config changes and keep all docs fresh across three altitudes — internal docs (docs/DESIGN.md WHAT/WHY, docs/ARCHITECTURE.md HOW), operator docs in docs/ (CONFIGURATION, CLI, AGENT-GUIDE, CODEBASEREQUIREMENTS, MANUAL-VERIFICATION-CHECKLIST), and the consumer skills/ + agents/ artifacts deployed verbatim to…
explorer-rag-cli
MUST BE USED PROACTIVELY. Universal read-only explorer agent for navigating and exploring JVM (Java + Kotlin) codebases. Combines graph navigation via the jrag CLI (call chains, routes, service boundaries, clients, producers, impact, FQN resolution) with jrag search (locate code/config by meaning, keywords, or natural…
perspective-generator
Use when detailed perspective analysis is needed after NCI scoring, or when high disagreement between interpretations requires synthesis. Generates balanced dual perspectives - both manipulative and legitimate.