@kage-core/kage-graph-mcp 1.1.37 → 1.2.0
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/dist/cli.js +99 -4
- package/dist/daemon.js +31 -1
- package/dist/index.js +116 -5
- package/dist/kernel.js +896 -18
- package/package.json +1 -1
- package/viewer/app.js +216 -63
- package/viewer/data.html +6 -6
- package/viewer/graph.html +6 -6
- package/viewer/index.html +18 -7
- package/viewer/intel.html +6 -6
- package/viewer/memory.html +6 -6
- package/viewer/owners.html +6 -6
- package/viewer/review.html +7 -7
- package/viewer/styles.css +149 -1
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 viewer</title>
|
|
7
|
-
<link rel="stylesheet" href="./styles.css?v=
|
|
7
|
+
<link rel="stylesheet" href="./styles.css?v=37">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div class="viewer-shell">
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<a class="viewer-section active" href="./" data-viewer-page="overview" aria-current="page">Overview</a>
|
|
22
22
|
<a class="viewer-section" href="./graph.html" data-viewer-page="graph">Graph</a>
|
|
23
23
|
<a class="viewer-section" href="./memory.html" data-viewer-page="memory">Memory</a>
|
|
24
|
-
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">
|
|
24
|
+
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">Before You Edit</a>
|
|
25
25
|
<a class="viewer-section" href="./review.html" data-viewer-page="review">Review</a>
|
|
26
26
|
</nav>
|
|
27
27
|
<nav class="sidebar-secondary" aria-label="Diagnostics">
|
|
@@ -55,6 +55,17 @@
|
|
|
55
55
|
<main class="layout">
|
|
56
56
|
<section class="dashboard-panel" aria-label="Kage repo dashboard">
|
|
57
57
|
<div id="dashboardStats" class="dashboard-stats" aria-label="Repo dashboard stats"></div>
|
|
58
|
+
<section id="repoXray" class="repo-xray" aria-label="Repo X-Ray">
|
|
59
|
+
<div class="repo-xray-head">
|
|
60
|
+
<div>
|
|
61
|
+
<span>Repo X-Ray</span>
|
|
62
|
+
<h2>Show me what you understand</h2>
|
|
63
|
+
</div>
|
|
64
|
+
<strong id="repoXrayStatus">waiting</strong>
|
|
65
|
+
</div>
|
|
66
|
+
<p id="repoXrayScript">Kage will map entry points, core files, risk, tests, and memory overlays when the X-Ray report is loaded.</p>
|
|
67
|
+
<div id="repoXrayLayers" class="repo-xray-layers"></div>
|
|
68
|
+
</section>
|
|
58
69
|
<div id="dashboardCharts" class="dashboard-charts" aria-label="Repo health charts"></div>
|
|
59
70
|
<div class="dashboard-grid">
|
|
60
71
|
<article class="dashboard-card primary" id="dashboardMemory">
|
|
@@ -70,10 +81,10 @@
|
|
|
70
81
|
<a href="./graph.html" data-viewer-page="graph">Explore graph</a>
|
|
71
82
|
</article>
|
|
72
83
|
<article class="dashboard-card primary" id="dashboardIntel">
|
|
73
|
-
<div class="dashboard-card-head"><span>
|
|
84
|
+
<div class="dashboard-card-head"><span>Before You Edit</span><strong>checklist</strong></div>
|
|
74
85
|
<h3>What needs attention</h3>
|
|
75
86
|
<ul></ul>
|
|
76
|
-
<a href="./intel.html" data-viewer-page="intel">Open
|
|
87
|
+
<a href="./intel.html" data-viewer-page="intel">Open edit checklist</a>
|
|
77
88
|
</article>
|
|
78
89
|
<article class="dashboard-card primary" id="dashboardReview">
|
|
79
90
|
<div class="dashboard-card-head"><span>Review</span><strong>handoff</strong></div>
|
|
@@ -259,9 +270,9 @@
|
|
|
259
270
|
<div id="proofList" class="proof-list"></div>
|
|
260
271
|
</section>
|
|
261
272
|
|
|
262
|
-
<section class="intelligence-panel" aria-label="
|
|
273
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
263
274
|
<div class="panel-heading">
|
|
264
|
-
<h2>
|
|
275
|
+
<h2>Before You Edit</h2>
|
|
265
276
|
<span id="intelligenceStatus">reports</span>
|
|
266
277
|
</div>
|
|
267
278
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -273,7 +284,7 @@
|
|
|
273
284
|
<span id="entityCount">0</span>
|
|
274
285
|
</div>
|
|
275
286
|
<div id="debugOverview" class="debug-overview"></div>
|
|
276
|
-
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory,
|
|
287
|
+
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory, Before You Edit, or Review.</div>
|
|
277
288
|
<div id="entityList" class="list"></div>
|
|
278
289
|
</section>
|
|
279
290
|
|
package/viewer/intel.html
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<a class="viewer-section active" href="./" data-viewer-page="overview" aria-current="page">Overview</a>
|
|
22
22
|
<a class="viewer-section" href="./graph.html" data-viewer-page="graph">Graph</a>
|
|
23
23
|
<a class="viewer-section" href="./memory.html" data-viewer-page="memory">Memory</a>
|
|
24
|
-
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">
|
|
24
|
+
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">Before You Edit</a>
|
|
25
25
|
<a class="viewer-section" href="./review.html" data-viewer-page="review">Review</a>
|
|
26
26
|
</nav>
|
|
27
27
|
<nav class="sidebar-secondary" aria-label="Diagnostics">
|
|
@@ -70,10 +70,10 @@
|
|
|
70
70
|
<a href="./graph.html" data-viewer-page="graph">Explore graph</a>
|
|
71
71
|
</article>
|
|
72
72
|
<article class="dashboard-card primary" id="dashboardIntel">
|
|
73
|
-
<div class="dashboard-card-head"><span>
|
|
73
|
+
<div class="dashboard-card-head"><span>Before You Edit</span><strong>checklist</strong></div>
|
|
74
74
|
<h3>What needs attention</h3>
|
|
75
75
|
<ul></ul>
|
|
76
|
-
<a href="./intel.html" data-viewer-page="intel">Open
|
|
76
|
+
<a href="./intel.html" data-viewer-page="intel">Open edit checklist</a>
|
|
77
77
|
</article>
|
|
78
78
|
<article class="dashboard-card primary" id="dashboardReview">
|
|
79
79
|
<div class="dashboard-card-head"><span>Review</span><strong>handoff</strong></div>
|
|
@@ -259,9 +259,9 @@
|
|
|
259
259
|
<div id="proofList" class="proof-list"></div>
|
|
260
260
|
</section>
|
|
261
261
|
|
|
262
|
-
<section class="intelligence-panel" aria-label="
|
|
262
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
263
263
|
<div class="panel-heading">
|
|
264
|
-
<h2>
|
|
264
|
+
<h2>Before You Edit</h2>
|
|
265
265
|
<span id="intelligenceStatus">reports</span>
|
|
266
266
|
</div>
|
|
267
267
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
<span id="entityCount">0</span>
|
|
274
274
|
</div>
|
|
275
275
|
<div id="debugOverview" class="debug-overview"></div>
|
|
276
|
-
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory,
|
|
276
|
+
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory, Before You Edit, or Review.</div>
|
|
277
277
|
<div id="entityList" class="list"></div>
|
|
278
278
|
</section>
|
|
279
279
|
|
package/viewer/memory.html
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<a class="viewer-section active" href="./" data-viewer-page="overview" aria-current="page">Overview</a>
|
|
22
22
|
<a class="viewer-section" href="./graph.html" data-viewer-page="graph">Graph</a>
|
|
23
23
|
<a class="viewer-section" href="./memory.html" data-viewer-page="memory">Memory</a>
|
|
24
|
-
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">
|
|
24
|
+
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">Before You Edit</a>
|
|
25
25
|
<a class="viewer-section" href="./review.html" data-viewer-page="review">Review</a>
|
|
26
26
|
</nav>
|
|
27
27
|
<nav class="sidebar-secondary" aria-label="Diagnostics">
|
|
@@ -70,10 +70,10 @@
|
|
|
70
70
|
<a href="./graph.html" data-viewer-page="graph">Explore graph</a>
|
|
71
71
|
</article>
|
|
72
72
|
<article class="dashboard-card primary" id="dashboardIntel">
|
|
73
|
-
<div class="dashboard-card-head"><span>
|
|
73
|
+
<div class="dashboard-card-head"><span>Before You Edit</span><strong>checklist</strong></div>
|
|
74
74
|
<h3>What needs attention</h3>
|
|
75
75
|
<ul></ul>
|
|
76
|
-
<a href="./intel.html" data-viewer-page="intel">Open
|
|
76
|
+
<a href="./intel.html" data-viewer-page="intel">Open edit checklist</a>
|
|
77
77
|
</article>
|
|
78
78
|
<article class="dashboard-card primary" id="dashboardReview">
|
|
79
79
|
<div class="dashboard-card-head"><span>Review</span><strong>handoff</strong></div>
|
|
@@ -330,9 +330,9 @@
|
|
|
330
330
|
<div id="proofList" class="proof-list"></div>
|
|
331
331
|
</section>
|
|
332
332
|
|
|
333
|
-
<section class="intelligence-panel" aria-label="
|
|
333
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
334
334
|
<div class="panel-heading">
|
|
335
|
-
<h2>
|
|
335
|
+
<h2>Before You Edit</h2>
|
|
336
336
|
<span id="intelligenceStatus">reports</span>
|
|
337
337
|
</div>
|
|
338
338
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -344,7 +344,7 @@
|
|
|
344
344
|
<span id="entityCount">0</span>
|
|
345
345
|
</div>
|
|
346
346
|
<div id="debugOverview" class="debug-overview"></div>
|
|
347
|
-
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory,
|
|
347
|
+
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory, Before You Edit, or Review.</div>
|
|
348
348
|
<div id="entityList" class="list"></div>
|
|
349
349
|
</section>
|
|
350
350
|
|
package/viewer/owners.html
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<a class="viewer-section active" href="./" data-viewer-page="overview" aria-current="page">Overview</a>
|
|
22
22
|
<a class="viewer-section" href="./graph.html" data-viewer-page="graph">Graph</a>
|
|
23
23
|
<a class="viewer-section" href="./memory.html" data-viewer-page="memory">Memory</a>
|
|
24
|
-
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">
|
|
24
|
+
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">Before You Edit</a>
|
|
25
25
|
<a class="viewer-section" href="./review.html" data-viewer-page="review">Review</a>
|
|
26
26
|
</nav>
|
|
27
27
|
<nav class="sidebar-secondary" aria-label="Diagnostics">
|
|
@@ -70,10 +70,10 @@
|
|
|
70
70
|
<a href="./graph.html" data-viewer-page="graph">Explore graph</a>
|
|
71
71
|
</article>
|
|
72
72
|
<article class="dashboard-card primary" id="dashboardIntel">
|
|
73
|
-
<div class="dashboard-card-head"><span>
|
|
73
|
+
<div class="dashboard-card-head"><span>Before You Edit</span><strong>checklist</strong></div>
|
|
74
74
|
<h3>What needs attention</h3>
|
|
75
75
|
<ul></ul>
|
|
76
|
-
<a href="./intel.html" data-viewer-page="intel">Open
|
|
76
|
+
<a href="./intel.html" data-viewer-page="intel">Open edit checklist</a>
|
|
77
77
|
</article>
|
|
78
78
|
<article class="dashboard-card primary" id="dashboardReview">
|
|
79
79
|
<div class="dashboard-card-head"><span>Review</span><strong>handoff</strong></div>
|
|
@@ -259,9 +259,9 @@
|
|
|
259
259
|
<div id="proofList" class="proof-list"></div>
|
|
260
260
|
</section>
|
|
261
261
|
|
|
262
|
-
<section class="intelligence-panel" aria-label="
|
|
262
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
263
263
|
<div class="panel-heading">
|
|
264
|
-
<h2>
|
|
264
|
+
<h2>Before You Edit</h2>
|
|
265
265
|
<span id="intelligenceStatus">reports</span>
|
|
266
266
|
</div>
|
|
267
267
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
<span id="entityCount">0</span>
|
|
274
274
|
</div>
|
|
275
275
|
<div id="debugOverview" class="debug-overview"></div>
|
|
276
|
-
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory,
|
|
276
|
+
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory, Before You Edit, or Review.</div>
|
|
277
277
|
<div id="entityList" class="list"></div>
|
|
278
278
|
</section>
|
|
279
279
|
|
package/viewer/review.html
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<a class="viewer-section active" href="./" data-viewer-page="overview" aria-current="page">Overview</a>
|
|
22
22
|
<a class="viewer-section" href="./graph.html" data-viewer-page="graph">Graph</a>
|
|
23
23
|
<a class="viewer-section" href="./memory.html" data-viewer-page="memory">Memory</a>
|
|
24
|
-
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">
|
|
24
|
+
<a class="viewer-section" href="./intel.html" data-viewer-page="intel">Before You Edit</a>
|
|
25
25
|
<a class="viewer-section" href="./review.html" data-viewer-page="review">Review</a>
|
|
26
26
|
</nav>
|
|
27
27
|
<nav class="sidebar-secondary" aria-label="Diagnostics">
|
|
@@ -70,10 +70,10 @@
|
|
|
70
70
|
<a href="./graph.html" data-viewer-page="graph">Explore graph</a>
|
|
71
71
|
</article>
|
|
72
72
|
<article class="dashboard-card primary" id="dashboardIntel">
|
|
73
|
-
<div class="dashboard-card-head"><span>
|
|
73
|
+
<div class="dashboard-card-head"><span>Before You Edit</span><strong>checklist</strong></div>
|
|
74
74
|
<h3>What needs attention</h3>
|
|
75
75
|
<ul></ul>
|
|
76
|
-
<a href="./intel.html" data-viewer-page="intel">Open
|
|
76
|
+
<a href="./intel.html" data-viewer-page="intel">Open edit checklist</a>
|
|
77
77
|
</article>
|
|
78
78
|
<article class="dashboard-card primary" id="dashboardReview">
|
|
79
79
|
<div class="dashboard-card-head"><span>Review</span><strong>handoff</strong></div>
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
|
|
244
244
|
<section class="review-panel" aria-label="Review queue">
|
|
245
245
|
<div class="panel-heading">
|
|
246
|
-
<h2>Memory
|
|
246
|
+
<h2>Memory inbox</h2>
|
|
247
247
|
<span id="reviewCount">0</span>
|
|
248
248
|
</div>
|
|
249
249
|
<section class="session-capture" aria-label="Memory handoff">
|
|
@@ -270,9 +270,9 @@
|
|
|
270
270
|
<div id="proofList" class="proof-list"></div>
|
|
271
271
|
</section>
|
|
272
272
|
|
|
273
|
-
<section class="intelligence-panel" aria-label="
|
|
273
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
274
274
|
<div class="panel-heading">
|
|
275
|
-
<h2>
|
|
275
|
+
<h2>Before You Edit</h2>
|
|
276
276
|
<span id="intelligenceStatus">reports</span>
|
|
277
277
|
</div>
|
|
278
278
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
<span id="entityCount">0</span>
|
|
285
285
|
</div>
|
|
286
286
|
<div id="debugOverview" class="debug-overview"></div>
|
|
287
|
-
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory,
|
|
287
|
+
<div class="debug-guide">Use artifacts when the graph or recall output looks wrong. Normal repo work starts from Overview, Graph, Memory, Before You Edit, or Review.</div>
|
|
288
288
|
<div id="entityList" class="list"></div>
|
|
289
289
|
</section>
|
|
290
290
|
|
package/viewer/styles.css
CHANGED
|
@@ -464,6 +464,145 @@ body.viewer-page-data .graph-panel {
|
|
|
464
464
|
.dashboard-stat-warn strong { color: var(--warn); }
|
|
465
465
|
.dashboard-stat-code strong { color: var(--code); }
|
|
466
466
|
|
|
467
|
+
.repo-xray {
|
|
468
|
+
margin-bottom: 22px;
|
|
469
|
+
padding: 22px;
|
|
470
|
+
border: 1px solid rgba(106, 215, 255, 0.20);
|
|
471
|
+
border-radius: 10px;
|
|
472
|
+
background:
|
|
473
|
+
linear-gradient(135deg, rgba(7, 19, 18, 0.92), rgba(10, 14, 24, 0.76));
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.repo-xray-head {
|
|
477
|
+
display: flex;
|
|
478
|
+
align-items: start;
|
|
479
|
+
justify-content: space-between;
|
|
480
|
+
gap: 18px;
|
|
481
|
+
margin-bottom: 10px;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.repo-xray-head span {
|
|
485
|
+
display: block;
|
|
486
|
+
color: var(--code);
|
|
487
|
+
font-size: 11px;
|
|
488
|
+
font-weight: 820;
|
|
489
|
+
text-transform: uppercase;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.repo-xray-head h2 {
|
|
493
|
+
margin-top: 5px;
|
|
494
|
+
color: var(--text);
|
|
495
|
+
font-size: 24px;
|
|
496
|
+
line-height: 1.12;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.repo-xray-head strong {
|
|
500
|
+
flex: 0 0 auto;
|
|
501
|
+
color: var(--terminal-strong);
|
|
502
|
+
font-size: 12px;
|
|
503
|
+
text-transform: uppercase;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.repo-xray > p {
|
|
507
|
+
max-width: 900px;
|
|
508
|
+
color: var(--muted);
|
|
509
|
+
font-size: 13px;
|
|
510
|
+
line-height: 1.45;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.repo-xray-layers {
|
|
514
|
+
display: grid;
|
|
515
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
516
|
+
gap: 12px;
|
|
517
|
+
margin-top: 16px;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.repo-xray-layer {
|
|
521
|
+
min-height: 190px;
|
|
522
|
+
padding: 14px;
|
|
523
|
+
border: 1px solid rgba(65, 255, 143, 0.12);
|
|
524
|
+
border-radius: 8px;
|
|
525
|
+
background: rgba(6, 16, 11, 0.76);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.repo-xray-layer-head {
|
|
529
|
+
display: flex;
|
|
530
|
+
justify-content: space-between;
|
|
531
|
+
gap: 10px;
|
|
532
|
+
margin-bottom: 12px;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.repo-xray-layer-head strong {
|
|
536
|
+
display: block;
|
|
537
|
+
color: var(--terminal-strong);
|
|
538
|
+
font-size: 13px;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.repo-xray-layer-head span {
|
|
542
|
+
display: block;
|
|
543
|
+
margin-top: 4px;
|
|
544
|
+
color: var(--terminal-dim);
|
|
545
|
+
font-size: 11px;
|
|
546
|
+
line-height: 1.35;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.repo-xray-layer-head em {
|
|
550
|
+
color: var(--code);
|
|
551
|
+
font-size: 16px;
|
|
552
|
+
font-style: normal;
|
|
553
|
+
font-weight: 820;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.repo-xray-items {
|
|
557
|
+
display: grid;
|
|
558
|
+
gap: 8px;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.repo-xray-item {
|
|
562
|
+
width: 100%;
|
|
563
|
+
min-width: 0;
|
|
564
|
+
display: grid;
|
|
565
|
+
align-items: stretch;
|
|
566
|
+
justify-content: stretch;
|
|
567
|
+
gap: 8px;
|
|
568
|
+
padding: 10px;
|
|
569
|
+
border: 1px solid rgba(65, 255, 143, 0.10);
|
|
570
|
+
border-radius: 6px;
|
|
571
|
+
background: rgba(1, 8, 6, 0.56);
|
|
572
|
+
color: var(--muted);
|
|
573
|
+
text-align: left;
|
|
574
|
+
white-space: normal;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.repo-xray-item span { min-width: 0; }
|
|
578
|
+
|
|
579
|
+
.repo-xray-item strong {
|
|
580
|
+
display: block;
|
|
581
|
+
color: var(--text);
|
|
582
|
+
font-size: 12px;
|
|
583
|
+
overflow-wrap: anywhere;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.repo-xray-item em {
|
|
587
|
+
display: block;
|
|
588
|
+
margin-top: 3px;
|
|
589
|
+
color: var(--terminal-dim);
|
|
590
|
+
font-size: 10px;
|
|
591
|
+
font-style: normal;
|
|
592
|
+
line-height: 1.35;
|
|
593
|
+
overflow-wrap: anywhere;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.repo-xray-item i {
|
|
597
|
+
display: block;
|
|
598
|
+
height: 4px;
|
|
599
|
+
border-radius: 999px;
|
|
600
|
+
background: var(--terminal-strong);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.repo-xray-item-watch i { background: var(--warn); }
|
|
604
|
+
.repo-xray-item-risk i { background: var(--danger); }
|
|
605
|
+
|
|
467
606
|
.dashboard-charts {
|
|
468
607
|
display: grid;
|
|
469
608
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
@@ -2142,8 +2281,16 @@ body.viewer-page-memory .memory-list {
|
|
|
2142
2281
|
padding-top: 8px;
|
|
2143
2282
|
color: var(--muted);
|
|
2144
2283
|
font-size: 12px;
|
|
2284
|
+
line-height: 1.35;
|
|
2145
2285
|
overflow-wrap: anywhere;
|
|
2146
2286
|
}
|
|
2287
|
+
.intel-card li strong {
|
|
2288
|
+
display: block;
|
|
2289
|
+
margin-bottom: 2px;
|
|
2290
|
+
}
|
|
2291
|
+
.intel-card li span {
|
|
2292
|
+
display: block;
|
|
2293
|
+
}
|
|
2147
2294
|
.intel-card strong { color: var(--terminal-strong); }
|
|
2148
2295
|
.intel-section {
|
|
2149
2296
|
min-height: 230px;
|
|
@@ -2545,6 +2692,7 @@ body.viewer-page-data .debug-overview {
|
|
|
2545
2692
|
.dashboard-hero { grid-template-columns: 1fr; }
|
|
2546
2693
|
.dashboard-actions { justify-content: flex-start; }
|
|
2547
2694
|
.dashboard-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
|
|
2695
|
+
.repo-xray-layers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
2548
2696
|
.dashboard-charts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
2549
2697
|
.dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
2550
2698
|
.lifecycle-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
@@ -2584,7 +2732,7 @@ body.viewer-page-data .debug-overview {
|
|
|
2584
2732
|
.app-header p { font-size: 11px; }
|
|
2585
2733
|
.dashboard-panel { min-height: 560px; padding: 14px; }
|
|
2586
2734
|
.dashboard-hero h2 { font-size: 26px; }
|
|
2587
|
-
.dashboard-stats, .dashboard-charts, .dashboard-grid { grid-template-columns: 1fr; }
|
|
2735
|
+
.dashboard-stats, .repo-xray-layers, .dashboard-charts, .dashboard-grid { grid-template-columns: 1fr; }
|
|
2588
2736
|
.dashboard-card { min-height: 0; }
|
|
2589
2737
|
body.viewer-page-graph .control-panel { grid-template-columns: 1fr; }
|
|
2590
2738
|
body.viewer-page-graph .workspace-shell { max-height: none; }
|