You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/PROJECT_STATE.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Project State
2
2
3
-
Last updated: 2026-04-14 (Pro cleanup event status visibility)
3
+
Last updated: 2026-04-14 (Pro proof memory context visibility)
4
4
5
5
## Canonical build docs
6
6
@@ -18,7 +18,7 @@ Strategy, market, pricing, and older design docs still matter, but if there is a
18
18
19
19
## Current Version
20
20
21
-
**v0.19.4** - OSS Pro visibility bundle release: `check --json` exposes installed Pro proof plans and proof recipe summariesat the top level, and `pro status` plus `check --review` render Pro proof-memory, proof memory health, cleanup history, proof recipes, learned proof, learned proof scoring, proof workbench next actions, stale recipe warnings, proof recipe next actions, proof closure summaries, reusable proof commands, reusable evidence paths, and prioritized proof-surface wording when available.
21
+
**v0.19.4** - OSS Pro visibility bundle release: `check --json` exposes installed Pro proof plans, proof recipe summaries, and proof memory context at the top level, and `pro status` plus `check --review` render Pro proof-memory, proof memory health, cleanup history, proof memory context, proof recipes, learned proof, learned proof scoring, proof workbench next actions, stale recipe warnings, proof recipe next actions, proof closure summaries, reusable proof commands, reusable evidence paths, and prioritized proof-surface wording when available.
22
22
23
23
## Goal
24
24
@@ -63,6 +63,7 @@ Pivot from a CLI-only merge gate to an agent-native runtime with system-level au
63
63
- Post-v0.19.4 draft update: Pro status and cleanup resolution now checks the target repo `node_modules` before falling back to the OSS package location, so global OSS installs can still activate a project-local Pro package.
64
64
- Post-v0.19.4 draft update: `check --json` now adds a top-level `proofRecipe` summary when Pro provides learned proof evidence, including memory health penalty and warning fields. `check --review` also renders the Pro-provided memory health penalty and warning without moving scoring logic into OSS.
65
65
- Post-v0.19.4 draft update: agent-guardrails pro status now renders Pro-provided cleanup event history, including cleanup event count, last cleanup time, recent cleanup summary, affected commands, and archive reasons.
66
+
- Post-v0.19.4 draft update: `check --json` now adds a top-level `proofMemoryContext` summary when Pro explains recent proof-memory cleanup. `check --review` renders the same context, archived commands, cleanup reasons, and go-live impact without moving memory-change logic into OSS.
Copy file name to clipboardExpand all lines: tests/check.test.js
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,14 @@ function withMockInstalledPro(callback) {
154
154
" nextAction: 'Run `npm test` first because this repo reused it 2x for this proof pattern (high confidence; reused 2x, fresh recipe).',",
155
155
" command: 'npm test',",
156
156
" confidenceLevel: 'high',",
157
-
" recommendationScore: 95",
157
+
" recommendationScore: 95,",
158
+
" memoryContext: {",
159
+
" state: 'recent_cleanup',",
160
+
" summary: 'Memory changed because cleanup archived 1 stale or failed proof recipe. Affected command: npm test.',",
161
+
" archivedCommands: ['npm test'],",
162
+
" reasons: ['stale 200 days; failed 4x'],",
163
+
" goLiveImpact: 'Current proof recommendations use active trusted proof memory and avoid stale or repeatedly failed recipes that were archived by cleanup.'",
0 commit comments