• v0.1.0 ac98bfff85

    v0.1.0 Initial Release
    Some checks failed
    CI / test (push) Failing after 12s
    Stable

    7000pctAUTO released this 2026-02-01 03:56:58 +00:00 | 48 commits to main since this release

    Initial Release of ErrorFix CLI

    A CLI tool that takes error output from compilers, linters, or build tools and generates actionable fix suggestions using a pattern-matching rule system.

    Features

    • Pattern-based fixes using regex
    • Multi-language support (Python, JavaScript, TypeScript)
    • Extensible YAML/JSON rule definitions
    • Plugin system for community rules
    • Multiple output formats (text, JSON, structured)
    • Pipeline integration with stdin/stdout
    • Offline operation (no network calls)

    Built-in Rules

    • Python errors: SyntaxError, NameError, TypeError, ImportError, etc.
    • JavaScript/TypeScript errors
    • Git, Docker, Make, NPM tool errors

    Installation

    pip install errorfix-cli
    

    Usage

    echo "NameError: name 'foo' is not defined" | errorfix fix
    
    Downloads