Claude-skill-registry cargo-log-parser
Parse and filter cargo build logs to extract errors, warnings, and diagnostics with regex-based filtering. Use when debugging Rust projects, analyzing cargo build output, filtering errors by file path or message pattern, or helping users understand compilation failures. Triggers on cargo build errors, rustc diagnostics, Rust compilation issues, or requests to parse .log files from cargo.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cargo-log-parser" ~/.claude/skills/majiayu000-claude-skill-registry-cargo-log-parser && rm -rf "$T"
manifest:
skills/data/cargo-log-parser/SKILL.mdsource content
Cargo Log Parser
Parse cargo build logs to extract and filter errors/warnings with precise log boundaries.
Quick Start
# From file python scripts/cargo_log_parser.py build.log --errors # From stdin (pipe from cargo) cargo build 2>&1 | python scripts/cargo_log_parser.py --errors
Key Filters
| Flag | Purpose | Example |
|---|---|---|
| Errors only | |
| Warnings only | |
| Filter by file path regex | |
| Filter by message regex | |
| Filter by error code | |
Output Modes
| Flag | Output Style |
|---|---|
| (default) | Detailed LLM-friendly format with context |
| Compact one-line-per-diagnostic |
| Original log text for matches only |
| Structured JSON output |
| Include raw log text in output |
Common Patterns
# Errors in test files only python scripts/cargo_log_parser.py build.log --errors --file "tests/.*" # Find "not found" errors python scripts/cargo_log_parser.py build.log --errors --message "cannot find|not found" # All E04xx errors (name resolution) python scripts/cargo_log_parser.py build.log --code "E04\d\d" # Group errors by file python scripts/cargo_log_parser.py build.log --errors --group-by-file # Group by error code python scripts/cargo_log_parser.py build.log --errors --group-by-code # Quick summary python scripts/cargo_log_parser.py build.log --summary
Python API
from cargo_log_parser import CargoLogParser, LogQuery, DiagnosticLevel parser = CargoLogParser() parsed = parser.parse_file("build.log") query = LogQuery(parsed) # Filter errors errors = query.find_errors(file_pattern=r"tests/.*", message_pattern=r"cannot find") # Get exact log boundaries for error in errors: bounds = query.get_error_boundaries(error) print(f"Lines {bounds['line_start']}-{bounds['line_end']}") print(bounds['raw_text']) # Group and analyze by_file = query.group_by_file(level=DiagnosticLevel.ERROR) by_code = query.group_by_code()
Regex Reference
| Pattern | Matches |
|---|---|
| Test files |
| Source files |
| Any mod.rs |
| Borrow checker errors |
| Name resolution errors |
| Unused warnings |