@cleocode/core 2026.4.55 → 2026.4.57
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/dist/index.js +9 -1
- package/dist/index.js.map +2 -2
- package/dist/internal.js +9 -1
- package/dist/internal.js.map +2 -2
- package/dist/memory/edge-types.d.ts +1 -0
- package/dist/memory/edge-types.d.ts.map +1 -1
- package/dist/memory/graph-memory-bridge.d.ts.map +1 -1
- package/dist/store/brain-schema.d.ts +5 -4
- package/dist/store/brain-schema.d.ts.map +1 -1
- package/dist/store/validation-schemas.d.ts +3 -0
- package/dist/store/validation-schemas.d.ts.map +1 -1
- package/migrations/drizzle-nexus/20260412000001_t529-nexus-graph-tables/migration.sql +49 -0
- package/migrations/drizzle-nexus/20260415000001_t622-project-registry-paths/migration.sql +12 -0
- package/package.json +8 -8
- package/src/__tests__/injection-shared.test.ts +7 -3
- package/src/__tests__/schema-management.test.ts +7 -3
- package/src/memory/__tests__/edge-type-enum-coverage.test.ts +93 -0
- package/src/memory/edge-types.ts +2 -0
- package/src/memory/graph-memory-bridge.ts +2 -4
- package/src/skills/orchestrator/__tests__/spawn-tier.test.ts +9 -5
- package/src/store/__tests__/git-checkpoint.test.ts +8 -4
- package/src/store/__tests__/global-salt.test.ts +7 -3
- package/src/store/__tests__/import-logging.test.ts +7 -3
- package/src/store/brain-schema.ts +5 -1
package/dist/index.js
CHANGED
|
@@ -9483,6 +9483,12 @@ var init_brain_schema = __esm({
|
|
|
9483
9483
|
// observation → references → symbol
|
|
9484
9484
|
"modified_by",
|
|
9485
9485
|
// file → modified_by → session
|
|
9486
|
+
"code_reference",
|
|
9487
|
+
// memory node → code_reference → nexus symbol/file (T645)
|
|
9488
|
+
"affects",
|
|
9489
|
+
// observation → affects → symbol/file (impact tracking)
|
|
9490
|
+
"mentions",
|
|
9491
|
+
// observation → mentions → symbol name (weak reference)
|
|
9486
9492
|
// Plasticity (Hebbian + STDP co-retrieval)
|
|
9487
9493
|
"co_retrieved"
|
|
9488
9494
|
// A → co_retrieved → B (Hebbian: frequently retrieved together)
|
|
@@ -42448,7 +42454,9 @@ var init_edge_types = __esm({
|
|
|
42448
42454
|
// Observation → symbol name mention
|
|
42449
42455
|
MENTIONS: "mentions",
|
|
42450
42456
|
// Observation → symbol/file structural link
|
|
42451
|
-
DOCUMENTS: "documents"
|
|
42457
|
+
DOCUMENTS: "documents",
|
|
42458
|
+
// Memory node → nexus symbol/file (T645)
|
|
42459
|
+
CODE_REFERENCE: "code_reference"
|
|
42452
42460
|
};
|
|
42453
42461
|
}
|
|
42454
42462
|
});
|