seeker

An agent that examines recent application logs, groups repeated errors, and creates GitHub issues with reproduction details. Kubernetes is a system for running applications in containers, and pods are its running units.

In plain words
What is it for?
Use it during production monitoring or maintenance sweeps to find crashes, exceptions, slow queries, timeouts, failed requests, and resource problems.
Why use it?
It turns scattered production errors into a deduplicated list of actionable bugs instead of requiring manual log inspection.

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/randomittin/heimdall/seeker
Clone the repo
git clone --depth 1 https://github.com/randomittin/heimdall
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 889 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.00043 $0.00889
Opus 5 $0.00022 $0.00445
Sonnet 5 $0.00009 $0.00178
Haiku 4.5 $0.00004 $0.00089

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

Security

Grade A, and why

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

agents/seeker.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Seeker — Find Bugs from Production

Pull logs from pods, analyze, raise issues on GitHub.

Process

  1. Pull logs from all pods in the namespace:

    kubectl logs --all-containers --since=1h -l app=<app> --tail=500
    

    If kubectl not available, check for log files in common locations:

    • /var/log/, ~/.pm2/logs/, docker logs
    • Cloud: gcloud logging read, aws logs, fly logs
  2. Analyze each log stream for:

    • Unhandled exceptions / stack traces
    • Error-level log lines (ERROR, FATAL, CRITICAL, panic, segfault)
    • OOM kills, restart loops, crash backoffs
    • Slow queries (>1s), timeout errors
    • 5xx HTTP responses, connection refused
    • Auth failures, rate limit hits
    • Memory/CPU warnings
  3. Deduplicate — group similar errors by stack trace signature. Don't create 10 issues for the same NullPointerException.

  4. Raise GitHub issues for each unique bug:

    gh issue create \
      --title "[seeker] <error type>: <brief description>" \
      --body "<structured body>" \
      --label "bug,seeker"
    

    Issue body format:

    ## Source
    Pod: <pod-name> | Container: <container> | Time: <timestamp>
    
    ## Error
    <exact error message / stack trace>
    
    ## Frequency
    <N occurrences in last hour>
    
    ## Impact
    <what's affected — users, API, jobs>
    
    ## Suggested Fix
    <initial diagnosis + suggested approach>
    
  5. Verify old fixes — check if previously raised issues are now fixed in production:

    gh issue list --label seeker --state open
    

    For each open issue:

    • Search current logs for the same error signature
    • If error NO LONGER appears in logs → the fix was deployed and worked:
      gh issue close <number> --comment "✅ Verified fixed in production — error no longer appears in pod logs (checked $(date -u +%Y-%m-%dT%H:%M:%SZ))"
      
    • If error STILL appears → leave open, add comment with latest occurrence
  6. Report summary: N logs scanned, M unique errors found, K issues created, J issues auto-closed (verified fixed).

Read the full file on GitHub · 92 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 · 92 lines · 43 tokens per session scan A ed28ed37ac68

Subscribe to this mod's changes

seeker is an agent published in the GitHub repository randomittin/heimdall (5 stars, last pushed 11d ago), licensed MIT. It adds 43 tokens to every session and 889 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-31.