@cleocode/cleo 2026.4.70 → 2026.4.73

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,21 @@
1
+ -- T799 BRAIN: Add attachments_json column to brain_observations
2
+ --
3
+ -- Context: T799 Observation × Attachment wiring.
4
+ -- Extends brain_observations to record attachment SHA-256 refs so that
5
+ -- `cleo memory observe --attach <sha256>` can link an observation to one or
6
+ -- more content attachments from the tasks.db attachment store.
7
+ --
8
+ -- Column: attachments_json TEXT NULLABLE
9
+ -- JSON array of SHA-256 hex strings, e.g. '["a1b2...","c3d4..."]'.
10
+ -- Null = no attachments. Non-null = one or more soft refs.
11
+ -- Referential integrity is NOT enforced at the DB level.
12
+ --
13
+ -- Reversibility: this is an additive nullable column with no default.
14
+ -- Rolling back: DROP COLUMN (SQLite 3.35+) or use a schema migration.
15
+
16
+ ALTER TABLE brain_observations ADD COLUMN attachments_json TEXT;
17
+ --> statement-breakpoint
18
+
19
+ CREATE INDEX IF NOT EXISTS `idx_brain_observations_attachments`
20
+ ON `brain_observations` (`attachments_json`)
21
+ WHERE `attachments_json` IS NOT NULL;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/cleo",
3
- "version": "2026.4.70",
3
+ "version": "2026.4.73",
4
4
  "description": "CLEO CLI — the assembled product consuming @cleocode/core",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",
@@ -17,6 +17,7 @@
17
17
  "graphology": "^0.26.0",
18
18
  "graphology-communities-louvain": "^2.0.2",
19
19
  "graphology-types": "^0.24.8",
20
+ "llmtxt": "^2026.4.5",
20
21
  "node-cron": "^4.2.1",
21
22
  "tree-sitter": "0.21.1",
22
23
  "tree-sitter-c": "0.23.2",
@@ -28,13 +29,13 @@
28
29
  "tree-sitter-ruby": "^0.23.1",
29
30
  "tree-sitter-rust": "0.23.1",
30
31
  "tree-sitter-typescript": "^0.23.2",
31
- "@cleocode/caamp": "2026.4.70",
32
- "@cleocode/cant": "2026.4.70",
33
- "@cleocode/core": "2026.4.70",
34
- "@cleocode/lafs": "2026.4.70",
35
- "@cleocode/contracts": "2026.4.70",
36
- "@cleocode/nexus": "2026.4.70",
37
- "@cleocode/runtime": "2026.4.70"
32
+ "@cleocode/caamp": "2026.4.73",
33
+ "@cleocode/contracts": "2026.4.73",
34
+ "@cleocode/lafs": "2026.4.73",
35
+ "@cleocode/core": "2026.4.73",
36
+ "@cleocode/cant": "2026.4.73",
37
+ "@cleocode/nexus": "2026.4.73",
38
+ "@cleocode/runtime": "2026.4.73"
38
39
  },
39
40
  "engines": {
40
41
  "node": ">=24.0.0"