kyp-mem 0.6.8 → 0.6.9
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/kyp_mem/static/index.html +1 -9
- package/package.json +1 -1
- package/pyproject.toml +1 -1
|
@@ -1999,15 +1999,7 @@ async function init() {
|
|
|
1999
1999
|
renderSidebar(sessionsData);
|
|
2000
2000
|
$('stat-notes').textContent = stats.notes;
|
|
2001
2001
|
$('stat-folders').textContent = stats.folders;
|
|
2002
|
-
|
|
2003
|
-
// Enrich notes with tags in background (don't block sidebar render)
|
|
2004
|
-
const promises = Object.keys(allNotes).map(async path => {
|
|
2005
|
-
try {
|
|
2006
|
-
const note = await fetchJSON(`/api/note/${path}`);
|
|
2007
|
-
if (!note.error) allNotes[path] = { title: note.title, tags: note.tags || [] };
|
|
2008
|
-
} catch {}
|
|
2009
|
-
});
|
|
2010
|
-
Promise.all(promises).then(() => loadTokenEconomics());
|
|
2002
|
+
loadTokenEconomics();
|
|
2011
2003
|
} catch (e) {
|
|
2012
2004
|
console.error('KYP-MEM init failed:', e);
|
|
2013
2005
|
$('sidebar-scroll').innerHTML = `<div style="padding:12px;color:#f66;font-size:12px">Init error: ${e.message}<br>Check console for details</div>`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kyp-mem",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
4
4
|
"description": "Know Your Project — Persistent & Session level knowledge base for AI agents. MCP-powered with wikilinks, backlinks, auto-learning, and neon web UI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"kyp-mem": "bin/cli.mjs"
|
package/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "kyp-mem"
|
|
7
|
-
version = "0.6.
|
|
7
|
+
version = "0.6.9"
|
|
8
8
|
description = "Know Your Project — Persistent knowledge base for AI agents. MCP-powered with wikilinks, backlinks, auto-learning, and neon web UI."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|