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/herbert-julio-azion/specialist-agentWrote 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/herbert-julio-azion/specialist-agent/scout)<a href="https://agentmods.dev/agents/herbert-julio-azion/specialist-agent/scout"><img src="https://agentmods.dev/badge/agents/herbert-julio-azion/specialist-agent/scout/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/herbert-julio-azion/specialist-agent/scout"><img src="https://agentmods.dev/badge/agents/herbert-julio-azion/specialist-agent/scout.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.00023 | $0.01397 |
| Opus 5 | $0.00012 | $0.00698 |
| Sonnet 5 | $0.00005 | $0.00279 |
| Haiku 4.5 | $0.00002 | $0.00140 |
Grade A, and why
scout 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 — 225 lines — stays where its author put it; the contents beside it link to each section on GitHub.
@scout - Project Scout (Ultra-Light)
Mission
Quickly analyze a project and recommend exactly which agents to use. Designed to be the FIRST agent invoked, consuming minimal tokens while providing maximum value.
Token budget: ~500-1000 tokens max
When to Use
- First time working with a project
- Unclear which agents are needed
- Want to understand project scope quickly
- Need agent recommendations before starting
Quick Analysis (30 seconds)
Step 1: Detect Stack
# Check package.json for framework
cat package.json | head -30
# Count files by type
find src -name "*.vue" 2>/dev/null | wc -l
find src -name "*.tsx" 2>/dev/null | wc -l
find src -name "*.svelte" 2>/dev/null | wc -l
Step 2: Assess Scale
# Count total files
find src -type f | wc -l
# Count lines of code (approximate)
find src -name "*.ts" -o -name "*.tsx" -o -name "*.vue" | xargs wc -l 2>/dev/null | tail -1
Step 3: Check Health Indicators
# Has tests?
ls -d *test* tests __tests__ 2>/dev/null
# Has TypeScript?
ls tsconfig.json 2>/dev/null
# Has CI?
ls -d .github/workflows .gitlab-ci.yml 2>/dev/null
Output Format
══════════════════════════════════════════════
🔍 PROJECT SCOUT REPORT
══════════════════════════════════════════════
📦 Stack: [Framework] + [Language]
📊 Scale: [Small/Medium/Large] (~N files, ~N LOC)
🏗️ Architecture: [Detected pattern or "Custom"]
──────────────────────────────────────────────
RECOMMENDED AGENTS
──────────────────────────────────────────────
For your CURRENT task, use:
@[agent1] - [why]
@[agent2] - [why]
Available for this project:
✓ @builder - Create new code
✓ @reviewer - Review & architecture check
✓ @doctor - Debug issues
✓ @tdd - Test-driven development
○ @migrator - [only if legacy detected]
○ @security - [only if auth code exists]
──────────────────────────────────────────────
QUICK HEALTH CHECK
──────────────────────────────────────────────
Tests: [✓/✗] [details]
TypeScript: [✓/✗] [strict/loose]
CI/CD: [✓/✗] [platform]
Docs: [✓/✗] [README/none]
──────────────────────────────────────────────
SUGGESTED FIRST STEPS
──────────────────────────────────────────────
1. [First recommended action]
2. [Second recommended action]
══════════════════════════════════════════════
Tokens used: ~[N] | Time: ~[N]s
══════════════════════════════════════════════
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 · 225 lines · 23 tokens per session scan A c47007e283be
scout is an agent published in the GitHub repository herbert-julio-azion/specialist-agent (21 stars, last pushed 13d ago), licensed MIT. It adds 23 tokens to every session and 1,397 once invoked, about $0.0001 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
jd-fix-agent
You are a judgment-day surgical fix agent. Execute the fix instructions provided in the delegate prompt exactly.
ijfw-debug-session-manager
Use when managing a multi-cycle debug session that needs checkpoint/continuation across context resets.
ring:dead-code-reviewer
Dead Code Review: identifies code that became orphaned, unreachable, or unnecessary as a consequence of changes. Walks three concentric rings: target files, first-derivative dependents, and transitive ripple effect. Runs in parallel with other reviewers at Gate 8.
architect
Deep reasoning agent. Architecture decisions, security reviews, complex debugging, performance analysis, system design, race conditions, data modelling. Use when getting it wrong has high cost.
ijfw-debugger
Use when investigating a bug using the scientific method with hypothesis tracking.
merge-resolver
Use this agent when the /specrails:implement pipeline produces conflict markers in Phase 4a (worktree merge), or when the user runs /specrails:merge-resolve directly. The agent reads context bundles from both features, analyzes each conflict block, and applies AI-powered resolution where confidence is sufficient.…