@kage-core/kage-graph-mcp 1.1.20 → 1.1.21
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 +41 -13
- package/dist/cli.js +25 -1
- package/dist/daemon.js +5 -2
- package/dist/index.js +17 -0
- package/dist/kernel.js +1123 -177
- package/dist/structural-worker.js +30 -0
- package/package.json +1 -1
- package/viewer/app.js +540 -31
- package/viewer/index.html +2 -2
package/viewer/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>Kage Memory Terminal</title>
|
|
7
|
-
<link rel="stylesheet" href="./styles.css?v=
|
|
7
|
+
<link rel="stylesheet" href="./styles.css?v=11">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<header class="app-header">
|
|
@@ -149,6 +149,6 @@
|
|
|
149
149
|
</section>
|
|
150
150
|
</main>
|
|
151
151
|
|
|
152
|
-
<script src="./app.js?v=
|
|
152
|
+
<script src="./app.js?v=11"></script>
|
|
153
153
|
</body>
|
|
154
154
|
</html>
|