@phren/cli 0.0.20 → 0.0.22
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/mcp/dist/generated/memory-ui-graph.browser.js +22 -22
- package/mcp/dist/hooks.js +51 -14
- package/mcp/dist/mcp-data.js +4 -5
- package/mcp/dist/memory-ui-assets.js +2 -2
- package/mcp/dist/memory-ui-data.js +1 -1
- package/mcp/dist/memory-ui-graph.runtime.js +22 -22
- package/mcp/dist/memory-ui-page.js +71 -44
- package/mcp/dist/memory-ui-scripts.js +37 -555
- package/mcp/dist/memory-ui-server.js +0 -34
- package/mcp/dist/memory-ui-styles.js +137 -136
- package/mcp/dist/profile-store.js +1 -13
- package/mcp/dist/shared-ollama.js +1 -12
- package/mcp/dist/shell-state-store.js +2 -14
- package/package.json +1 -1
|
@@ -292,7 +292,7 @@ export async function buildGraph(phrenPath, profile, focusProject) {
|
|
|
292
292
|
db = await buildIndex(phrenPath, profile);
|
|
293
293
|
const rows = queryRows(db, `SELECT e.id, e.name, e.type, COUNT(DISTINCT el.source_doc) as ref_count
|
|
294
294
|
FROM entities e JOIN entity_links el ON el.target_id = e.id WHERE e.type != 'document'
|
|
295
|
-
GROUP BY e.id, e.name, e.type ORDER BY ref_count DESC LIMIT
|
|
295
|
+
GROUP BY e.id, e.name, e.type ORDER BY ref_count DESC LIMIT 5000`, []);
|
|
296
296
|
const refRows = queryRows(db, `SELECT e.id, el.source_doc
|
|
297
297
|
FROM entities e
|
|
298
298
|
JOIN entity_links el ON el.target_id = e.id
|