• v0.1.0 e7f9f49626

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

    7000pctAUTO released this 2026-02-04 07:05:53 +00:00 | 64 commits to main since this release

    What's Changed

    Initial release of ConfigConvert CLI - a powerful tool for bidirectional conversion between JSON, YAML, TOML, and ENV config formats.

    Features

    • Bidirectional conversion between all supported formats
    • Smart type inference for automatic type detection
    • Syntax validation for all formats
    • Flatten/unflatten nested structures
    • JSON Schema generation
    • Shell completion support (bash, zsh, fish)
    • Rich terminal output
    • Offline operation with minimal dependencies

    Installation

    pip install config-convert-cli
    

    Usage

    # Convert JSON to YAML
    config-convert convert input.json --to yaml -o output.yaml
    
    # Validate syntax
    config-convert validate config.yaml
    
    # Flatten nested structures
    config-convert flatten config.json --output flat.env
    
    # Generate JSON Schema
    config-convert schema config.json -o schema.json
    

    Testing

    • 245+ unit tests passing
    • Full test coverage for all converters
    • Integration tests for CLI commands
    Downloads