vallum 0.3.0

A Rust CLI proxy between AI agents and your shell — sanitizes secrets, flags prompt injections, strips ANSI, compresses output, audits commands.
Documentation
name: CI
on:
  push:
    branches: [main]
  pull_request:
jobs:
  build:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v5
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy, rustfmt
      - name: Format check
        run: cargo fmt --all -- --check
      - name: Clippy
        run: cargo clippy --all-targets -- -D warnings
      - name: Test
        run: cargo test --all
      - name: Test (bpe feature)
        run: cargo test --all --features bpe

  msrv:
    name: Minimum supported Rust (1.85)
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - uses: dtolnay/rust-toolchain@1.85.0
      # Check only lib + binary so the runtime MSRV is not held hostage to
      # dev-dependencies (criterion/proptest) that track a newer floor.
      # --locked pins the resolved dependency versions to Cargo.lock so the
      # MSRV check is reproducible and not broken by a newer transitive release.
      - name: Check (no default features)
        run: cargo check --locked --lib --bins
      - name: Check (bpe feature)
        run: cargo check --locked --lib --bins --features bpe