gatecheck-policy 0.1.0

Policy parsing and semantic validation for gatecheck
Documentation
  • Coverage
  • 66.67%
    4 out of 6 items documented0 out of 3 items with examples
  • Size
  • Source code size: 16.34 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.65 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • EffortlessMetrics/gatecheck
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • EffortlessSteven

gatecheck

Policy gate evaluation over evidence snapshots and receipts.

gatecheck is the neutral gate evaluator for governed change. It reads a checked-in policy, evaluates it against a deterministic evidence snapshot, and emits a stable gate report plus a human-readable summary.

It is deliberately not the spec pipeline, not the diff linter, and not the merge cockpit. It sits between evidence producers and the merge surface.

What it is

  • policy + evidence snapshot → gate report
  • local-first, deterministic, schema-shaped artifacts
  • hexagonal workspace: pure evaluation core, adapters at the edge
  • focused microcrates with one responsibility each
  • BDD-style tests that document observable behavior

Core commands

gatecheck eval   --policy .governance/gates.toml   --snapshot artifacts/gatecheck/snapshot.json   --out artifacts/gatecheck/report.json   --md artifacts/gatecheck/comment.md

gatecheck init --preset conveyor-6 --path .

Build

cargo fmt --all
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspace --all-targets