parse-error-logs

Parse build, test, and validation logs into structured error data.

1|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/RussianLioN/moltinger --skill parse-error-logs-russianlion
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: parse-error-logs
Source: https://github.com/RussianLioN/moltinger/tree/main/.claude/skills/parse-error-logs
Command: npx skills add https://github.com/RussianLioN/moltinger --skill parse-error-logs-russianlion

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill transforms raw, often cryptic, build, test, and validation logs into structured, actionable data, making it easier to identify and fix issues.

Core Features & Use Cases

  • Error Parsing: Parses output from TypeScript, Jest, npm/pnpm, and general build processes.
  • Structured Data: Extracts details like file, line, column, error code, and message.
  • Use Case: When your CI/CD pipeline fails due to a build error, this Skill can parse the output to pinpoint the exact file and line number causing the problem, speeding up the debugging process.

Quick Start

Use the parse-error-logs skill to parse the following build output into a structured format.

Frequently Asked Questions about parse-error-logs

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

FAQPage Schema
How do I parse TypeScript errors from build logs into structured data?

To parse TypeScript errors from build logs, you process the raw compiler output to extract error details like file, line, column, error code, and message into a structured format for analysis.

Can I extract line numbers and file paths from Jest test failures?

Yes, you can extract line numbers and file paths from Jest test failures. The parsing mechanism processes test logs to isolate the exact file and line number causing the failure, speeding up debugging.

What is the best way to parse npm or pnpm output for CI/CD quality gates?

The best way to parse npm or pnpm output for CI/CD quality gates is to transform the raw build command results into structured data, extracting error severity and type for automated pipeline checks.

Does this error parsing approach work with general build command results?

Yes, this error parsing approach works with general build command results. It processes output from various build and validation processes to pinpoint exact files and columns causing issues.

What specific error details can I extract from CI/CD build logs?

You can extract specific error details from CI/CD build logs including file, line, column, error code, message, severity, and type, transforming cryptic outputs into actionable structured data.

Why do I need to parse build logs instead of reading raw output?

You need to parse build logs because raw output is often cryptic. Parsing transforms this raw data into structured, actionable formats, making it easier to identify exact issues and implement quality gates.