@kage-core/kage-graph-mcp 1.1.20 → 1.1.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/README.md +49 -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 +545 -33
- package/viewer/index.html +2 -2
- package/viewer/styles.css +38 -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=13">
|
|
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=13"></script>
|
|
153
153
|
</body>
|
|
154
154
|
</html>
|
package/viewer/styles.css
CHANGED
|
@@ -161,6 +161,8 @@ h2 { color: var(--terminal); font-size: 13px; letter-spacing: 0.04em; text-trans
|
|
|
161
161
|
min-height: calc(100vh - 78px);
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
+
.layout > * { min-width: 0; }
|
|
165
|
+
|
|
164
166
|
.control-panel, .graph-panel, .details-panel, .table-panel, .review-panel, .proof-panel {
|
|
165
167
|
border: 1px solid var(--line);
|
|
166
168
|
border-radius: 6px;
|
|
@@ -425,20 +427,39 @@ input:focus, select:focus, button:focus, .file-picker:focus-within {
|
|
|
425
427
|
|
|
426
428
|
.details-panel {
|
|
427
429
|
grid-area: details;
|
|
430
|
+
align-self: start;
|
|
431
|
+
display: flex;
|
|
432
|
+
flex-direction: column;
|
|
433
|
+
height: min(960px, calc(100vh - 108px));
|
|
434
|
+
max-height: calc(100vh - 108px);
|
|
428
435
|
min-height: 0;
|
|
429
|
-
overflow:
|
|
436
|
+
overflow: hidden;
|
|
430
437
|
padding: 12px;
|
|
431
438
|
}
|
|
432
439
|
.details-empty { color: var(--terminal-dim); }
|
|
440
|
+
#selectionDetails {
|
|
441
|
+
min-height: 0;
|
|
442
|
+
overflow: auto;
|
|
443
|
+
overscroll-behavior: contain;
|
|
444
|
+
padding-right: 2px;
|
|
445
|
+
}
|
|
433
446
|
.detail-title { margin-bottom: 8px; color: var(--text); font-weight: 780; font-size: 17px; overflow-wrap: anywhere; }
|
|
434
447
|
.detail-kind { margin-bottom: 10px; color: var(--terminal-strong); background: #07130d; }
|
|
435
448
|
.detail-row { padding: 9px 0; border-top: 1px solid var(--line); }
|
|
436
449
|
.detail-row dt { margin: 0 0 4px; color: var(--terminal-dim); font-size: 11px; font-weight: 760; text-transform: uppercase; }
|
|
437
|
-
.detail-row dd {
|
|
450
|
+
.detail-row dd {
|
|
451
|
+
max-height: 150px;
|
|
452
|
+
margin: 0;
|
|
453
|
+
color: var(--text);
|
|
454
|
+
overflow: auto;
|
|
455
|
+
overflow-wrap: anywhere;
|
|
456
|
+
white-space: pre-wrap;
|
|
457
|
+
}
|
|
438
458
|
.detail-section {
|
|
439
459
|
margin-top: 12px;
|
|
440
460
|
padding-top: 12px;
|
|
441
461
|
border-top: 1px solid var(--line);
|
|
462
|
+
min-height: 0;
|
|
442
463
|
}
|
|
443
464
|
.detail-section-title {
|
|
444
465
|
margin-bottom: 8px;
|
|
@@ -447,6 +468,12 @@ input:focus, select:focus, button:focus, .file-picker:focus-within {
|
|
|
447
468
|
font-weight: 800;
|
|
448
469
|
text-transform: uppercase;
|
|
449
470
|
}
|
|
471
|
+
.detail-section-list {
|
|
472
|
+
max-height: 260px;
|
|
473
|
+
overflow: auto;
|
|
474
|
+
overscroll-behavior: contain;
|
|
475
|
+
padding-right: 2px;
|
|
476
|
+
}
|
|
450
477
|
.detail-link {
|
|
451
478
|
width: 100%;
|
|
452
479
|
display: grid;
|
|
@@ -475,8 +502,12 @@ input:focus, select:focus, button:focus, .file-picker:focus-within {
|
|
|
475
502
|
overflow-wrap: anywhere;
|
|
476
503
|
}
|
|
477
504
|
.detail-link-body {
|
|
505
|
+
display: -webkit-box;
|
|
506
|
+
-webkit-box-orient: vertical;
|
|
507
|
+
-webkit-line-clamp: 3;
|
|
478
508
|
color: var(--muted);
|
|
479
509
|
font-size: 11px;
|
|
510
|
+
overflow: hidden;
|
|
480
511
|
overflow-wrap: anywhere;
|
|
481
512
|
}
|
|
482
513
|
.detail-more {
|
|
@@ -663,6 +694,11 @@ input:focus, select:focus, button:focus, .file-picker:focus-within {
|
|
|
663
694
|
.control-panel label, .control-panel button { margin-top: 0; }
|
|
664
695
|
.graph-panel { min-height: 620px; }
|
|
665
696
|
#graphCanvas, .graph-canvas-wrap, #graphSvg { min-height: 560px; }
|
|
697
|
+
.details-panel {
|
|
698
|
+
height: auto;
|
|
699
|
+
max-height: 70vh;
|
|
700
|
+
}
|
|
701
|
+
.detail-section-list { max-height: 220px; }
|
|
666
702
|
}
|
|
667
703
|
|
|
668
704
|
@media (max-width: 620px) {
|