memorix 1.0.8 → 1.0.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.
@@ -4,6 +4,9 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
8
+ <meta http-equiv="Pragma" content="no-cache">
9
+ <meta http-equiv="Expires" content="0">
7
10
  <title>Memorix — Memory Control Plane</title>
8
11
  <link rel="stylesheet" href="/style.css">
9
12
  <script src="https://code.iconify.design/3/3.1.0/iconify.min.js"></script>
@@ -65,6 +68,13 @@
65
68
  </svg>
66
69
  <span class="nav-label">Git Memory</span>
67
70
  </button>
71
+ <button class="nav-btn" data-page="knowledge">
72
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
73
+ <path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/>
74
+ <path d="M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5z"/>
75
+ </svg>
76
+ <span class="nav-label">Knowledge</span>
77
+ </button>
68
78
  <button class="nav-btn" data-page="graph">
69
79
  <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
70
80
  <circle cx="12" cy="5" r="3"/>
@@ -105,7 +115,7 @@
105
115
  <span class="nav-label">Identity</span>
106
116
  </button>
107
117
  </div>
108
- <div class="sidebar-section-label" data-section="collaboration">AGENTS</div>
118
+ <div class="sidebar-section-label" data-section="collaboration">AGENTS</div>
109
119
  <div class="sidebar-nav">
110
120
  <button class="nav-btn" data-page="sessions">
111
121
  <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
@@ -162,6 +172,7 @@
162
172
  <main id="app">
163
173
  <div id="page-dashboard" class="page active"></div>
164
174
  <div id="page-git-memory" class="page"></div>
175
+ <div id="page-knowledge" class="page"></div>
165
176
  <div id="page-graph" class="page"></div>
166
177
  <div id="page-observations" class="page"></div>
167
178
  <div id="page-retention" class="page"></div>
@@ -171,11 +182,20 @@
171
182
  <div id="page-team" class="page"></div>
172
183
  </main>
173
184
 
174
- <!-- Cytoscape.js + Dagre layout for topology graph -->
185
+ <!-- Apache ECharts 5 Knowledge Graph renderer -->
186
+ <script src="https://cdn.jsdelivr.net/npm/echarts@5.5.1/dist/echarts.min.js"></script>
187
+ <!-- Cytoscape.js + Dagre — legacy entity-graph fallback -->
175
188
  <script src="https://unpkg.com/cytoscape@3.30.4/dist/cytoscape.min.js"></script>
176
189
  <script src="https://unpkg.com/dagre@0.8.5/dist/dagre.min.js"></script>
177
190
  <script src="https://unpkg.com/cytoscape-dagre@2.5.0/cytoscape-dagre.js"></script>
178
- <script src="/app.js"></script>
191
+ <script>
192
+ // Cache-bust app.js by appending mtime-based version so edits always hit the browser.
193
+ (function () {
194
+ var s = document.createElement('script');
195
+ s.src = '/app.js?v=' + Date.now();
196
+ document.body.appendChild(s);
197
+ })();
198
+ </script>
179
199
  </body>
180
200
 
181
- </html>
201
+ </html>