web-monitor-analyze-log

Analyze service error logs and stack tracebacks to identify root causes and propose code fixes.

26|Updated Apr 23, 2026
One-click install
npx skills add https://github.com/yjzhang2003/oh-my-feishu --skill web-monitor-analyze-log
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: web-monitor-analyze-log
Source: https://github.com/yjzhang2003/oh-my-feishu/tree/main/workspace/.claude/skills/web-monitor-analyze-log
Command: npx skills add https://github.com/yjzhang2003/oh-my-feishu --skill web-monitor-analyze-log

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines the debugging process by automatically parsing complex service logs and tracebacks to pinpoint the root cause of failures.

Core Features & Use Cases

  • Traceback Parsing: Automatically identifies exception types, error messages, and the specific file locations causing crashes.
  • Contextual Analysis: Reads surrounding code lines to provide immediate insight into the logic that triggered the error.
  • Use Case: When a production service throws a 500 error, provide the log file path to this Skill to receive a concise summary of the root cause and a suggested code fix.

Quick Start

Use the web-monitor-analyze-log skill to analyze the error traceback found in the file app-error.log.

Frequently Asked Questions about web-monitor-analyze-log

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the root cause of a backend service error from a stack traceback?

You can analyze a stack traceback to find the root cause by parsing exception types and error messages, then reading surrounding source code lines to understand the logic that triggered the failure.

What is the best way to diagnose production incident 500 errors using log files?

The best way to diagnose production 500 errors is to parse error logs for tracebacks, read surrounding source code for contextual analysis, and generate suggested remediation code snippets to fix the issue.

Can I automatically generate code fixes from error logs and tracebacks?

Yes, you can generate code fixes from error logs by parsing tracebacks to identify the root cause, then analyzing surrounding source code to propose minimal remediation snippets that fix the identified exception.

Do I need access to source code directories to analyze service error logs?

Yes, you need access to source code directories because analyzing service error logs requires reading the surrounding code lines to perform contextual analysis and propose accurate minimal code fixes.

Why does automated error reporting still require manual backend debugging?

Automated error reporting requires manual backend debugging because raw logs lack context, so you must read source code directories to understand the triggering logic and manually implement the necessary code fixes.