# Log Analyzer

> Parse application logs, surface error clusters, and summarize failure patterns

- Skill: `stbenjam/log-analyzer` (Agent Skill, multi-file: 5 files)
- Install (CLI): `npx skillmds@latest add stbenjam/log-analyzer`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stbenjam/log-analyzer/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: stbenjam (https://skillmd.com/u/stbenjam)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/stbenjam/log-analyzer

---


# Log Analyzer

Parse application log files, group recurring errors, and produce a
summary of failure patterns.

## When to Use This Skill

Use when the user asks to analyze logs, find recurring errors, or
summarize failures from a log file.

## Implementation Steps

### Step 1: Run the Analyzer

Run the bundled analyzer against the log file:

```bash
python scripts/analyze.py --input app.log --format json
```

### Step 2: Classify Failures

Match each error cluster against the known failure patterns documented
in [the pattern reference](references/patterns.md).

### Step 3: Summarize

Report the top error clusters with counts, first/last occurrence
timestamps, and the matched pattern name.

