NoWreck v0.13.0 — CI/CD Integration AstralXVoid / NoWreck A CLI tool that verifies AI coding assistant claims against actual structural changes — catching hallucinated functions, fake calls, and missed modifications before they ship.
NoWreck Deterministic AI Verifier — v0.13.0 NoWreck is a deterministic structural verifier for AI-generated code-change claims.
When an AI describes a code change, NoWreck compares the claims against structural evidence derived by its own scanners — the verifier never asks another AI for an opinion.
Where the evidence comes from depends on the mode: in Pre/Post and Claims modes, from actual before/after repository snapshots; in Prompt Mode, from the model's own proposed diff.
What it catches Hallucinated functions or classes — a claim that something was added when it isn't there Fake internal API calls — a claim… View on GitHub Release date: August 2026 Previous release: v0.12.0 (Provider Consolidation + Scan Caching) Focus: CI/CD integration with machine-readable output formats (SARIF, JUnit) and automated git comparison for pull request verification.
What's new in v0.13.0 SARIF output ✅ SARIF v2.1.0 output for GitHub Code Scanning, SonarQube, and CodeQL. nowreck fix --compare HEAD~1 --format sarif > nowreck.sarif 15 rules defined: Design decisions: JUnit XML output ✅ Standard JUnit XML format for Jenkins, GitLab CI, and Azure Pipelines. nowreck fix --compare HEAD~1 --format junit > nowreck-junit.xml Verdict mapping: --format flag ✅ New --format flag for output format selection: nowreck fix --compare HEAD~1 --format json # JSON nowreck fix --compare HEAD~1 --format sarif # SARIF nowreck fix --compare HEAD~1 --format junit # JUnit Backward compatibility: --json deprecated with warning, still works. --output flag ✅ Write output to file instead of stdout: nowreck fix --compare HEAD~1 --format sarif --output nowreck.sarif --compare flag ✅ Automated git comparison: nowreck fix --compare HEAD~1 # Compare against previous commit nowreck fix --compare main # Compare against main branch nowreck fix --compare abc1234 # Compare against specific commit Supported ref types: commit hash, branch name, tag, HEAD~N syntax.
Implementation: Uses git archive for clean extraction to temp directories.
Automatic cleanup via tempfile.TemporaryDirectory.