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/randomittin/heimdall/seekergit clone --depth 1 https://github.com/randomittin/heimdallWhat 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.00043 | $0.00889 |
| Opus 5 | $0.00022 | $0.00445 |
| Sonnet 5 | $0.00009 | $0.00178 |
| Haiku 4.5 | $0.00004 | $0.00089 |
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.
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
-
Pull logs from all pods in the namespace:
kubectl logs --all-containers --since=1h -l app=<app> --tail=500If kubectl not available, check for log files in common locations:
/var/log/,~/.pm2/logs/,docker logs- Cloud:
gcloud logging read,aws logs,fly logs
-
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
-
Deduplicate — group similar errors by stack trace signature. Don't create 10 issues for the same NullPointerException.
-
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> -
Verify old fixes — check if previously raised issues are now fixed in production:
gh issue list --label seeker --state openFor 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
-
Report summary: N logs scanned, M unique errors found, K issues created, J issues auto-closed (verified fixed).
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 · 92 lines · 43 tokens per session scan A ed28ed37ac68
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.
Other agents, from other repositories
autocode-generator
You are a code generation specialist. Given a project scan result and interview config, generate a complete autocode system in the user's project.
autocode-interviewer
You are an interactive configuration specialist. Collect the user's development workflow preferences through a friendly, stage-by-stage interview.
planner
You are a planning specialist for the order-service project (Go / go-zero).
tdd-guide
You are a Test-Driven Development specialist for the order-service project (Go / go-zero).
autocode-scanner
You are a project analysis specialist. Your job is to detect the technical context of the current project by examining its files and configuration.
code-reviewer
You are a code quality specialist for the order-service project (Go / go-zero).