@rune-kit/rune 2.2.1 → 2.2.2

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.
Files changed (65) hide show
  1. package/README.md +39 -13
  2. package/compiler/bin/rune.js +26 -4
  3. package/docs/ANTIGRAVITY-GAP-ANALYSIS.md +369 -0
  4. package/docs/ARCHITECTURE.md +332 -0
  5. package/docs/COMMUNITY-PACKS.md +109 -0
  6. package/docs/CONTRIBUTING-L4.md +215 -0
  7. package/docs/CROSS-IDE-ANALYSIS.md +164 -0
  8. package/docs/EXTENSION-TEMPLATE.md +108 -0
  9. package/docs/MESH-RULES.md +34 -0
  10. package/docs/MULTI-PLATFORM.md +804 -0
  11. package/docs/SKILL-DEPTH-AUDIT.md +191 -0
  12. package/docs/SKILL-TEMPLATE.md +72 -0
  13. package/docs/TRADE-MATRIX.md +327 -0
  14. package/docs/VERSIONING.md +91 -0
  15. package/docs/VISION.md +263 -0
  16. package/docs/assets/demo-subtitles.srt +215 -0
  17. package/docs/assets/end-card.html +276 -0
  18. package/docs/assets/mesh-diagram.html +654 -0
  19. package/docs/assets/thumbnail.html +295 -0
  20. package/docs/guides/cli.md +403 -0
  21. package/docs/guides/index.html +1346 -0
  22. package/docs/index.html +674 -0
  23. package/docs/references/claudekit-analysis.md +414 -0
  24. package/docs/references/voltagent-analysis.md +189 -0
  25. package/docs/script.js +277 -0
  26. package/docs/skills/index.html +832 -0
  27. package/docs/style.css +583 -0
  28. package/docs/video-demo-plan.md +172 -0
  29. package/extensions/ui/PACK.md +2 -0
  30. package/extensions/ui/skills/design-decision.md +10 -0
  31. package/extensions/ui/skills/palette-picker.md +11 -0
  32. package/hooks/.gitkeep +0 -0
  33. package/hooks/auto-format/index.cjs +48 -0
  34. package/hooks/context-watch/index.cjs +68 -0
  35. package/hooks/hooks.json +99 -0
  36. package/hooks/metrics-collector/index.cjs +42 -0
  37. package/hooks/post-session-reflect/index.cjs +153 -0
  38. package/hooks/pre-compact/index.cjs +95 -0
  39. package/hooks/pre-tool-guard/index.cjs +68 -0
  40. package/hooks/run-hook +17 -0
  41. package/hooks/run-hook.cjs +16 -0
  42. package/hooks/run-hook.cmd +1 -0
  43. package/hooks/secrets-scan/index.cjs +100 -0
  44. package/hooks/session-start/index.cjs +65 -0
  45. package/hooks/typecheck/index.cjs +65 -0
  46. package/package.json +9 -4
  47. package/references/ui-pro-max-data/LICENSE-UI-PRO-MAX +21 -0
  48. package/references/ui-pro-max-data/charts.csv +26 -0
  49. package/references/ui-pro-max-data/colors.csv +162 -0
  50. package/references/ui-pro-max-data/styles.csv +85 -0
  51. package/references/ui-pro-max-data/typography.csv +74 -0
  52. package/references/ui-pro-max-data/ui-reasoning.csv +162 -0
  53. package/references/ui-pro-max-data/ux-guidelines.csv +100 -0
  54. package/skills/ba/SKILL.md +10 -0
  55. package/skills/completion-gate/SKILL.md +34 -1
  56. package/skills/context-engine/SKILL.md +13 -0
  57. package/skills/cook/SKILL.md +71 -0
  58. package/skills/debug/SKILL.md +56 -1
  59. package/skills/design/SKILL.md +11 -0
  60. package/skills/fix/SKILL.md +26 -1
  61. package/skills/plan/SKILL.md +23 -6
  62. package/skills/review/SKILL.md +2 -0
  63. package/skills/skill-forge/SKILL.md +38 -3
  64. package/skills/test/SKILL.md +10 -1
  65. package/skills/verification/SKILL.md +60 -2
@@ -0,0 +1,654 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Rune — 57-Skill Mesh Architecture</title>
7
+ <style>
8
+ * { margin: 0; padding: 0; box-sizing: border-box; }
9
+
10
+ body {
11
+ background: #0a0e17;
12
+ color: #e2e8f0;
13
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+ min-height: 100vh;
18
+ overflow: hidden;
19
+ }
20
+
21
+ .canvas {
22
+ position: relative;
23
+ width: 1200px;
24
+ height: 900px;
25
+ }
26
+
27
+ svg {
28
+ position: absolute;
29
+ top: 0;
30
+ left: 0;
31
+ width: 100%;
32
+ height: 100%;
33
+ }
34
+
35
+ /* Glow filters */
36
+ .glow-l0 { filter: drop-shadow(0 0 8px #f59e0b); }
37
+ .glow-l1 { filter: drop-shadow(0 0 6px #ef4444); }
38
+ .glow-l2 { filter: drop-shadow(0 0 5px #6366f1); }
39
+ .glow-l3 { filter: drop-shadow(0 0 4px #10b981); }
40
+ .glow-l4 { filter: drop-shadow(0 0 3px #06b6d4); }
41
+
42
+ /* Connection animations */
43
+ @keyframes pulse-connection {
44
+ 0%, 100% { opacity: 0.15; }
45
+ 50% { opacity: 0.6; }
46
+ }
47
+
48
+ @keyframes flow-dash {
49
+ to { stroke-dashoffset: -20; }
50
+ }
51
+
52
+ @keyframes node-pulse {
53
+ 0%, 100% { transform: scale(1); }
54
+ 50% { transform: scale(1.08); }
55
+ }
56
+
57
+ @keyframes fade-in-up {
58
+ from { opacity: 0; transform: translateY(20px); }
59
+ to { opacity: 1; transform: translateY(0); }
60
+ }
61
+
62
+ .connection {
63
+ animation: pulse-connection 3s ease-in-out infinite;
64
+ }
65
+
66
+ .connection-flow {
67
+ stroke-dasharray: 8 12;
68
+ animation: flow-dash 1.5s linear infinite;
69
+ }
70
+
71
+ .node-group {
72
+ cursor: pointer;
73
+ transition: transform 0.2s ease;
74
+ }
75
+
76
+ .node-group:hover {
77
+ transform: scale(1.15);
78
+ }
79
+
80
+ /* Legend */
81
+ .legend {
82
+ position: absolute;
83
+ bottom: 30px;
84
+ left: 50%;
85
+ transform: translateX(-50%);
86
+ display: flex;
87
+ gap: 32px;
88
+ font-size: 13px;
89
+ font-weight: 500;
90
+ animation: fade-in-up 1s ease 0.5s both;
91
+ }
92
+
93
+ .legend-item {
94
+ display: flex;
95
+ align-items: center;
96
+ gap: 8px;
97
+ }
98
+
99
+ .legend-dot {
100
+ width: 12px;
101
+ height: 12px;
102
+ border-radius: 50%;
103
+ }
104
+
105
+ /* Title */
106
+ .title {
107
+ position: absolute;
108
+ top: 24px;
109
+ left: 50%;
110
+ transform: translateX(-50%);
111
+ text-align: center;
112
+ animation: fade-in-up 1s ease both;
113
+ }
114
+
115
+ .title h1 {
116
+ font-family: 'Space Grotesk', sans-serif;
117
+ font-size: 28px;
118
+ font-weight: 700;
119
+ color: #f8fafc;
120
+ letter-spacing: -0.5px;
121
+ }
122
+
123
+ .title p {
124
+ font-size: 14px;
125
+ color: #64748b;
126
+ margin-top: 4px;
127
+ }
128
+
129
+ /* Stats */
130
+ .stats {
131
+ position: absolute;
132
+ top: 24px;
133
+ right: 30px;
134
+ text-align: right;
135
+ animation: fade-in-up 1s ease 0.3s both;
136
+ }
137
+
138
+ .stat-value {
139
+ font-family: 'JetBrains Mono', monospace;
140
+ font-size: 24px;
141
+ font-weight: 700;
142
+ color: #f59e0b;
143
+ }
144
+
145
+ .stat-label {
146
+ font-size: 11px;
147
+ color: #64748b;
148
+ text-transform: uppercase;
149
+ letter-spacing: 1px;
150
+ }
151
+ </style>
152
+ </head>
153
+ <body>
154
+
155
+ <div class="canvas">
156
+ <div class="title">
157
+ <h1>Rune Skill Mesh</h1>
158
+ <p>5-Layer Architecture &bull; 200+ Connections</p>
159
+ </div>
160
+
161
+ <div class="stats">
162
+ <div class="stat-value">57</div>
163
+ <div class="stat-label">Skills</div>
164
+ <div class="stat-value" style="margin-top:8px">200+</div>
165
+ <div class="stat-label">Connections</div>
166
+ </div>
167
+
168
+ <svg viewBox="0 0 1200 900" xmlns="http://www.w3.org/2000/svg">
169
+ <defs>
170
+ <!-- Radial gradients for rings -->
171
+ <radialGradient id="ring-l4" cx="50%" cy="50%" r="50%">
172
+ <stop offset="0%" stop-color="#06b6d4" stop-opacity="0.03"/>
173
+ <stop offset="100%" stop-color="#06b6d4" stop-opacity="0"/>
174
+ </radialGradient>
175
+ <radialGradient id="ring-l3" cx="50%" cy="50%" r="50%">
176
+ <stop offset="0%" stop-color="#10b981" stop-opacity="0.04"/>
177
+ <stop offset="100%" stop-color="#10b981" stop-opacity="0"/>
178
+ </radialGradient>
179
+ <radialGradient id="ring-l2" cx="50%" cy="50%" r="50%">
180
+ <stop offset="0%" stop-color="#6366f1" stop-opacity="0.05"/>
181
+ <stop offset="100%" stop-color="#6366f1" stop-opacity="0"/>
182
+ </radialGradient>
183
+ <radialGradient id="ring-l1" cx="50%" cy="50%" r="50%">
184
+ <stop offset="0%" stop-color="#ef4444" stop-opacity="0.06"/>
185
+ <stop offset="100%" stop-color="#ef4444" stop-opacity="0"/>
186
+ </radialGradient>
187
+
188
+ <!-- Glow filter -->
189
+ <filter id="glow">
190
+ <feGaussianBlur stdDeviation="3" result="blur"/>
191
+ <feMerge>
192
+ <feMergeNode in="blur"/>
193
+ <feMergeNode in="SourceGraphic"/>
194
+ </feMerge>
195
+ </filter>
196
+
197
+ <filter id="glow-strong">
198
+ <feGaussianBlur stdDeviation="6" result="blur"/>
199
+ <feMerge>
200
+ <feMergeNode in="blur"/>
201
+ <feMergeNode in="SourceGraphic"/>
202
+ </feMerge>
203
+ </filter>
204
+ </defs>
205
+
206
+ <!-- Ring backgrounds -->
207
+ <circle cx="600" cy="440" r="380" fill="url(#ring-l4)" stroke="#06b6d4" stroke-opacity="0.08" stroke-width="1"/>
208
+ <circle cx="600" cy="440" r="300" fill="url(#ring-l3)" stroke="#10b981" stroke-opacity="0.1" stroke-width="1"/>
209
+ <circle cx="600" cy="440" r="210" fill="url(#ring-l2)" stroke="#6366f1" stroke-opacity="0.12" stroke-width="1"/>
210
+ <circle cx="600" cy="440" r="110" fill="url(#ring-l1)" stroke="#ef4444" stroke-opacity="0.15" stroke-width="1"/>
211
+
212
+ <!-- Ring labels -->
213
+ <text x="600" y="82" text-anchor="middle" fill="#06b6d4" opacity="0.4" font-size="11" font-weight="500" letter-spacing="2">L4 EXTENSIONS</text>
214
+ <text x="600" y="158" text-anchor="middle" fill="#10b981" opacity="0.4" font-size="11" font-weight="500" letter-spacing="2">L3 UTILITIES</text>
215
+ <text x="600" y="248" text-anchor="middle" fill="#6366f1" opacity="0.4" font-size="11" font-weight="500" letter-spacing="2">L2 WORKFLOW HUBS</text>
216
+ <text x="600" y="345" text-anchor="middle" fill="#ef4444" opacity="0.4" font-size="11" font-weight="500" letter-spacing="2">L1 ORCHESTRATORS</text>
217
+
218
+ <!-- ==================== CONNECTIONS ==================== -->
219
+ <g id="connections">
220
+ <!-- L0 → L1 connections -->
221
+ <line x1="600" y1="440" x2="510" y2="380" stroke="#f59e0b" stroke-opacity="0.3" stroke-width="1.5" class="connection"/>
222
+ <line x1="600" y1="440" x2="690" y2="380" stroke="#f59e0b" stroke-opacity="0.3" stroke-width="1.5" class="connection"/>
223
+ <line x1="600" y1="440" x2="600" y2="340" stroke="#f59e0b" stroke-opacity="0.3" stroke-width="1.5" class="connection"/>
224
+ <line x1="600" y1="440" x2="520" y2="500" stroke="#f59e0b" stroke-opacity="0.3" stroke-width="1.5" class="connection"/>
225
+ <line x1="600" y1="440" x2="680" y2="500" stroke="#f59e0b" stroke-opacity="0.3" stroke-width="1.5" class="connection"/>
226
+
227
+ <!-- L1 → L2 connections (cook → plan, scout, test, fix, etc.) -->
228
+ <!-- cook connections -->
229
+ <path d="M600,340 Q550,280 430,270" stroke="#ef4444" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
230
+ <path d="M600,340 Q650,280 770,270" stroke="#ef4444" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
231
+ <path d="M600,340 Q600,260 600,240" stroke="#ef4444" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
232
+ <path d="M600,340 Q500,300 400,320" stroke="#ef4444" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
233
+ <path d="M600,340 Q700,300 800,320" stroke="#ef4444" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
234
+
235
+ <!-- team connections -->
236
+ <path d="M510,380 Q450,330 390,300" stroke="#ef4444" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
237
+ <path d="M510,380 Q460,420 410,430" stroke="#ef4444" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
238
+
239
+ <!-- L2 ↔ L2 cross-hub connections (the mesh!) -->
240
+ <!-- plan ↔ brainstorm -->
241
+ <path d="M430,270 Q480,240 540,260" stroke="#6366f1" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
242
+ <!-- fix ↔ debug -->
243
+ <path d="M770,270 Q720,240 660,260" stroke="#6366f1" stroke-opacity="0.2" stroke-width="1" fill="none" class="connection connection-flow"/>
244
+ <!-- debug → scout -->
245
+ <path d="M660,260 Q560,230 480,240" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
246
+ <!-- review → test -->
247
+ <path d="M800,320 Q780,350 760,380" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
248
+ <!-- sentinel → preflight -->
249
+ <path d="M410,430 Q380,460 370,500" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
250
+ <!-- fix → review -->
251
+ <path d="M770,270 Q790,290 800,320" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
252
+ <!-- plan → scout -->
253
+ <path d="M430,270 Q400,250 380,240" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
254
+ <!-- audit → sentinel -->
255
+ <path d="M450,540 Q430,500 410,430" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
256
+ <!-- surgeon → safeguard -->
257
+ <path d="M750,540 Q730,500 720,460" stroke="#6366f1" stroke-opacity="0.15" stroke-width="1" fill="none" class="connection"/>
258
+
259
+ <!-- Additional L2 cross-connections (more mesh density) -->
260
+ <path d="M400,320 Q500,350 600,240" stroke="#6366f1" stroke-opacity="0.1" stroke-width="0.8" fill="none" class="connection"/>
261
+ <path d="M540,260 Q600,300 660,260" stroke="#6366f1" stroke-opacity="0.1" stroke-width="0.8" fill="none" class="connection"/>
262
+ <path d="M370,500 Q400,540 450,540" stroke="#6366f1" stroke-opacity="0.1" stroke-width="0.8" fill="none" class="connection"/>
263
+ <path d="M800,320 Q820,380 790,430" stroke="#6366f1" stroke-opacity="0.1" stroke-width="0.8" fill="none" class="connection"/>
264
+ <path d="M480,240 Q450,300 400,320" stroke="#6366f1" stroke-opacity="0.1" stroke-width="0.8" fill="none" class="connection"/>
265
+
266
+ <!-- L2 → L3 connections -->
267
+ <path d="M430,270 Q360,200 320,180" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
268
+ <path d="M660,260 Q700,200 740,180" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
269
+ <path d="M770,270 Q800,210 850,190" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
270
+ <path d="M410,430 Q350,390 300,350" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
271
+ <path d="M800,320 Q850,300 900,280" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
272
+ <path d="M450,540 Q400,560 350,560" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
273
+ <path d="M750,540 Q800,530 860,510" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
274
+ <path d="M600,240 Q550,180 500,160" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
275
+ <path d="M540,260 Q500,200 460,170" stroke="#10b981" stroke-opacity="0.12" stroke-width="0.8" fill="none" class="connection"/>
276
+
277
+ <!-- L4 → L3 connections (outer) -->
278
+ <path d="M250,120 Q280,150 320,180" stroke="#06b6d4" stroke-opacity="0.1" stroke-width="0.6" fill="none" class="connection"/>
279
+ <path d="M950,120 Q920,150 880,180" stroke="#06b6d4" stroke-opacity="0.1" stroke-width="0.6" fill="none" class="connection"/>
280
+ <path d="M180,400 Q220,380 280,350" stroke="#06b6d4" stroke-opacity="0.1" stroke-width="0.6" fill="none" class="connection"/>
281
+ <path d="M1020,400 Q980,380 920,360" stroke="#06b6d4" stroke-opacity="0.1" stroke-width="0.6" fill="none" class="connection"/>
282
+ <path d="M300,680 Q330,640 370,600" stroke="#06b6d4" stroke-opacity="0.1" stroke-width="0.6" fill="none" class="connection"/>
283
+ <path d="M900,680 Q870,640 830,600" stroke="#06b6d4" stroke-opacity="0.1" stroke-width="0.6" fill="none" class="connection"/>
284
+ </g>
285
+
286
+ <!-- ==================== L4 EXTENSION NODES ==================== -->
287
+ <g id="layer-4">
288
+ <!-- Top arc -->
289
+ <g class="node-group" transform="translate(250,100)">
290
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
291
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="7" font-weight="600">ui</text>
292
+ </g>
293
+ <g class="node-group" transform="translate(390,80)">
294
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
295
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="6.5" font-weight="600">backend</text>
296
+ </g>
297
+ <g class="node-group" transform="translate(530,70)">
298
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
299
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="6.5" font-weight="600">devops</text>
300
+ </g>
301
+ <g class="node-group" transform="translate(670,70)">
302
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
303
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="6.5" font-weight="600">mobile</text>
304
+ </g>
305
+ <g class="node-group" transform="translate(810,80)">
306
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
307
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="6" font-weight="600">security</text>
308
+ </g>
309
+ <g class="node-group" transform="translate(950,100)">
310
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
311
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="6.5" font-weight="600">trading</text>
312
+ </g>
313
+
314
+ <!-- Side nodes -->
315
+ <g class="node-group" transform="translate(170,280)">
316
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
317
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="7" font-weight="600">saas</text>
318
+ </g>
319
+ <g class="node-group" transform="translate(1030,280)">
320
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
321
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="5.5" font-weight="600">ecomm</text>
322
+ </g>
323
+
324
+ <!-- Bottom arc -->
325
+ <g class="node-group" transform="translate(170,560)">
326
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
327
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="7" font-weight="600">ai-ml</text>
328
+ </g>
329
+ <g class="node-group" transform="translate(300,680)">
330
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
331
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="5.5" font-weight="600">gamedev</text>
332
+ </g>
333
+ <g class="node-group" transform="translate(500,730)">
334
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
335
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="5.5" font-weight="600">content</text>
336
+ </g>
337
+ <g class="node-group" transform="translate(700,730)">
338
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
339
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="5" font-weight="600">analytics</text>
340
+ </g>
341
+ <g class="node-group" transform="translate(900,680)">
342
+ <circle r="18" fill="#0e2a3a" stroke="#06b6d4" stroke-width="1.5" stroke-opacity="0.6"/>
343
+ <text y="1" text-anchor="middle" fill="#06b6d4" font-size="4.5" font-weight="600">chrome</text>
344
+ </g>
345
+ </g>
346
+
347
+ <!-- ==================== L3 UTILITY NODES ==================== -->
348
+ <g id="layer-3">
349
+ <!-- Knowledge cluster (top-left) -->
350
+ <g class="node-group" transform="translate(280,170)">
351
+ <circle r="14" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
352
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="6.5" font-weight="600">research</text>
353
+ </g>
354
+ <g class="node-group" transform="translate(340,145)">
355
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
356
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5.5" font-weight="600">docs-seek</text>
357
+ </g>
358
+ <g class="node-group" transform="translate(220,215)">
359
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
360
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5" font-weight="600">trend-sct</text>
361
+ </g>
362
+
363
+ <!-- Validation cluster (top-right) -->
364
+ <g class="node-group" transform="translate(880,170)">
365
+ <circle r="14" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
366
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5" font-weight="600">verifictn</text>
367
+ </g>
368
+ <g class="node-group" transform="translate(940,200)">
369
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
370
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">halluc-grd</text>
371
+ </g>
372
+ <g class="node-group" transform="translate(820,145)">
373
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
374
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">complt-gte</text>
375
+ </g>
376
+ <g class="node-group" transform="translate(960,260)">
377
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
378
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5.5" font-weight="600">sast</text>
379
+ </g>
380
+ <g class="node-group" transform="translate(980,330)">
381
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
382
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">integrity</text>
383
+ </g>
384
+ <g class="node-group" transform="translate(970,400)">
385
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
386
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">constrnt</text>
387
+ </g>
388
+
389
+ <!-- Reasoning cluster (left-mid) -->
390
+ <g class="node-group" transform="translate(220,340)">
391
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
392
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">prob-solv</text>
393
+ </g>
394
+ <g class="node-group" transform="translate(215,400)">
395
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
396
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">seq-think</text>
397
+ </g>
398
+
399
+ <!-- State cluster (bottom-left) -->
400
+ <g class="node-group" transform="translate(230,500)">
401
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
402
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5" font-weight="600">ctx-eng</text>
403
+ </g>
404
+ <g class="node-group" transform="translate(250,560)">
405
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
406
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5.5" font-weight="600">journal</text>
407
+ </g>
408
+ <g class="node-group" transform="translate(300,610)">
409
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
410
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">sess-brdg</text>
411
+ </g>
412
+
413
+ <!-- Tools cluster (bottom-right) -->
414
+ <g class="node-group" transform="translate(860,510)">
415
+ <circle r="13" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
416
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5" font-weight="600">watchdog</text>
417
+ </g>
418
+ <g class="node-group" transform="translate(910,560)">
419
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
420
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">scope-grd</text>
421
+ </g>
422
+ <g class="node-group" transform="translate(840,580)">
423
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
424
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">browser</text>
425
+ </g>
426
+ <g class="node-group" transform="translate(950,470)">
427
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
428
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">dep-doc</text>
429
+ </g>
430
+
431
+ <!-- Remaining L3 nodes -->
432
+ <g class="node-group" transform="translate(460,155)">
433
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
434
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="5" font-weight="600">worktree</text>
435
+ </g>
436
+ <g class="node-group" transform="translate(740,155)">
437
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
438
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="7" font-weight="600">git</text>
439
+ </g>
440
+ <g class="node-group" transform="translate(780,620)">
441
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
442
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">asset-crt</text>
443
+ </g>
444
+ <g class="node-group" transform="translate(700,650)">
445
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
446
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">video-crt</text>
447
+ </g>
448
+ <g class="node-group" transform="translate(500,660)">
449
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
450
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">doc-proc</text>
451
+ </g>
452
+ <g class="node-group" transform="translate(400,640)">
453
+ <circle r="12" fill="#0a2920" stroke="#10b981" stroke-width="1.5" stroke-opacity="0.7"/>
454
+ <text y="1" text-anchor="middle" fill="#10b981" font-size="4.5" font-weight="600">sent-env</text>
455
+ </g>
456
+ </g>
457
+
458
+ <!-- ==================== L2 WORKFLOW HUB NODES ==================== -->
459
+ <g id="layer-2">
460
+ <!-- CREATION cluster (top) -->
461
+ <g class="node-group" transform="translate(430,270)">
462
+ <circle r="20" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8" filter="url(#glow)"/>
463
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="8" font-weight="700">plan</text>
464
+ </g>
465
+ <g class="node-group" transform="translate(540,260)">
466
+ <circle r="18" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
467
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="6.5" font-weight="600">brainstm</text>
468
+ </g>
469
+ <g class="node-group" transform="translate(480,230)">
470
+ <circle r="16" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
471
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="7" font-weight="600">scout</text>
472
+ </g>
473
+ <g class="node-group" transform="translate(600,230)">
474
+ <circle r="16" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
475
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="7" font-weight="600">design</text>
476
+ </g>
477
+ <g class="node-group" transform="translate(370,240)">
478
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
479
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5" font-weight="600">skl-forge</text>
480
+ </g>
481
+ <g class="node-group" transform="translate(520,290)">
482
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
483
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="8" font-weight="600">ba</text>
484
+ </g>
485
+ <g class="node-group" transform="translate(680,230)">
486
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
487
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5" font-weight="600">mcp-bldr</text>
488
+ </g>
489
+
490
+ <!-- DEVELOPMENT cluster (right) -->
491
+ <g class="node-group" transform="translate(660,265)">
492
+ <circle r="18" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
493
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="7" font-weight="600">debug</text>
494
+ </g>
495
+ <g class="node-group" transform="translate(770,270)">
496
+ <circle r="20" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8" filter="url(#glow)"/>
497
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="9" font-weight="700">fix</text>
498
+ </g>
499
+ <g class="node-group" transform="translate(760,370)">
500
+ <circle r="17" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
501
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="8" font-weight="600">test</text>
502
+ </g>
503
+ <g class="node-group" transform="translate(800,320)">
504
+ <circle r="17" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
505
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="7" font-weight="600">review</text>
506
+ </g>
507
+ <g class="node-group" transform="translate(830,400)">
508
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
509
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="8" font-weight="600">db</text>
510
+ </g>
511
+
512
+ <!-- QUALITY cluster (left) -->
513
+ <g class="node-group" transform="translate(410,420)">
514
+ <circle r="18" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8" filter="url(#glow)"/>
515
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="6.5" font-weight="700">sentinel</text>
516
+ </g>
517
+ <g class="node-group" transform="translate(370,490)">
518
+ <circle r="16" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
519
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="6" font-weight="600">preflight</text>
520
+ </g>
521
+ <g class="node-group" transform="translate(340,370)">
522
+ <circle r="15" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
523
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="6" font-weight="600">onboard</text>
524
+ </g>
525
+ <g class="node-group" transform="translate(400,330)">
526
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
527
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="8" font-weight="600">perf</text>
528
+ </g>
529
+ <g class="node-group" transform="translate(330,440)">
530
+ <circle r="13" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
531
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5" font-weight="600">logic-grd</text>
532
+ </g>
533
+ <g class="node-group" transform="translate(740,440)">
534
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
535
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5" font-weight="600">rvw-intk</text>
536
+ </g>
537
+ <g class="node-group" transform="translate(350,310)">
538
+ <circle r="13" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
539
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5" font-weight="600">adversry</text>
540
+ </g>
541
+
542
+ <!-- DELIVERY cluster (bottom) -->
543
+ <g class="node-group" transform="translate(560,560)">
544
+ <circle r="16" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
545
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="7" font-weight="600">deploy</text>
546
+ </g>
547
+ <g class="node-group" transform="translate(640,570)">
548
+ <circle r="15" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
549
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5.5" font-weight="600">marketng</text>
550
+ </g>
551
+ <g class="node-group" transform="translate(600,610)">
552
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
553
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5.5" font-weight="600">incident</text>
554
+ </g>
555
+ <g class="node-group" transform="translate(480,570)">
556
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
557
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="8" font-weight="600">docs</text>
558
+ </g>
559
+
560
+ <!-- RESCUE cluster (bottom-sides) -->
561
+ <g class="node-group" transform="translate(450,540)">
562
+ <circle r="16" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
563
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="7" font-weight="600">audit</text>
564
+ </g>
565
+ <g class="node-group" transform="translate(750,540)">
566
+ <circle r="15" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
567
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="6" font-weight="600">surgeon</text>
568
+ </g>
569
+ <g class="node-group" transform="translate(720,480)">
570
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
571
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="5.5" font-weight="600">safegrd</text>
572
+ </g>
573
+ <g class="node-group" transform="translate(790,480)">
574
+ <circle r="14" fill="#1a1540" stroke="#6366f1" stroke-width="2" stroke-opacity="0.8"/>
575
+ <text y="1" text-anchor="middle" fill="#a5b4fc" font-size="6" font-weight="600">autopsy</text>
576
+ </g>
577
+ </g>
578
+
579
+ <!-- ==================== L1 ORCHESTRATOR NODES ==================== -->
580
+ <g id="layer-1">
581
+ <g class="node-group" transform="translate(600,340)">
582
+ <circle r="26" fill="#2a0a0a" stroke="#ef4444" stroke-width="2.5" stroke-opacity="0.9" filter="url(#glow-strong)"/>
583
+ <text y="1" text-anchor="middle" fill="#fca5a5" font-size="11" font-weight="700">cook</text>
584
+ </g>
585
+ <g class="node-group" transform="translate(510,380)">
586
+ <circle r="22" fill="#2a0a0a" stroke="#ef4444" stroke-width="2" stroke-opacity="0.8" filter="url(#glow)"/>
587
+ <text y="1" text-anchor="middle" fill="#fca5a5" font-size="10" font-weight="700">team</text>
588
+ </g>
589
+ <g class="node-group" transform="translate(690,380)">
590
+ <circle r="20" fill="#2a0a0a" stroke="#ef4444" stroke-width="2" stroke-opacity="0.8"/>
591
+ <text y="1" text-anchor="middle" fill="#fca5a5" font-size="8" font-weight="600">launch</text>
592
+ </g>
593
+ <g class="node-group" transform="translate(520,470)">
594
+ <circle r="18" fill="#2a0a0a" stroke="#ef4444" stroke-width="2" stroke-opacity="0.8"/>
595
+ <text y="1" text-anchor="middle" fill="#fca5a5" font-size="7.5" font-weight="600">rescue</text>
596
+ </g>
597
+ <g class="node-group" transform="translate(680,470)">
598
+ <circle r="18" fill="#2a0a0a" stroke="#ef4444" stroke-width="2" stroke-opacity="0.8"/>
599
+ <text y="1" text-anchor="middle" fill="#fca5a5" font-size="6.5" font-weight="600">scaffold</text>
600
+ </g>
601
+ </g>
602
+
603
+ <!-- ==================== L0 ROUTER NODE ==================== -->
604
+ <g id="layer-0">
605
+ <g class="node-group" transform="translate(600,440)">
606
+ <circle r="32" fill="#1a1200" stroke="#f59e0b" stroke-width="3" stroke-opacity="0.9" filter="url(#glow-strong)">
607
+ <animate attributeName="r" values="32;34;32" dur="3s" repeatCount="indefinite"/>
608
+ </circle>
609
+ <text y="-4" text-anchor="middle" fill="#fcd34d" font-size="8" font-weight="700">skill</text>
610
+ <text y="8" text-anchor="middle" fill="#fcd34d" font-size="8" font-weight="700">router</text>
611
+ </g>
612
+ </g>
613
+ </svg>
614
+
615
+ <!-- Legend -->
616
+ <div class="legend">
617
+ <div class="legend-item">
618
+ <div class="legend-dot" style="background:#f59e0b"></div>
619
+ <span style="color:#f59e0b">L0 Router</span>
620
+ </div>
621
+ <div class="legend-item">
622
+ <div class="legend-dot" style="background:#ef4444"></div>
623
+ <span style="color:#ef4444">L1 Orchestrators</span>
624
+ </div>
625
+ <div class="legend-item">
626
+ <div class="legend-dot" style="background:#6366f1"></div>
627
+ <span style="color:#6366f1">L2 Workflow Hubs</span>
628
+ </div>
629
+ <div class="legend-item">
630
+ <div class="legend-dot" style="background:#10b981"></div>
631
+ <span style="color:#10b981">L3 Utilities</span>
632
+ </div>
633
+ <div class="legend-item">
634
+ <div class="legend-dot" style="background:#06b6d4"></div>
635
+ <span style="color:#06b6d4">L4 Extensions</span>
636
+ </div>
637
+ </div>
638
+ </div>
639
+
640
+ <script>
641
+ // Staggered animation for nodes
642
+ document.querySelectorAll('.node-group').forEach((node, i) => {
643
+ node.style.opacity = '0';
644
+ node.style.animation = `fade-in-up 0.5s ease ${i * 30}ms forwards`;
645
+ });
646
+
647
+ // Staggered animation for connections
648
+ document.querySelectorAll('.connection').forEach((conn, i) => {
649
+ conn.style.animationDelay = `${i * 100}ms`;
650
+ });
651
+ </script>
652
+
653
+ </body>
654
+ </html>