Skip to content

Commit e87c4a1

Browse files
authored
feat(proof): PROOF9 quality memory system (#422)
## Summary - New `codeframe/core/proof/` package (8 modules, ~1300 lines) - 9 proof gates, SQLite ledger, glitch classification, scope intersection - Evidence system with SHA-256 checksums - Waiver system with expiry tracking - 6 CLI commands: capture, run, list, show, waive, status - 42 new tests, all 1924 existing tests pass ## Validation - Review feedback: 11 items addressed (4 critical, 3 major, 4 deferred) - Demo: All 10 acceptance criteria verified - Tests: 42/42 passing + 1924 existing - CI: All checks green Closes #422
1 parent 933ffcc commit e87c4a1

12 files changed

Lines changed: 2183 additions & 0 deletions

File tree

codeframe/cli/app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5158,6 +5158,10 @@ def templates_apply(
51585158
app.add_typer(hooks_app, name="hooks")
51595159
app.add_typer(stats_app, name="stats")
51605160

5161+
from codeframe.cli.proof_commands import proof_app # noqa: E402
5162+
5163+
app.add_typer(proof_app, name="proof")
5164+
51615165

51625166
# =============================================================================
51635167
# Version command

0 commit comments

Comments
 (0)