@lmzhen/dsh-evolution-approval 0.3.21 → 0.3.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -9,7 +9,9 @@ import z from "@deepseek-ai/schemastery";
9
9
  * Hermes-style staged queue: background review/curator writes are stored in
10
10
  * `ctx.evolutionState`, and a human approves or rejects them later. A runner
11
11
  * registry replays the exact mutation without passing through the gate a
12
- * second time. Resolved records are KEPT as audit history.
12
+ * second time. Resolved records are kept as audit history up to
13
+ * PENDING_RESOLVED_CAP (the most recent N; the state provider archives the
14
+ * older ones to pending-state-archive.json).
13
15
  *
14
16
  * @module @lmzhen/dsh-evolution-approval
15
17
  */
@@ -5,7 +5,9 @@
5
5
  * Hermes-style staged queue: background review/curator writes are stored in
6
6
  * `ctx.evolutionState`, and a human approves or rejects them later. A runner
7
7
  * registry replays the exact mutation without passing through the gate a
8
- * second time. Resolved records are KEPT as audit history.
8
+ * second time. Resolved records are kept as audit history up to
9
+ * PENDING_RESOLVED_CAP (the most recent N; the state provider archives the
10
+ * older ones to pending-state-archive.json).
9
11
  *
10
12
  * @module @lmzhen/dsh-evolution-approval
11
13
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-approval",
3
3
  "description": "Stage/pending approval service for Hermes-style self-evolution writes (community build)",
4
- "version": "0.3.21",
4
+ "version": "0.3.22",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -35,15 +35,15 @@
35
35
  "peerDependencies": {
36
36
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
37
37
  "@deepseek-ai/cordis": "^4.0.1",
38
- "@lmzhen/dsh-evolution-state-storage": "^0.3.21",
39
- "@lmzhen/dsh-evolution-state": "^0.3.21"
38
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.22",
39
+ "@lmzhen/dsh-evolution-state": "^0.3.22"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
43
- "@lmzhen/dsh-evolution-state-storage": "^0.3.21",
44
- "@lmzhen/dsh-evolution-state": "^0.3.21",
45
- "@lmzhen/dsh-evolution-io": "^0.3.21",
46
- "@lmzhen/dsh-evolution-io-node": "^0.3.21",
47
- "@lmzhen/dsh-evolution-state-json": "^0.3.21"
43
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.22",
44
+ "@lmzhen/dsh-evolution-state": "^0.3.22",
45
+ "@lmzhen/dsh-evolution-io": "^0.3.22",
46
+ "@lmzhen/dsh-evolution-io-node": "^0.3.22",
47
+ "@lmzhen/dsh-evolution-state-json": "^0.3.22"
48
48
  }
49
49
  }