@cleocode/core 2026.4.43 → 2026.4.44
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brain-sqlite.d.ts","sourceRoot":"","sources":["../../src/store/brain-sqlite.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAOH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAGlE,OAAO,KAAK,WAAW,MAAM,mBAAmB,CAAC;AAejD,gFAAgF;AAChF,eAAO,MAAM,oBAAoB,UAAU,CAAC;AAW5C;;GAEG;AACH,wBAAgB,cAAc,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAEnD;AAED;;;;;;GAMG;AACH,wBAAgB,4BAA4B,IAAI,MAAM,CAMrD;
|
|
1
|
+
{"version":3,"file":"brain-sqlite.d.ts","sourceRoot":"","sources":["../../src/store/brain-sqlite.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAOH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAGlE,OAAO,KAAK,WAAW,MAAM,mBAAmB,CAAC;AAejD,gFAAgF;AAChF,eAAO,MAAM,oBAAoB,UAAU,CAAC;AAW5C;;GAEG;AACH,wBAAgB,cAAc,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAEnD;AAED;;;;;;GAMG;AACH,wBAAgB,4BAA4B,IAAI,MAAM,CAMrD;AAmID;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,OAAO,CAE1C;AA0BD;;;;;;;GAOG;AACH,wBAAsB,UAAU,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC,OAAO,WAAW,CAAC,CAAC,CAqE9F;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,IAAI,CAcnC;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,IAAI,IAAI,CAexC;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,IAAI,YAAY,GAAG,IAAI,CAEtD;AAED,YAAY,EAAE,kBAAkB,EAAE,CAAC;AACnC;;GAEG;AACH,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleocode/core",
|
|
3
|
-
"version": "2026.4.
|
|
3
|
+
"version": "2026.4.44",
|
|
4
4
|
"description": "CLEO core business logic kernel — tasks, sessions, memory, orchestration, lifecycle, with bundled SQLite store",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"write-file-atomic": "^7.0.1",
|
|
54
54
|
"yaml": "^2.8.3",
|
|
55
55
|
"zod": "^4.3.6",
|
|
56
|
-
"@cleocode/
|
|
57
|
-
"@cleocode/
|
|
58
|
-
"@cleocode/caamp": "2026.4.
|
|
59
|
-
"@cleocode/
|
|
60
|
-
"@cleocode/
|
|
61
|
-
"@cleocode/nexus": "2026.4.
|
|
62
|
-
"@cleocode/skills": "2026.4.
|
|
56
|
+
"@cleocode/adapters": "2026.4.44",
|
|
57
|
+
"@cleocode/agents": "2026.4.44",
|
|
58
|
+
"@cleocode/caamp": "2026.4.44",
|
|
59
|
+
"@cleocode/contracts": "2026.4.44",
|
|
60
|
+
"@cleocode/lafs": "2026.4.44",
|
|
61
|
+
"@cleocode/nexus": "2026.4.44",
|
|
62
|
+
"@cleocode/skills": "2026.4.44"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
65
|
"node": ">=24.0.0"
|
|
@@ -157,12 +157,7 @@ function runBrainMigrations(
|
|
|
157
157
|
// that is skipped on fresh databases when the migration journal reconciler marks
|
|
158
158
|
// all migrations as applied without actually running them (Scenario 2 race).
|
|
159
159
|
// ensureColumns is idempotent — no-op if the column already exists.
|
|
160
|
-
ensureColumns(
|
|
161
|
-
nativeDb,
|
|
162
|
-
'brain_observations',
|
|
163
|
-
[{ name: 'agent', ddl: 'text' }],
|
|
164
|
-
'brain',
|
|
165
|
-
);
|
|
160
|
+
ensureColumns(nativeDb, 'brain_observations', [{ name: 'agent', ddl: 'text' }], 'brain');
|
|
166
161
|
}
|
|
167
162
|
|
|
168
163
|
/**
|