@lmzhen/dsh-evolution-core 0.3.78 → 0.3.79
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-core",
|
|
3
3
|
"description": "Shared stores, prompts, signals and lifecycle logic for the dsh-evolution plugin family (community build)",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.79",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -19,12 +19,14 @@
|
|
|
19
19
|
"default": "./lib/index.js"
|
|
20
20
|
},
|
|
21
21
|
"./package.json": "./package.json",
|
|
22
|
-
"./row-overrides.json": "./row-overrides.json"
|
|
22
|
+
"./row-overrides.json": "./row-overrides.json",
|
|
23
|
+
"./persisted-write-inventory.json": "./persisted-write-inventory.json"
|
|
23
24
|
},
|
|
24
25
|
"files": [
|
|
25
26
|
"lib/*.js",
|
|
26
27
|
"lib/types/**/*.d.ts",
|
|
27
|
-
"row-overrides.json"
|
|
28
|
+
"row-overrides.json",
|
|
29
|
+
"persisted-write-inventory.json"
|
|
28
30
|
],
|
|
29
31
|
"license": "MIT",
|
|
30
32
|
"dependencies": {
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "usage",
|
|
4
|
+
"path": "<skillsRoot>/.usage.json",
|
|
5
|
+
"writer": "evolution-core/src/usage.ts",
|
|
6
|
+
"serializedBy": "transact",
|
|
7
|
+
"marker": "transactIo(io, usageFile(root)",
|
|
8
|
+
"state": [],
|
|
9
|
+
"note": "Skill usage counters. RMW under the IO backend's cross-process lock; the reader side rebuilds from the events log."
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "suppressed",
|
|
13
|
+
"path": "<skillsRoot>/.curator-suppressed.json",
|
|
14
|
+
"writer": "evolution-core/src/usage.ts",
|
|
15
|
+
"serializedBy": "transact",
|
|
16
|
+
"marker": "transactIo(io, suppressedFile(root)",
|
|
17
|
+
"state": [],
|
|
18
|
+
"note": "Curator suppression list (archived bundled skills that must not re-seed)."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "mutations",
|
|
22
|
+
"path": "<skillsRoot>/.mutations.json",
|
|
23
|
+
"writer": "evolution-core/src/mutations.ts",
|
|
24
|
+
"serializedBy": "transact",
|
|
25
|
+
"marker": "transactIo(io, mutationsFile(root)",
|
|
26
|
+
"state": [],
|
|
27
|
+
"note": "Skill mutation audit records (bounded ring)."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "events",
|
|
31
|
+
"path": "<evolutionHome>/evolution/events.json",
|
|
32
|
+
"writer": "evolution-core/src/evolution-events.ts",
|
|
33
|
+
"serializedBy": "transact",
|
|
34
|
+
"marker": "transactIo(io, path",
|
|
35
|
+
"state": [],
|
|
36
|
+
"note": "The rc.68 evolution event log; feedback/skill-usage stats fold it."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "memory",
|
|
40
|
+
"path": "<memoryRoot>/<target>.md",
|
|
41
|
+
"writer": "evolution-core/src/memory-store.ts",
|
|
42
|
+
"serializedBy": "transact",
|
|
43
|
+
"marker": "transactIo(this.io, fileFor(this.root, target)",
|
|
44
|
+
"state": [],
|
|
45
|
+
"note": "Durable memory documents written by the memory tool."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "state",
|
|
49
|
+
"path": "<evolutionHome>/<review|curator|pending>-state.json",
|
|
50
|
+
"writer": "evolution-state-json/src/index.ts",
|
|
51
|
+
"serializedBy": "transact",
|
|
52
|
+
"marker": "transactIo(io(), join(root, file)",
|
|
53
|
+
"state": [
|
|
54
|
+
"evolution-state-json/src/index.ts :: recordGateWarned",
|
|
55
|
+
"evolution-state-json/src/index.ts :: corruptWritten",
|
|
56
|
+
"evolution-state-json/src/index.ts :: corruptWriteWarned"
|
|
57
|
+
],
|
|
58
|
+
"note": "The durable state stack (review/curator/pending). Its three warn sets are per-process de-duplication and are registered under N12."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "curator-reports",
|
|
62
|
+
"path": "<evolutionHome>/reports/curator-*.json",
|
|
63
|
+
"writer": "evolution-curator/src/index.ts",
|
|
64
|
+
"serializedBy": "instance-claim",
|
|
65
|
+
"marker": "claimInstance(",
|
|
66
|
+
"instance": "evolution-curator",
|
|
67
|
+
"state": [],
|
|
68
|
+
"note": "Curator run reports + their retention sweep. No per-file lock: the writer holds the per-home instance claim, so a second curator yields instead of racing the sweep."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "skill-tree",
|
|
72
|
+
"path": "<skillsRoot>/**",
|
|
73
|
+
"writer": "evolution-core/src/skill-store.ts",
|
|
74
|
+
"serializedBy": "write-lock",
|
|
75
|
+
"marker": "LOCK_SUFFIX",
|
|
76
|
+
"state": [],
|
|
77
|
+
"note": "The skill tree itself. Per-target `<path>.lock` claims (pid:token body) guard every byte writer; destructive movers refuse a live lock."
|
|
78
|
+
}
|
|
79
|
+
]
|