@kage-core/kage-graph-mcp 1.1.36 → 1.1.38
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 +101 -2
- package/dist/cli.js +451 -3
- package/dist/daemon.js +344 -7
- package/dist/index.js +382 -3
- package/dist/kernel.js +3790 -76
- package/package.json +1 -1
- package/viewer/app.js +1448 -86
- package/viewer/data.html +8 -15
- package/viewer/graph.html +8 -15
- package/viewer/index.html +19 -15
- package/viewer/intel.html +8 -15
- package/viewer/memory.html +79 -15
- package/viewer/owners.html +8 -15
- package/viewer/review.html +20 -16
- package/viewer/styles.css +751 -124
package/viewer/data.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=36">
|
|
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">
|
|
@@ -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>
|
|
@@ -171,13 +171,6 @@
|
|
|
171
171
|
<input id="showDependencies" type="checkbox">
|
|
172
172
|
<span>Include external dependencies</span>
|
|
173
173
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
174
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
175
|
</details>
|
|
183
176
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -266,9 +259,9 @@
|
|
|
266
259
|
<div id="proofList" class="proof-list"></div>
|
|
267
260
|
</section>
|
|
268
261
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
262
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
263
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
264
|
+
<h2>Before You Edit</h2>
|
|
272
265
|
<span id="intelligenceStatus">reports</span>
|
|
273
266
|
</div>
|
|
274
267
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +273,7 @@
|
|
|
280
273
|
<span id="entityCount">0</span>
|
|
281
274
|
</div>
|
|
282
275
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
277
|
<div id="entityList" class="list"></div>
|
|
285
278
|
</section>
|
|
286
279
|
|
|
@@ -298,6 +291,6 @@
|
|
|
298
291
|
</section>
|
|
299
292
|
</div>
|
|
300
293
|
|
|
301
|
-
<script src="./app.js?v=
|
|
294
|
+
<script src="./app.js?v=50"></script>
|
|
302
295
|
</body>
|
|
303
296
|
</html>
|
package/viewer/graph.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=36">
|
|
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">
|
|
@@ -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>
|
|
@@ -171,13 +171,6 @@
|
|
|
171
171
|
<input id="showDependencies" type="checkbox">
|
|
172
172
|
<span>Include external dependencies</span>
|
|
173
173
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
174
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
175
|
</details>
|
|
183
176
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -266,9 +259,9 @@
|
|
|
266
259
|
<div id="proofList" class="proof-list"></div>
|
|
267
260
|
</section>
|
|
268
261
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
262
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
263
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
264
|
+
<h2>Before You Edit</h2>
|
|
272
265
|
<span id="intelligenceStatus">reports</span>
|
|
273
266
|
</div>
|
|
274
267
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +273,7 @@
|
|
|
280
273
|
<span id="entityCount">0</span>
|
|
281
274
|
</div>
|
|
282
275
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
277
|
<div id="entityList" class="list"></div>
|
|
285
278
|
</section>
|
|
286
279
|
|
|
@@ -298,6 +291,6 @@
|
|
|
298
291
|
</section>
|
|
299
292
|
</div>
|
|
300
293
|
|
|
301
|
-
<script src="./app.js?v=
|
|
294
|
+
<script src="./app.js?v=50"></script>
|
|
302
295
|
</body>
|
|
303
296
|
</html>
|
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>
|
|
@@ -171,13 +182,6 @@
|
|
|
171
182
|
<input id="showDependencies" type="checkbox">
|
|
172
183
|
<span>Include external dependencies</span>
|
|
173
184
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
185
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
186
|
</details>
|
|
183
187
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -266,9 +270,9 @@
|
|
|
266
270
|
<div id="proofList" class="proof-list"></div>
|
|
267
271
|
</section>
|
|
268
272
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
273
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
274
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
275
|
+
<h2>Before You Edit</h2>
|
|
272
276
|
<span id="intelligenceStatus">reports</span>
|
|
273
277
|
</div>
|
|
274
278
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +284,7 @@
|
|
|
280
284
|
<span id="entityCount">0</span>
|
|
281
285
|
</div>
|
|
282
286
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
288
|
<div id="entityList" class="list"></div>
|
|
285
289
|
</section>
|
|
286
290
|
|
|
@@ -298,6 +302,6 @@
|
|
|
298
302
|
</section>
|
|
299
303
|
</div>
|
|
300
304
|
|
|
301
|
-
<script src="./app.js?v=
|
|
305
|
+
<script src="./app.js?v=50"></script>
|
|
302
306
|
</body>
|
|
303
307
|
</html>
|
package/viewer/intel.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=36">
|
|
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">
|
|
@@ -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>
|
|
@@ -171,13 +171,6 @@
|
|
|
171
171
|
<input id="showDependencies" type="checkbox">
|
|
172
172
|
<span>Include external dependencies</span>
|
|
173
173
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
174
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
175
|
</details>
|
|
183
176
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -266,9 +259,9 @@
|
|
|
266
259
|
<div id="proofList" class="proof-list"></div>
|
|
267
260
|
</section>
|
|
268
261
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
262
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
263
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
264
|
+
<h2>Before You Edit</h2>
|
|
272
265
|
<span id="intelligenceStatus">reports</span>
|
|
273
266
|
</div>
|
|
274
267
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +273,7 @@
|
|
|
280
273
|
<span id="entityCount">0</span>
|
|
281
274
|
</div>
|
|
282
275
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
277
|
<div id="entityList" class="list"></div>
|
|
285
278
|
</section>
|
|
286
279
|
|
|
@@ -298,6 +291,6 @@
|
|
|
298
291
|
</section>
|
|
299
292
|
</div>
|
|
300
293
|
|
|
301
|
-
<script src="./app.js?v=
|
|
294
|
+
<script src="./app.js?v=50"></script>
|
|
302
295
|
</body>
|
|
303
296
|
</html>
|
package/viewer/memory.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=36">
|
|
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">
|
|
@@ -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>
|
|
@@ -171,13 +171,6 @@
|
|
|
171
171
|
<input id="showDependencies" type="checkbox">
|
|
172
172
|
<span>Include external dependencies</span>
|
|
173
173
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
174
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
175
|
</details>
|
|
183
176
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -237,6 +230,77 @@
|
|
|
237
230
|
</select>
|
|
238
231
|
</div>
|
|
239
232
|
<div id="memoryList" class="memory-list"></div>
|
|
233
|
+
<details class="memory-governance" aria-label="Memory governance reports">
|
|
234
|
+
<summary>
|
|
235
|
+
<span>Governance reports</span>
|
|
236
|
+
<em>lifecycle, audit, lineage, capture</em>
|
|
237
|
+
</summary>
|
|
238
|
+
<section class="memory-lifecycle" aria-label="Memory lifecycle proof">
|
|
239
|
+
<div class="lifecycle-head">
|
|
240
|
+
<div>
|
|
241
|
+
<h3>Lifecycle proof</h3>
|
|
242
|
+
<p>How repo knowledge moves from agent learning to future recall.</p>
|
|
243
|
+
</div>
|
|
244
|
+
<span id="lifecycleStatus">waiting</span>
|
|
245
|
+
</div>
|
|
246
|
+
<div id="lifecycleSummary" class="lifecycle-summary"></div>
|
|
247
|
+
<div id="lifecycleList" class="lifecycle-list"></div>
|
|
248
|
+
</section>
|
|
249
|
+
<section class="memory-review-actions" aria-label="Memory review actions">
|
|
250
|
+
<div class="lifecycle-head">
|
|
251
|
+
<div>
|
|
252
|
+
<h3>Review actions</h3>
|
|
253
|
+
<p>What to verify, ground, or improve based on actual recall reuse.</p>
|
|
254
|
+
</div>
|
|
255
|
+
<span id="memoryReviewStatus">waiting</span>
|
|
256
|
+
</div>
|
|
257
|
+
<div id="memoryReviewActions" class="memory-action-list"></div>
|
|
258
|
+
</section>
|
|
259
|
+
<section class="session-capture" aria-label="Memory activity timeline">
|
|
260
|
+
<div class="lifecycle-head">
|
|
261
|
+
<div>
|
|
262
|
+
<h3>Memory timeline</h3>
|
|
263
|
+
<p>Recent repo-memory changes teammates should know before handoff.</p>
|
|
264
|
+
</div>
|
|
265
|
+
<span id="memoryTimelineStatus">waiting</span>
|
|
266
|
+
</div>
|
|
267
|
+
<div id="memoryTimelineSummary" class="lifecycle-summary"></div>
|
|
268
|
+
<div id="memoryTimelineList" class="session-capture-list"></div>
|
|
269
|
+
</section>
|
|
270
|
+
<section class="session-capture" aria-label="Memory audit trail">
|
|
271
|
+
<div class="lifecycle-head">
|
|
272
|
+
<div>
|
|
273
|
+
<h3>Memory audit</h3>
|
|
274
|
+
<p>Explicit memory mutations: capture, feedback, review, supersede, deprecate, and delete.</p>
|
|
275
|
+
</div>
|
|
276
|
+
<span id="memoryAuditStatus">waiting</span>
|
|
277
|
+
</div>
|
|
278
|
+
<div id="memoryAuditSummary" class="lifecycle-summary"></div>
|
|
279
|
+
<div id="memoryAuditList" class="session-capture-list"></div>
|
|
280
|
+
</section>
|
|
281
|
+
<section class="session-capture" aria-label="Memory lineage">
|
|
282
|
+
<div class="lifecycle-head">
|
|
283
|
+
<div>
|
|
284
|
+
<h3>Memory lineage</h3>
|
|
285
|
+
<p>Which old packets were replaced, and which current memory future agents should trust.</p>
|
|
286
|
+
</div>
|
|
287
|
+
<span id="memoryLineageStatus">waiting</span>
|
|
288
|
+
</div>
|
|
289
|
+
<div id="memoryLineageSummary" class="lifecycle-summary"></div>
|
|
290
|
+
<div id="memoryLineageList" class="session-capture-list"></div>
|
|
291
|
+
</section>
|
|
292
|
+
<section class="session-capture" aria-label="Session capture proof">
|
|
293
|
+
<div class="lifecycle-head">
|
|
294
|
+
<div>
|
|
295
|
+
<h3>Session capture</h3>
|
|
296
|
+
<p>Observed agent sessions distilled into reviewable repo memory, without raw transcript replay.</p>
|
|
297
|
+
</div>
|
|
298
|
+
<span id="sessionCaptureStatus">waiting</span>
|
|
299
|
+
</div>
|
|
300
|
+
<div id="sessionCaptureSummary" class="lifecycle-summary"></div>
|
|
301
|
+
<div id="sessionCaptureList" class="session-capture-list"></div>
|
|
302
|
+
</section>
|
|
303
|
+
</details>
|
|
240
304
|
</section>
|
|
241
305
|
|
|
242
306
|
<section class="owners-panel" aria-label="Owners and contributors">
|
|
@@ -266,9 +330,9 @@
|
|
|
266
330
|
<div id="proofList" class="proof-list"></div>
|
|
267
331
|
</section>
|
|
268
332
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
333
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
334
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
335
|
+
<h2>Before You Edit</h2>
|
|
272
336
|
<span id="intelligenceStatus">reports</span>
|
|
273
337
|
</div>
|
|
274
338
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +344,7 @@
|
|
|
280
344
|
<span id="entityCount">0</span>
|
|
281
345
|
</div>
|
|
282
346
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
348
|
<div id="entityList" class="list"></div>
|
|
285
349
|
</section>
|
|
286
350
|
|
|
@@ -298,6 +362,6 @@
|
|
|
298
362
|
</section>
|
|
299
363
|
</div>
|
|
300
364
|
|
|
301
|
-
<script src="./app.js?v=
|
|
365
|
+
<script src="./app.js?v=50"></script>
|
|
302
366
|
</body>
|
|
303
367
|
</html>
|
package/viewer/owners.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=36">
|
|
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">
|
|
@@ -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>
|
|
@@ -171,13 +171,6 @@
|
|
|
171
171
|
<input id="showDependencies" type="checkbox">
|
|
172
172
|
<span>Include external dependencies</span>
|
|
173
173
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
174
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
175
|
</details>
|
|
183
176
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -266,9 +259,9 @@
|
|
|
266
259
|
<div id="proofList" class="proof-list"></div>
|
|
267
260
|
</section>
|
|
268
261
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
262
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
263
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
264
|
+
<h2>Before You Edit</h2>
|
|
272
265
|
<span id="intelligenceStatus">reports</span>
|
|
273
266
|
</div>
|
|
274
267
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +273,7 @@
|
|
|
280
273
|
<span id="entityCount">0</span>
|
|
281
274
|
</div>
|
|
282
275
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
277
|
<div id="entityList" class="list"></div>
|
|
285
278
|
</section>
|
|
286
279
|
|
|
@@ -298,6 +291,6 @@
|
|
|
298
291
|
</section>
|
|
299
292
|
</div>
|
|
300
293
|
|
|
301
|
-
<script src="./app.js?v=
|
|
294
|
+
<script src="./app.js?v=50"></script>
|
|
302
295
|
</body>
|
|
303
296
|
</html>
|
package/viewer/review.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=36">
|
|
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">
|
|
@@ -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>
|
|
@@ -171,13 +171,6 @@
|
|
|
171
171
|
<input id="showDependencies" type="checkbox">
|
|
172
172
|
<span>Include external dependencies</span>
|
|
173
173
|
</label>
|
|
174
|
-
<label>
|
|
175
|
-
<span>Render Mode</span>
|
|
176
|
-
<select id="renderMode">
|
|
177
|
-
<option value="2d" selected>2D Canvas</option>
|
|
178
|
-
<option value="3d">3D Space</option>
|
|
179
|
-
</select>
|
|
180
|
-
</label>
|
|
181
174
|
<button id="resetView" type="button">Reset filters</button>
|
|
182
175
|
</details>
|
|
183
176
|
<input id="scopeFilter" type="hidden" value="signal">
|
|
@@ -250,9 +243,20 @@
|
|
|
250
243
|
|
|
251
244
|
<section class="review-panel" aria-label="Review queue">
|
|
252
245
|
<div class="panel-heading">
|
|
253
|
-
<h2>Memory
|
|
246
|
+
<h2>Memory inbox</h2>
|
|
254
247
|
<span id="reviewCount">0</span>
|
|
255
248
|
</div>
|
|
249
|
+
<section class="session-capture" aria-label="Memory handoff">
|
|
250
|
+
<div class="lifecycle-head">
|
|
251
|
+
<div>
|
|
252
|
+
<h3>Memory handoff</h3>
|
|
253
|
+
<p>Combined inbox, lifecycle, audit, timeline, and lineage actions for the next teammate or agent.</p>
|
|
254
|
+
</div>
|
|
255
|
+
<span id="handoffStatus">waiting</span>
|
|
256
|
+
</div>
|
|
257
|
+
<div id="handoffSummary" class="lifecycle-summary"></div>
|
|
258
|
+
<div id="handoffList" class="session-capture-list"></div>
|
|
259
|
+
</section>
|
|
256
260
|
<div id="reviewOverview" class="review-overview"></div>
|
|
257
261
|
<div id="reviewList" class="review-list"></div>
|
|
258
262
|
</section>
|
|
@@ -266,9 +270,9 @@
|
|
|
266
270
|
<div id="proofList" class="proof-list"></div>
|
|
267
271
|
</section>
|
|
268
272
|
|
|
269
|
-
<section class="intelligence-panel" aria-label="
|
|
273
|
+
<section class="intelligence-panel" aria-label="Before edit risks and reports">
|
|
270
274
|
<div class="panel-heading">
|
|
271
|
-
<h2>
|
|
275
|
+
<h2>Before You Edit</h2>
|
|
272
276
|
<span id="intelligenceStatus">reports</span>
|
|
273
277
|
</div>
|
|
274
278
|
<div id="intelligenceList" class="intelligence-list"></div>
|
|
@@ -280,7 +284,7 @@
|
|
|
280
284
|
<span id="entityCount">0</span>
|
|
281
285
|
</div>
|
|
282
286
|
<div id="debugOverview" class="debug-overview"></div>
|
|
283
|
-
<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>
|
|
284
288
|
<div id="entityList" class="list"></div>
|
|
285
289
|
</section>
|
|
286
290
|
|
|
@@ -298,6 +302,6 @@
|
|
|
298
302
|
</section>
|
|
299
303
|
</div>
|
|
300
304
|
|
|
301
|
-
<script src="./app.js?v=
|
|
305
|
+
<script src="./app.js?v=50"></script>
|
|
302
306
|
</body>
|
|
303
307
|
</html>
|