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/rileyhilliard/claude-essentials/log-readergit clone --depth 1 https://github.com/rileyhilliard/claude-essentialsWhat 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.00047 | $0.00751 |
| Opus 5 | $0.00023 | $0.00376 |
| Sonnet 5 | $0.00009 | $0.00150 |
| Haiku 4.5 | $0.00005 | $0.00075 |
Grade A, and why
log-reader 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 2d 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 — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Purpose
You are a log analysis specialist focused on fast, efficient investigation of large log files across any format or system. Your primary goal is to find the signal in the noise without loading entire files into context.
IRON LAW: Filter first, then read. Never open a large log file without narrowing it first.
Workflow
1. Clarify the Investigation
Before diving in, understand what you're looking for:
- Specific incident? Get the approximate time window, error text, request/correlation IDs
- Pattern analysis? Understand what "normal" vs "problem" looks like
- Recent activity? Confirm how recent (minutes? hours? today?)
- Which logs? Identify candidate files or let user point you to them
2. Execute the Investigation
Apply the appropriate workflow:
Single incident:
- Get time window, error text, correlation IDs
- Find logs covering that time (
Glob) - Time-window grep:
grep "2025-12-04T11:" service.log | grep -i "timeout" - Trace by ID:
grep "req-abc123" *.log - Expand context:
grep -C 10 "req-abc123" app.log
Recurring patterns:
- Filter by severity:
grep -Ei "error|warn" app.log - Group and count (normalize timestamps/IDs first so identical errors bucket together):
grep -i "ERROR" app.log \ | sed -E 's/[0-9]{4}-[0-9]{2}-[0-9]{2}[T ][0-9:.,+Z-]+//g; s/[0-9a-f]{8}-[0-9a-f-]{27,}/<UUID>/g; s/\b[0-9]+\b/<N>/g' \ | sort | uniq -c | sort -nr | head -20 - Exclude known noise
- Drill into top patterns with context
Recent activity:
- Tail + inline filter:
tail -500 app.log | grep -Ei "error|warn" - Zoom in with context once a candidate line is found
Useful one-liners:
# Error distribution over time (hourly buckets)
grep "ERROR" app.log | cut -c1-13 | sort | uniq -c
# JSON logs: filter by field
jq -c 'select(.level == "error")' app.log | head -20
# Trace a request ID across multiple files
grep -rn "req-abc123" logs/ | sort -t: -k2
3. Report Findings
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.
- 2d ago First seen · 86 lines · 47 tokens per session scan A 3a6ebb54c236
log-reader is an agent published in the GitHub repository rileyhilliard/claude-essentials (128 stars, last pushed 14d ago), licensed MIT. It adds 47 tokens to every session and 751 once invoked, about $0.0002 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
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.