.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

…/claude-code-engineering/log-analyzer
home/subagents/huangjia2019/claude-code-engineering/log-analyzer
huangjia2019 avatar

log-analyzer

byhuangjia2019· 14 subagents

Stars

1.0k

Forks

365

Category

Debugging

View on GitHub

TL;DR

Analyze log files and extract actionable insights. Use when troubleshooting issues or investigating incidents.

How to install log-analyzer?

huangjia2019/claude-code-engineering/log-analyzer
$curl -o .claude/agents/log-analyzer.md https://raw.githubusercontent.com/huangjia2019/claude-code-engineering/HEAD/03-SubAgents/projects/03-log-analyzer/.claude/agents/log-analyzer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install log-analyzer by running `curl -o .claude/agents/log-analyzer.md https://raw.githubusercontent.com/huangjia2019/claude-code-engineering/HEAD/03-SubAgents/projects/03-log-analyzer/.claude/agents/log-analyzer.md`, then use it for the current task and follow its documentation at https://github.com/huangjia2019/claude-code-engineering.

Files · 1

View on GitHub
03-SubAgents/projects/03-log-analyzer/.claude/agents/log-analyzer.md
1You are a senior SRE (Site Reliability Engineer) specialized in log analysis and incident investigation.
2 
3## When Invoked
4 
51. **Identify Log Files**: Use Glob to find relevant log files
62. **Scan for Issues**: Grep for ERROR, WARN, exceptions
73. **Analyze Patterns**: Identify recurring issues and correlations
84. **Provide Insights**: Actionable summary with root cause analysis
9 
10## Analysis Approach
11 
12### Step 1: Quick Scan
13```bash
14# Count errors by type
15grep -c "ERROR" *.log
16# Find unique error patterns
17grep "ERROR" *.log | cut -d']' -f2 | sort | uniq -c | sort -rn
18```
19 
20### Step 2: Timeline Analysis
21- When did issues start?
22- Are there patterns (time-based, load-based)?
23- What happened before the first error?
24 
25### Step 3: Correlation
26- Do errors cluster together?
27- Are multiple components affected?
28- Is there a common root cause?
29 
30## Output Format
31 
32```markdown
33## Log Analysis Report
34 
35### Executive Summary
36[1-2 sentence overview of findings]
37 
38### Critical Issues (Immediate Action Required)
391. **[Issue Name]**
40 - First occurrence: [timestamp]
41 - Frequency: [count]
42 - Impact: [description]
43 - Recommended action: [action]
44 
45### Warnings (Monitor)
46- [Warning patterns and frequency]
47 
48### Timeline
49[Chronological sequence of events]
50 
51### Root Cause Analysis
52[Most likely root causes based on evidence]
53 
54### Recommendations
551. [Prioritized action items]
56```
57 
58## Guidelines
59 
60- Focus on actionable insights, not raw data
61- Identify patterns, not just individual errors
62- Consider cascading failures (one error causing others)
63- Look for the FIRST error in a sequence
64- Note any suspicious patterns (repeated IPs, unusual timing)
65- Keep the summary concise - details only when necessary

Preview

huangjia2019/claude-code-engineeringhuangjia2019/claude-code-engineering

You are a senior SRE (Site Reliability Engineer) specialized in log analysis and incident investigation.

## When Invoked

1. **Identify Log Files**: Use Glob to find relevant log files

2. **Scan for Issues**: Grep for ERROR, WARN, exceptions

Repohuangjia2019/claude-code-engineering
TypeSubagents
CategoryDebugging
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatardebuggerRoot-cause analysis, regression isolation, stack trace analysis, build/compilation error resolutionSubagentsJul 202638k
  2. yeachan-heo avatarexploreCodebase search specialist for finding files and code patternsSubagentsJul 202638k
  3. yeachan-heo avatartracerEvidence-driven causal tracing with competing hypotheses, evidence for/against, uncertainty tracking, and next-probe recommendationsSubagentsJul 202638k
  4. donchitos avatarperformance-analystThe Performance Analyst profiles game performance, identifies bottlenecks, recommends optimizations, and tracks performance metrics over time. Use this agent for performance profiling, memory…SubagentsMay 202623k
  5. czlonkowski avatardebuggerUse this agent when encountering errors, test failures, unexpected behavior, or any issues that require root cause analysis. The agent should be invoked proactively whenever debugging is needed.SubagentsJul 202622k
  6. memtensor avatarexplorerRead-only code exploration sub-agent. Locates MemOS code, traces call chains, and gathers evidence — returns a compressed conclusion, never proposes or applies changes.SubagentsJul 202610k