@cleocode/cleo 2026.4.97 → 2026.4.99

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.
@@ -0,0 +1,13 @@
1
+ -- T998: NEXUS plasticity columns — Hebbian co-access strengthening.
2
+ -- Adds weight, last_accessed_at, and co_accessed_count to nexus_relations so
3
+ -- edges can be strengthened each time the connected nodes are co-accessed
4
+ -- during retrieval (fire-together-wire-together principle).
5
+ -- Migration is idempotent: ALTER TABLE ADD COLUMN is a no-op if column exists (via ensureColumns band-aid in nexus-sqlite.ts).
6
+
7
+ ALTER TABLE `nexus_relations` ADD COLUMN `weight` real DEFAULT 0.0;
8
+ --> statement-breakpoint
9
+ ALTER TABLE `nexus_relations` ADD COLUMN `last_accessed_at` text;
10
+ --> statement-breakpoint
11
+ ALTER TABLE `nexus_relations` ADD COLUMN `co_accessed_count` integer DEFAULT 0;
12
+ --> statement-breakpoint
13
+ CREATE INDEX IF NOT EXISTS `idx_nexus_relations_last_accessed` ON `nexus_relations` (`last_accessed_at`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/cleo",
3
- "version": "2026.4.97",
3
+ "version": "2026.4.99",
4
4
  "description": "CLEO CLI — the assembled product consuming @cleocode/core",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",
@@ -29,14 +29,14 @@
29
29
  "tree-sitter-ruby": "^0.23.1",
30
30
  "tree-sitter-rust": "0.23.1",
31
31
  "tree-sitter-typescript": "^0.23.2",
32
- "@cleocode/caamp": "2026.4.97",
33
- "@cleocode/cant": "2026.4.97",
34
- "@cleocode/contracts": "2026.4.97",
35
- "@cleocode/core": "2026.4.97",
36
- "@cleocode/lafs": "2026.4.97",
37
- "@cleocode/nexus": "2026.4.97",
38
- "@cleocode/playbooks": "2026.4.97",
39
- "@cleocode/runtime": "2026.4.97"
32
+ "@cleocode/caamp": "2026.4.99",
33
+ "@cleocode/core": "2026.4.99",
34
+ "@cleocode/cant": "2026.4.99",
35
+ "@cleocode/contracts": "2026.4.99",
36
+ "@cleocode/lafs": "2026.4.99",
37
+ "@cleocode/nexus": "2026.4.99",
38
+ "@cleocode/playbooks": "2026.4.99",
39
+ "@cleocode/runtime": "2026.4.99"
40
40
  },
41
41
  "engines": {
42
42
  "node": ">=24.0.0"