@shahmilsaari/memory-core 1.0.0 → 1.0.2

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/README.md CHANGED
@@ -145,6 +145,17 @@ CREATE INDEX IF NOT EXISTS memories_embedding_idx
145
145
  ON memories USING ivfflat (embedding vector_cosine_ops) WITH (lists = 100);
146
146
  CREATE INDEX IF NOT EXISTS memories_architecture_idx ON memories (architecture);
147
147
  CREATE INDEX IF NOT EXISTS memories_scope_idx ON memories (scope);
148
+
149
+ CREATE TABLE IF NOT EXISTS graph_snapshots (
150
+ id TEXT PRIMARY KEY,
151
+ root_path TEXT NOT NULL,
152
+ created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
153
+ nodes JSONB NOT NULL DEFAULT '[]'::jsonb,
154
+ edges JSONB NOT NULL DEFAULT '[]'::jsonb
155
+ );
156
+
157
+ CREATE INDEX IF NOT EXISTS graph_snapshots_root_path_idx ON graph_snapshots (root_path);
158
+ CREATE INDEX IF NOT EXISTS graph_snapshots_created_at_idx ON graph_snapshots (created_at DESC);
148
159
  ```
149
160
 
150
161
  ---
@@ -177,6 +188,9 @@ New setup-management commands:
177
188
  - `memory-core provider set <provider>` — switch code-checking provider without rerunning `init`
178
189
  - `memory-core model set <model>` — update chat or embedding model from the CLI
179
190
  - `memory-core model doctor` — verify database, Ollama, model installation, and cloud API key presence
191
+ - `memory-core graph build|list|show|diff` — build, inspect, and compare dependency graph snapshots
192
+ - `memory-core graph migrate` — create/update graph snapshot schema in PostgreSQL
193
+ - `memory-core graph doctor` — verify graph backend health (PostgreSQL + file fallback)
180
194
  - `memory-core dashboard` — open the local Svelte command center with live WebSocket updates
181
195
 
182
196
  ## User Documentation
@@ -190,6 +204,7 @@ The public docs focus on how to install, use, configure, reset, and uninstall me
190
204
  - CLI reference: `website/docs/commands.md`
191
205
  - Dashboard and model setup: `website/docs/dashboard.md`, `website/docs/models.md`
192
206
  - Reset and uninstall behavior: `website/docs/cleanup.md`
207
+ - Architecture migration notes: `docs/migration-phase6-cutover.md`
193
208
 
194
209
  The static homepage remains `index.html` at `/`. Public docs are plain static HTML generated from the markdown files in `website/docs/` and served under `/docs/`.
195
210