march-cli 0.1.22 → 0.1.23

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,109 +0,0 @@
1
- import { ROOT_NODE_UUID } from "../database.mjs";
2
- import { escapeLikePath } from "./graph-path-utils.mjs";
3
- import {
4
- countPathsForEdge,
5
- insertPath,
6
- } from "./graph-primitives.mjs";
7
-
8
- export function deprecateNodeMemories(db, nodeUuid, successorId = null) {
9
- const conditions = ["node_uuid = ?", "deprecated = 0"];
10
- const params = [nodeUuid];
11
- if (successorId !== null) {
12
- conditions.push("id != ?");
13
- params.push(successorId);
14
- }
15
- const ids = db.prepare(
16
- `SELECT id FROM memories WHERE ${conditions.join(" AND ")}`
17
- ).all(...params).map(r => r.id);
18
-
19
- if (ids.length > 0) {
20
- const placeholders = ids.map(() => "?").join(",");
21
- db.prepare(
22
- `UPDATE memories SET deprecated = 1, migrated_to = ? WHERE id IN (${placeholders})`
23
- ).run(successorId, ...ids);
24
- }
25
- return ids;
26
- }
27
-
28
- export function cascadeCreatePaths(db, nodeUuid, domain, basePath, namespace = "", visited = new Set()) {
29
- if (visited.has(nodeUuid)) return;
30
- visited.add(nodeUuid);
31
- try {
32
- const childEdges = db.prepare(
33
- "SELECT * FROM edges WHERE parent_uuid = ?"
34
- ).all(nodeUuid);
35
- for (const edge of childEdges) {
36
- const childPath = `${basePath}/${edge.name}`;
37
- insertPath(db, namespace, domain, childPath, edge.id, edge.child_uuid);
38
- cascadeCreatePaths(db, edge.child_uuid, domain, childPath, namespace, visited);
39
- }
40
- } finally {
41
- visited.delete(nodeUuid);
42
- }
43
- }
44
-
45
- export function deleteSubtreePaths(db, domain, path, namespace = "") {
46
- const safe = escapeLikePath(path);
47
- const rows = db.prepare(`
48
- SELECT namespace, domain, path, edge_id, node_uuid
49
- FROM paths
50
- WHERE namespace = ? AND domain = ? AND (path = ? OR path LIKE ? ESCAPE '\\')
51
- `).all(namespace, domain, path, `${safe}/%`);
52
-
53
- for (const row of rows) {
54
- db.prepare(
55
- "DELETE FROM paths WHERE namespace = ? AND domain = ? AND path = ?"
56
- ).run(row.namespace, row.domain, row.path);
57
- }
58
- return rows;
59
- }
60
-
61
- export function cascadeDeleteEdge(db, edge) {
62
- const edgePaths = db.prepare(
63
- "SELECT * FROM paths WHERE edge_id = ?"
64
- ).all(edge.id);
65
-
66
- for (const path of edgePaths) {
67
- deleteSubtreePaths(db, path.domain, path.path, path.namespace);
68
- }
69
- db.prepare("DELETE FROM edges WHERE id = ?").run(edge.id);
70
- }
71
-
72
- export function cascadeDeleteNode(db, nodeUuid) {
73
- if (nodeUuid === ROOT_NODE_UUID) return null;
74
-
75
- const edges = db.prepare(
76
- "SELECT * FROM edges WHERE parent_uuid = ? OR child_uuid = ?"
77
- ).all(nodeUuid, nodeUuid);
78
- for (const edge of edges) {
79
- cascadeDeleteEdge(db, edge);
80
- }
81
-
82
- db.prepare("DELETE FROM memories WHERE node_uuid = ?").run(nodeUuid);
83
- db.prepare("DELETE FROM glossary_keywords WHERE node_uuid = ?").run(nodeUuid);
84
- db.prepare("DELETE FROM nodes WHERE uuid = ?").run(nodeUuid);
85
- return { deleted: nodeUuid };
86
- }
87
-
88
- export function gcEdgeIfPathless(db, edge) {
89
- if (countPathsForEdge(db, edge.id) > 0) return null;
90
- db.prepare("DELETE FROM edges WHERE id = ?").run(edge.id);
91
- return { edge_id: edge.id, parent_uuid: edge.parent_uuid, child_uuid: edge.child_uuid };
92
- }
93
-
94
- export function gcNodeSoft(db, nodeUuid) {
95
- if (nodeUuid === ROOT_NODE_UUID) return;
96
-
97
- const row = db.prepare(
98
- "SELECT COUNT(*) AS cnt FROM paths WHERE node_uuid = ?"
99
- ).get(nodeUuid);
100
- if (row.cnt > 0) return;
101
-
102
- const incoming = db.prepare("SELECT * FROM edges WHERE child_uuid = ?").all(nodeUuid);
103
- for (const edge of incoming) gcEdgeIfPathless(db, edge);
104
-
105
- const outgoing = db.prepare("SELECT * FROM edges WHERE parent_uuid = ?").all(nodeUuid);
106
- for (const edge of outgoing) cascadeDeleteEdge(db, edge);
107
-
108
- deprecateNodeMemories(db, nodeUuid);
109
- }
@@ -1,73 +0,0 @@
1
- import { ROOT_NODE_UUID } from "../database.mjs";
2
-
3
- export function getGraphDiagnostics(db, namespace = "", daysStale = 30, maxChildren = 10) {
4
- const cutoff = new Date(Date.now() - daysStale * 86400000).toISOString();
5
-
6
- const allRows = db.prepare(`
7
- SELECT p.domain, p.path, p.node_uuid, n.created_at, n.last_accessed_at,
8
- e.priority, m.id AS memory_id
9
- FROM paths p
10
- JOIN edges e ON p.edge_id = e.id
11
- JOIN nodes n ON n.uuid = e.child_uuid
12
- JOIN memories m ON m.node_uuid = n.uuid AND m.deprecated = 0
13
- WHERE p.namespace = ?
14
- `).all(namespace);
15
-
16
- const staleNodes = {};
17
- for (const row of allRows) {
18
- const effective = row.last_accessed_at ?? row.created_at ?? cutoff;
19
- if (effective >= cutoff) continue;
20
- const staleDays = Math.round((Date.now() - new Date(effective).getTime()) / 86400000);
21
- const key = row.node_uuid;
22
- if (!staleNodes[key] || (row.priority ?? 999) < (staleNodes[key].priority ?? 999)) {
23
- staleNodes[key] = {
24
- uuid: row.node_uuid,
25
- uri: `${row.domain}://${row.path}`,
26
- created_at: row.created_at,
27
- last_accessed_at: row.last_accessed_at,
28
- stale_days: staleDays,
29
- priority: row.priority,
30
- title: row.path.split("/").pop(),
31
- memory_id: row.memory_id,
32
- };
33
- }
34
- }
35
-
36
- const crowdedRows = db.prepare(`
37
- SELECT e.parent_uuid, COUNT(DISTINCT e.child_uuid) AS child_count
38
- FROM edges e
39
- JOIN paths p ON p.edge_id = e.id
40
- WHERE p.namespace = ?
41
- GROUP BY e.parent_uuid
42
- HAVING child_count > ?
43
- `).all(namespace, maxChildren);
44
-
45
- const crowdedParents = {};
46
- for (const row of crowdedRows) {
47
- if (row.parent_uuid === ROOT_NODE_UUID) {
48
- crowdedParents[row.parent_uuid] = {
49
- uuid: row.parent_uuid,
50
- uri: "core://",
51
- title: "(root)",
52
- child_count: row.child_count,
53
- };
54
- } else {
55
- const p = db.prepare(
56
- "SELECT domain, path FROM paths WHERE node_uuid = ? AND namespace = ? LIMIT 1"
57
- ).get(row.parent_uuid, namespace);
58
- if (p) {
59
- crowdedParents[row.parent_uuid] = {
60
- uuid: row.parent_uuid,
61
- uri: `${p.domain}://${p.path}`,
62
- title: p.path.split("/").pop(),
63
- child_count: row.child_count,
64
- };
65
- }
66
- }
67
- }
68
-
69
- return {
70
- stale_nodes: Object.values(staleNodes).sort((a, b) => (a.last_accessed_at ?? a.created_at ?? "").localeCompare(b.last_accessed_at ?? b.created_at ?? "")),
71
- crowded_nodes: Object.values(crowdedParents).sort((a, b) => b.child_count - a.child_count),
72
- };
73
- }
@@ -1,50 +0,0 @@
1
- import { deleteSubtreePaths, gcEdgeIfPathless, gcNodeSoft } from "./graph-cascades.mjs";
2
- import { escapeLikePath, graphUri } from "./graph-path-utils.mjs";
3
- import { resolveGraphPath } from "./graph-primitives.mjs";
4
-
5
- export function removeGraphPath(db, path, domain = "core", namespace = "") {
6
- if (path === "") throw new Error("Cannot remove root path.");
7
-
8
- const target = resolveGraphPath(db, path, domain, namespace);
9
- if (!target) throw new Error(`Path '${graphUri(domain, path)}' not found`);
10
-
11
- const targetNodeUuid = target.node_uuid;
12
- const targetEdge = target.edge;
13
- if (!targetEdge) throw new Error(`Path '${domain}://${path}' has no edge.`);
14
-
15
- const wouldOrphan = findWouldOrphanChildren(db, { path, domain, namespace, targetNodeUuid });
16
- if (wouldOrphan.length > 0) {
17
- const details = wouldOrphan.map(e => `'${e.name}' (${e.child_uuid.slice(0, 8)}...)`).join(", ");
18
- throw new Error(`Cannot remove '${graphUri(domain, path)}': children would become unreachable: ${details}`);
19
- }
20
-
21
- deleteSubtreePaths(db, domain, path, namespace);
22
- gcEdgeIfPathless(db, targetEdge);
23
- gcNodeSoft(db, targetNodeUuid);
24
- return { deleted: graphUri(domain, path) };
25
- }
26
-
27
- function findWouldOrphanChildren(db, { path, domain, namespace, targetNodeUuid }) {
28
- const childEdges = db.prepare("SELECT * FROM edges WHERE parent_uuid = ?").all(targetNodeUuid);
29
- const wouldOrphan = [];
30
- const safe = escapeLikePath(path);
31
-
32
- for (const childEdge of childEdges) {
33
- const surviving = db.prepare(`
34
- SELECT COUNT(*) AS cnt FROM paths
35
- WHERE node_uuid = ?
36
- AND NOT (domain = ? AND (path = ? OR path LIKE ? ESCAPE '\\'))
37
- `).get(childEdge.child_uuid, domain, path, `${safe}/%`);
38
- if (surviving.cnt > 0) continue;
39
-
40
- const targetSurviving = db.prepare(`
41
- SELECT * FROM paths
42
- WHERE node_uuid = ? AND namespace = ?
43
- AND NOT (domain = ? AND (path = ? OR path LIKE ? ESCAPE '\\'))
44
- ORDER BY CASE WHEN domain = ? THEN 0 ELSE 1 END, path
45
- LIMIT 1
46
- `).get(targetNodeUuid, namespace, domain, path, `${safe}/%`, domain);
47
- if (!targetSurviving) wouldOrphan.push(childEdge);
48
- }
49
- return wouldOrphan;
50
- }
@@ -1,17 +0,0 @@
1
- export function escapeLikePath(path) {
2
- return String(path).replace(/[%_]/g, "\\$&");
3
- }
4
-
5
- export function graphUri(domain, path) {
6
- return `${domain}://${path}`;
7
- }
8
-
9
- export function leafName(path) {
10
- return String(path).split("/").pop();
11
- }
12
-
13
- export function pathExists(db, namespace, domain, path) {
14
- return Boolean(db.prepare(
15
- "SELECT 1 FROM paths WHERE namespace = ? AND domain = ? AND path = ?"
16
- ).get(namespace, domain, path));
17
- }
@@ -1,103 +0,0 @@
1
- import { ROOT_NODE_UUID } from "../database.mjs";
2
-
3
- export function ensureNode(db, nodeUuid) {
4
- const existing = db.prepare("SELECT uuid FROM nodes WHERE uuid = ?").get(nodeUuid);
5
- if (!existing) {
6
- db.prepare("INSERT INTO nodes (uuid) VALUES (?)").run(nodeUuid);
7
- }
8
- return nodeUuid;
9
- }
10
-
11
- export function insertMemory(db, nodeUuid, content, deprecated = false) {
12
- const result = db.prepare(
13
- "INSERT INTO memories (node_uuid, content, deprecated) VALUES (?, ?, ?)"
14
- ).run(nodeUuid, content, deprecated ? 1 : 0);
15
- return { id: Number(result.lastInsertRowid), node_uuid: nodeUuid, content, deprecated: deprecated ? 1 : 0 };
16
- }
17
-
18
- export function getOrCreateEdge(db, parentUuid, childUuid, name, priority = 0, disclosure = null) {
19
- const existing = db.prepare(
20
- "SELECT id, parent_uuid, child_uuid, name, priority, disclosure FROM edges WHERE parent_uuid = ? AND child_uuid = ?"
21
- ).get(parentUuid, childUuid);
22
-
23
- if (existing) return { edge: existing, created: false };
24
-
25
- const result = db.prepare(
26
- "INSERT INTO edges (parent_uuid, child_uuid, name, priority, disclosure) VALUES (?, ?, ?, ?, ?)"
27
- ).run(parentUuid, childUuid, name, priority, disclosure);
28
- const edge = {
29
- id: Number(result.lastInsertRowid), parent_uuid: parentUuid, child_uuid: childUuid,
30
- name, priority, disclosure,
31
- };
32
- return { edge, created: true };
33
- }
34
-
35
- export function insertPath(db, namespace, domain, path, edgeId, nodeUuid) {
36
- db.prepare(
37
- "INSERT OR IGNORE INTO paths (namespace, domain, path, edge_id, node_uuid) VALUES (?, ?, ?, ?, ?)"
38
- ).run(namespace, domain, path, edgeId, nodeUuid);
39
- }
40
-
41
- export function resolveGraphPath(db, path, domain = "core", namespace = "") {
42
- if (path === "") {
43
- return { node_uuid: ROOT_NODE_UUID, edge: null, path_obj: null };
44
- }
45
- const row = db.prepare(`
46
- SELECT p.namespace, p.domain, p.path, p.edge_id, p.node_uuid,
47
- e.parent_uuid, e.child_uuid, e.name, e.priority, e.disclosure
48
- FROM paths p
49
- JOIN edges e ON p.edge_id = e.id
50
- WHERE p.namespace = ? AND p.domain = ? AND p.path = ?
51
- `).get(namespace, domain, path);
52
-
53
- if (!row) return null;
54
- return {
55
- path_obj: { namespace: row.namespace, domain: row.domain, path: row.path, edge_id: row.edge_id, node_uuid: row.node_uuid },
56
- edge: { id: row.edge_id, parent_uuid: row.parent_uuid, child_uuid: row.child_uuid, name: row.name, priority: row.priority, disclosure: row.disclosure },
57
- node_uuid: row.node_uuid,
58
- };
59
- }
60
-
61
- export function countPathsForEdge(db, edgeId) {
62
- const row = db.prepare("SELECT COUNT(*) AS cnt FROM paths WHERE edge_id = ?").get(edgeId);
63
- return row.cnt;
64
- }
65
-
66
- export function countMemoriesForNode(db, nodeUuid) {
67
- const row = db.prepare("SELECT COUNT(*) AS cnt FROM memories WHERE node_uuid = ?").get(nodeUuid);
68
- return row.cnt;
69
- }
70
-
71
- export function getNextChildNumber(db, parentUuid, namespace) {
72
- const rows = db.prepare(`
73
- SELECT e.name FROM edges e
74
- JOIN paths p ON p.edge_id = e.id
75
- WHERE e.parent_uuid = ? AND p.namespace = ?
76
- `).all(parentUuid, namespace);
77
- let maxNum = 0;
78
- for (const row of rows) {
79
- const num = parseInt(row.name, 10);
80
- if (!Number.isNaN(num) && num > maxNum) maxNum = num;
81
- }
82
- return maxNum + 1;
83
- }
84
-
85
- export function wouldCreateCycle(db, parentUuid, childUuid) {
86
- if (parentUuid === ROOT_NODE_UUID) return false;
87
- if (parentUuid === childUuid) return true;
88
-
89
- const visited = new Set([childUuid]);
90
- const queue = [childUuid];
91
- while (queue.length > 0) {
92
- const current = queue.shift();
93
- const rows = db.prepare("SELECT child_uuid FROM edges WHERE parent_uuid = ?").all(current);
94
- for (const row of rows) {
95
- if (row.child_uuid === parentUuid) return true;
96
- if (!visited.has(row.child_uuid)) {
97
- visited.add(row.child_uuid);
98
- queue.push(row.child_uuid);
99
- }
100
- }
101
- }
102
- return false;
103
- }
@@ -1,159 +0,0 @@
1
- import { ROOT_NODE_UUID } from "../database.mjs";
2
-
3
- export function getMemoryByPath(db, path, domain = "core", namespace = "") {
4
- if (path === "") {
5
- return {
6
- id: 0, node_uuid: ROOT_NODE_UUID,
7
- content: `Root node for domain '${domain}'.`,
8
- priority: 0, disclosure: null, deprecated: false,
9
- created_at: null, domain, path: "", alias_count: 0,
10
- };
11
- }
12
-
13
- const row = db.prepare(`
14
- SELECT m.id, m.node_uuid, m.content, m.deprecated, m.created_at,
15
- e.priority, e.disclosure, p.domain, p.path
16
- FROM paths p
17
- JOIN edges e ON p.edge_id = e.id
18
- JOIN memories m ON m.node_uuid = e.child_uuid AND m.deprecated = 0
19
- WHERE p.namespace = ? AND p.domain = ? AND p.path = ?
20
- ORDER BY m.created_at DESC
21
- LIMIT 1
22
- `).get(namespace, domain, path);
23
-
24
- if (!row) return null;
25
-
26
- const totalPaths = countIncomingPaths(db, row.node_uuid, namespace);
27
- const aliasCount = Math.max(0, totalPaths - 1);
28
-
29
- return {
30
- id: row.id, node_uuid: row.node_uuid, content: row.content,
31
- priority: row.priority, disclosure: row.disclosure,
32
- deprecated: !!row.deprecated, created_at: row.created_at,
33
- domain: row.domain, path: row.path, alias_count: aliasCount,
34
- };
35
- }
36
-
37
- export function getChildren(db, nodeUuid = ROOT_NODE_UUID, contextDomain = null, contextPath = null, namespace = "") {
38
- const rows = db.prepare(`
39
- SELECT DISTINCT e.id AS edge_id, e.child_uuid, e.name, e.priority, e.disclosure,
40
- m.content, m.id AS memory_id
41
- FROM edges e
42
- JOIN paths p ON p.edge_id = e.id
43
- JOIN memories m ON m.node_uuid = e.child_uuid AND m.deprecated = 0
44
- WHERE e.parent_uuid = ? AND p.namespace = ?
45
- ORDER BY e.priority ASC, e.name
46
- `).all(nodeUuid, namespace);
47
-
48
- const childUuids = [...new Set(rows.map(r => r.child_uuid))];
49
- const edgeIds = [...new Set(rows.map(r => r.edge_id))];
50
-
51
- const approxChildrenMap = {};
52
- if (childUuids.length > 0) {
53
- const placeholders = childUuids.map(() => "?").join(",");
54
- const counts = db.prepare(`
55
- SELECT e.parent_uuid, COUNT(DISTINCT e.id)
56
- FROM edges e
57
- JOIN paths p ON p.edge_id = e.id
58
- WHERE e.parent_uuid IN (${placeholders}) AND p.namespace = ?
59
- GROUP BY e.parent_uuid
60
- `).all(...childUuids, namespace);
61
- for (const c of counts) {
62
- approxChildrenMap[c[0]] = c[1];
63
- }
64
- }
65
-
66
- const pathsByEdgeId = {};
67
- if (edgeIds.length > 0) {
68
- const placeholders = edgeIds.map(() => "?").join(",");
69
- const pathRows = db.prepare(`
70
- SELECT * FROM paths WHERE namespace = ? AND edge_id IN (${placeholders})
71
- `).all(namespace, ...edgeIds);
72
- for (const p of pathRows) {
73
- if (!pathsByEdgeId[p.edge_id]) pathsByEdgeId[p.edge_id] = [];
74
- pathsByEdgeId[p.edge_id].push(p);
75
- }
76
- }
77
-
78
- const prefix = contextPath ? `${contextPath}/` : null;
79
- const seen = new Set();
80
- const children = [];
81
-
82
- for (const row of rows) {
83
- if (seen.has(row.child_uuid)) continue;
84
- seen.add(row.child_uuid);
85
-
86
- const allPaths = pathsByEdgeId[row.edge_id] ?? [];
87
- if (nodeUuid === ROOT_NODE_UUID && contextDomain) {
88
- if (!allPaths.some(p => p.domain === contextDomain)) continue;
89
- }
90
-
91
- const pathObj = pickBestPath(allPaths, contextDomain, prefix);
92
- if (!pathObj) continue;
93
-
94
- children.push({
95
- node_uuid: row.child_uuid,
96
- edge_id: row.edge_id,
97
- name: row.name,
98
- domain: pathObj.domain,
99
- path: pathObj.path,
100
- content_snippet: (row.content ?? "").slice(0, 100) + ((row.content ?? "").length > 100 ? "..." : ""),
101
- priority: row.priority,
102
- disclosure: row.disclosure,
103
- approx_children_count: approxChildrenMap[row.child_uuid] ?? 0,
104
- });
105
- }
106
-
107
- return children;
108
- }
109
-
110
- export function getRecentMemories(db, limit = 10, namespace = "") {
111
- const rows = db.prepare(`
112
- SELECT m.id AS memory_id, m.created_at, e.priority, e.disclosure, p.domain, p.path
113
- FROM paths p
114
- JOIN edges e ON p.edge_id = e.id
115
- JOIN memories m ON m.node_uuid = e.child_uuid AND m.deprecated = 0
116
- WHERE p.namespace = ?
117
- ORDER BY m.created_at DESC
118
- `).all(namespace);
119
-
120
- const seen = new Set();
121
- const memories = [];
122
- for (const row of rows) {
123
- if (seen.has(row.memory_id)) continue;
124
- seen.add(row.memory_id);
125
- memories.push({
126
- memory_id: row.memory_id,
127
- uri: `${row.domain}://${row.path}`,
128
- priority: row.priority,
129
- disclosure: row.disclosure,
130
- created_at: row.created_at,
131
- });
132
- if (memories.length >= limit) break;
133
- }
134
- return memories;
135
- }
136
-
137
- function countIncomingPaths(db, nodeUuid, namespace = "") {
138
- const row = db.prepare(
139
- "SELECT COUNT(*) AS cnt FROM paths WHERE node_uuid = ? AND namespace = ?"
140
- ).get(nodeUuid, namespace);
141
- return row.cnt;
142
- }
143
-
144
- function pickBestPath(paths, contextDomain, prefix) {
145
- if (paths.length === 0) return null;
146
- if (paths.length === 1) return paths[0];
147
-
148
- if (contextDomain && prefix) {
149
- for (const p of paths) {
150
- if (p.domain === contextDomain && p.path.startsWith(prefix)) return p;
151
- }
152
- }
153
- if (contextDomain) {
154
- for (const p of paths) {
155
- if (p.domain === contextDomain) return p;
156
- }
157
- }
158
- return paths[0];
159
- }