log-reader

A specialist agent for investigating large log files, which are records of events and errors produced by software. It narrows logs by time, severity, text, or request ID before reading relevant sections.

In plain words
What is it for?
Use it to investigate individual incidents, trace requests across files, find repeated errors or warnings, compare normal and abnormal activity, and summarize findings.
Why use it?
It reduces the noise and avoids loading an entire large log into the agent’s working context.

Agent

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.

agentmods
npx agentmods add agents/rileyhilliard/claude-essentials/log-reader
Clone the repo
git clone --depth 1 https://github.com/rileyhilliard/claude-essentials
Per session 47 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 751 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00047 $0.00751
Opus 5 $0.00023 $0.00376
Sonnet 5 $0.00009 $0.00150
Haiku 4.5 $0.00005 $0.00075

Measured 2d ago against content hash 3a6ebb54c236, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

plugins/ce/agents/log-reader.md · 86 lines

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:

  1. Get time window, error text, correlation IDs
  2. Find logs covering that time (Glob)
  3. Time-window grep: grep "2025-12-04T11:" service.log | grep -i "timeout"
  4. Trace by ID: grep "req-abc123" *.log
  5. Expand context: grep -C 10 "req-abc123" app.log

Recurring patterns:

  1. Filter by severity: grep -Ei "error|warn" app.log
  2. 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
    
  3. Exclude known noise
  4. Drill into top patterns with context

Recent activity:

  1. Tail + inline filter: tail -500 app.log | grep -Ei "error|warn"
  2. 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

Read the full file on GitHub · 86 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. 2d ago First seen · 86 lines · 47 tokens per session scan A 3a6ebb54c236

Subscribe to this mod's changes

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.