# GitHub Actions Failure Parser CLI Kit

Small dependency-free Node CLI for turning pasted GitHub Actions logs into a concise Markdown failure report.

## What It Does

- Detects failure/error lines, warning/deprecation signals, and likely commands.
- Prints context excerpts around each failure.
- Produces a handoff-ready Markdown report with next checks.
- Runs locally with no network access and no credentials.

## Usage

```bash
node src/gha-failure-parser.mjs fixtures/sample-actions-log.txt
```

## Test

```bash
node test/parser.test.mjs
```

## Good Fit

- CI failure triage
- Small open-source issue reports
- Pull request handoff notes
- Support/debugging mailbox tasks

## Boundary

This tool does not access GitHub, private repos, secrets, or CI systems. It only reads a log file you provide.
