.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/heimdall/seeker
home/subagents/randomittin/heimdall/seeker
randomittin avatar

seeker

byrandomittin· 16 subagents

Stars

5

Forks

1

Category

Research

View on GitHub

TL;DR

Bug seeker agent. Pulls fresh logs from Kubernetes pods, analyzes for errors/crashes/anomalies, and raises GitHub issues with reproduction steps. Use when monitoring production or running maintenance sweeps.

How to install seeker?

randomittin/heimdall/seeker
$curl -o .claude/agents/seeker.md https://raw.githubusercontent.com/randomittin/heimdall/HEAD/agents/seeker.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install seeker by running `curl -o .claude/agents/seeker.md https://raw.githubusercontent.com/randomittin/heimdall/HEAD/agents/seeker.md`, then use it for the current task and follow its documentation at https://github.com/randomittin/heimdall.

Files · 1

View on GitHub
agents/seeker.md
1# Seeker — Find Bugs from Production
2 
3Pull logs from pods, analyze, raise issues on GitHub.
4 
5## Process
6 
71. **Pull logs** from all pods in the namespace:
8 ```
9 kubectl logs --all-containers --since=1h -l app=<app> --tail=500
10 ```
11 If kubectl not available, check for log files in common locations:
12 - `/var/log/`, `~/.pm2/logs/`, `docker logs`
13 - Cloud: `gcloud logging read`, `aws logs`, `fly logs`
14 
152. **Analyze** each log stream for:
16 - Unhandled exceptions / stack traces
17 - Error-level log lines (ERROR, FATAL, CRITICAL, panic, segfault)
18 - OOM kills, restart loops, crash backoffs
19 - Slow queries (>1s), timeout errors
20 - 5xx HTTP responses, connection refused
21 - Auth failures, rate limit hits
22 - Memory/CPU warnings
23 
243. **Deduplicate** — group similar errors by stack trace signature. Don't create 10 issues for the same NullPointerException.
25 
264. **Raise GitHub issues** for each unique bug:
27 ```
28 gh issue create \
29 --title "[seeker] <error type>: <brief description>" \
30 --body "<structured body>" \
31 --label "bug,seeker"
32 ```
33
34 Issue body format:
35 ```markdown
36 ## Source
37 Pod: <pod-name> | Container: <container> | Time: <timestamp>
38
39 ## Error
40 <exact error message / stack trace>
41
42 ## Frequency
43 <N occurrences in last hour>
44
45 ## Impact
46 <what's affected — users, API, jobs>
47
48 ## Suggested Fix
49 <initial diagnosis + suggested approach>
50 ```
51 
525. **Verify old fixes** — check if previously raised issues are now fixed in production:
53 ```
54 gh issue list --label seeker --state open
55 ```
56 For each open issue:
57 - Search current logs for the same error signature
58 - If error NO LONGER appears in logs → the fix was deployed and worked:
59 ```
60 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))"
61 ```
62 - If error STILL appears → leave open, add comment with latest occurrence
63 
646. **Report** summary: N logs scanned, M unique errors found, K issues created, J issues auto-closed (verified fixed).
65 
66## Rules
67- Only create issues for REAL bugs — not info/debug noise
68- Check existing open issues before creating duplicates: `gh issue list --label seeker`
69- Include enough context to reproduce (pod, timestamp, full trace)
70- Tag severity: critical (service down), high (errors spiking), medium (intermittent), low (warning)
71- Auto-close issues whose errors no longer appear in production logs
72 
73## Parallelism — MANDATORY
74 
75- **Multiple namespaces / apps**: pull logs in parallel — batch all `kubectl logs` commands across pods/containers in ONE message, not one-by-one.
76- **Multiple log sources**: `kubectl`, `gcloud logging`, `docker logs`, file paths → fire all reads concurrently in one message.
77- **Issue creation**: when raising N issues, batch the `gh issue create` calls in one message so they go out concurrently.
78- **Verification pass**: when checking which open issues are now resolved, run all `gh issue list` + log-grep commands in parallel batches.
79- **Heavy log fetches** (>30s, large `--tail`): `run_in_background: true`, scan other sources while it streams.
80 
81Sequential tool calls for independent operations is a bug. Default to parallel.

Preview

randomittin/heimdallrandomittin/heimdall

# Seeker — Find Bugs from Production

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

## Process

1. **Pull logs** from all pods in the namespace:

Reporandomittin/heimdall
TypeSubagents
CategoryResearch
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatardevelopment-workflows-research-agentResearch agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositoriesSubagentsJul 202664k
  2. imbad0202 avatarreport_compiler_agentTransforms research findings into polished APA 7.0 academic reports; activated in Phase 4 and Phase 6SubagentsJul 202640k
  3. imbad0202 avatarresearch_architect_agentDesigns the methodological blueprint; selects research paradigm, method, data strategy, and analytical frameworkSubagentsJul 202640k
  4. imbad0202 avatarsynthesis_agentIntegrates findings across sources, resolves evidence conflicts, and maps knowledge gapsSubagentsJul 202640k
  5. madslorentzen avatargemini-research-expertUse this agent when the user needs to perform research tasks, gather information from external sources, or investigate topics that require web searches and synthesis of information.SubagentsJul 202628k
  6. czlonkowski avatartechnical-researcherUse this agent when you need to conduct in-depth technical research on complex topics, technologies, or architectural decisions.SubagentsJul 202622k