@qontinui/navigation 0.1.3 → 0.1.5
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/index.cjs +63 -28
- package/dist/index.d.cts +17 -5
- package/dist/index.d.ts +17 -5
- package/dist/index.js +63 -28
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -292,7 +292,8 @@ var SPEND_ITEMS = [
|
|
|
292
292
|
description: "Token usage, cost breakdown, and provider latency analytics",
|
|
293
293
|
color: "#D97706",
|
|
294
294
|
platforms: ["runner"],
|
|
295
|
-
productMode: "ai"
|
|
295
|
+
productMode: "ai",
|
|
296
|
+
hidden: true
|
|
296
297
|
},
|
|
297
298
|
{
|
|
298
299
|
id: "cost-control",
|
|
@@ -301,7 +302,8 @@ var SPEND_ITEMS = [
|
|
|
301
302
|
description: "Real-time budget tracking, circuit breakers, and cost anomaly detection",
|
|
302
303
|
color: "#EF4444",
|
|
303
304
|
platforms: ["runner"],
|
|
304
|
-
productMode: "ai"
|
|
305
|
+
productMode: "ai",
|
|
306
|
+
hidden: true
|
|
305
307
|
}
|
|
306
308
|
];
|
|
307
309
|
var SPEND_GROUP = {
|
|
@@ -316,14 +318,20 @@ var AUTOMATE_ITEMS = [
|
|
|
316
318
|
label: "Scheduled Tasks",
|
|
317
319
|
icon: "Calendar",
|
|
318
320
|
description: "Manage scheduled automation",
|
|
319
|
-
productMode: "ai"
|
|
321
|
+
productMode: "ai",
|
|
322
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
323
|
+
platforms: ["runner"],
|
|
324
|
+
hidden: true
|
|
320
325
|
},
|
|
321
326
|
{
|
|
322
327
|
id: "triggers",
|
|
323
328
|
label: "Triggers",
|
|
324
329
|
icon: "Zap",
|
|
325
330
|
description: "Event-driven workflow automation",
|
|
326
|
-
productMode: "ai"
|
|
331
|
+
productMode: "ai",
|
|
332
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
333
|
+
platforms: ["runner"],
|
|
334
|
+
hidden: true
|
|
327
335
|
},
|
|
328
336
|
{
|
|
329
337
|
id: "watchers",
|
|
@@ -332,7 +340,8 @@ var AUTOMATE_ITEMS = [
|
|
|
332
340
|
description: "Scheduled reactive agents that monitor the activity timeline",
|
|
333
341
|
route: "/observe/watchers",
|
|
334
342
|
color: "#06B6D4",
|
|
335
|
-
platforms: ["runner"]
|
|
343
|
+
platforms: ["runner"],
|
|
344
|
+
hidden: true
|
|
336
345
|
}
|
|
337
346
|
];
|
|
338
347
|
var AUTOMATE_GROUP = {
|
|
@@ -383,7 +392,8 @@ var BUILD_ITEMS = [
|
|
|
383
392
|
description: "Browse saved automation assets",
|
|
384
393
|
route: "/library",
|
|
385
394
|
color: "var(--brand-secondary)",
|
|
386
|
-
productMode: "ai"
|
|
395
|
+
productMode: "ai",
|
|
396
|
+
hidden: true
|
|
387
397
|
},
|
|
388
398
|
{
|
|
389
399
|
id: "state-machine",
|
|
@@ -392,7 +402,8 @@ var BUILD_ITEMS = [
|
|
|
392
402
|
description: "Build state machines from UI Bridge SDK apps",
|
|
393
403
|
route: "/automation-builder/ui-bridge-states",
|
|
394
404
|
color: "var(--brand-secondary)",
|
|
395
|
-
productMode: "ai"
|
|
405
|
+
productMode: "ai",
|
|
406
|
+
hidden: true
|
|
396
407
|
},
|
|
397
408
|
{
|
|
398
409
|
id: "specs",
|
|
@@ -401,7 +412,8 @@ var BUILD_ITEMS = [
|
|
|
401
412
|
description: "Manage and generate UI Bridge page specs for testing and automation",
|
|
402
413
|
route: "/build/specs",
|
|
403
414
|
color: "var(--brand-secondary)",
|
|
404
|
-
productMode: "ai"
|
|
415
|
+
productMode: "ai",
|
|
416
|
+
hidden: true
|
|
405
417
|
},
|
|
406
418
|
{
|
|
407
419
|
id: "regression",
|
|
@@ -410,7 +422,8 @@ var BUILD_ITEMS = [
|
|
|
410
422
|
description: "Run auto-generated regression suites against the live UI Bridge registry; review coverage and self-diagnoses for failures",
|
|
411
423
|
color: "var(--brand-secondary)",
|
|
412
424
|
platforms: ["runner"],
|
|
413
|
-
productMode: "ai"
|
|
425
|
+
productMode: "ai",
|
|
426
|
+
hidden: true
|
|
414
427
|
},
|
|
415
428
|
{
|
|
416
429
|
id: "vga",
|
|
@@ -419,7 +432,9 @@ var BUILD_ITEMS = [
|
|
|
419
432
|
description: "Visual GUI automation \u2014 build state machines and inspect runs",
|
|
420
433
|
route: "/vga",
|
|
421
434
|
color: "var(--brand-secondary)",
|
|
422
|
-
|
|
435
|
+
// Visual GUI automation belongs to Visual mode, not AI Dev (removed from
|
|
436
|
+
// the AI Dev sidebar on both runner and web).
|
|
437
|
+
productMode: "visual"
|
|
423
438
|
},
|
|
424
439
|
{
|
|
425
440
|
id: "orchestration-loop",
|
|
@@ -439,7 +454,8 @@ var BUILD_ITEMS = [
|
|
|
439
454
|
route: "/build/demo-videos",
|
|
440
455
|
color: "var(--brand-secondary)",
|
|
441
456
|
platforms: ["runner"],
|
|
442
|
-
productMode: "ai"
|
|
457
|
+
productMode: "ai",
|
|
458
|
+
hidden: true
|
|
443
459
|
},
|
|
444
460
|
{
|
|
445
461
|
id: "product-tours",
|
|
@@ -449,7 +465,8 @@ var BUILD_ITEMS = [
|
|
|
449
465
|
route: "/build/product-tours",
|
|
450
466
|
color: "var(--brand-secondary)",
|
|
451
467
|
platforms: ["runner"],
|
|
452
|
-
productMode: "ai"
|
|
468
|
+
productMode: "ai",
|
|
469
|
+
hidden: true
|
|
453
470
|
},
|
|
454
471
|
{
|
|
455
472
|
id: "wrappers",
|
|
@@ -458,7 +475,8 @@ var BUILD_ITEMS = [
|
|
|
458
475
|
description: "Install and manage wrapper extensions",
|
|
459
476
|
route: "/wrappers",
|
|
460
477
|
color: "#06B6D4",
|
|
461
|
-
platforms: ["runner"]
|
|
478
|
+
platforms: ["runner"],
|
|
479
|
+
hidden: true
|
|
462
480
|
}
|
|
463
481
|
];
|
|
464
482
|
var BUILD_GROUP = {
|
|
@@ -475,7 +493,8 @@ var INSIGHTS_ITEMS = [
|
|
|
475
493
|
description: "Monitor and fix application errors from log sources",
|
|
476
494
|
route: "/tools/error-monitor",
|
|
477
495
|
color: "#4A90D9",
|
|
478
|
-
productMode: "ai"
|
|
496
|
+
productMode: "ai",
|
|
497
|
+
hidden: true
|
|
479
498
|
},
|
|
480
499
|
{
|
|
481
500
|
id: "processes",
|
|
@@ -483,7 +502,8 @@ var INSIGHTS_ITEMS = [
|
|
|
483
502
|
icon: "Cpu",
|
|
484
503
|
description: "Manage and monitor spawned child processes",
|
|
485
504
|
color: "#06B6D4",
|
|
486
|
-
productMode: "ai"
|
|
505
|
+
productMode: "ai",
|
|
506
|
+
hidden: true
|
|
487
507
|
},
|
|
488
508
|
{
|
|
489
509
|
id: "activity-timeline",
|
|
@@ -492,7 +512,8 @@ var INSIGHTS_ITEMS = [
|
|
|
492
512
|
description: "Searchable capture history \u2014 everything seen on screen during automation",
|
|
493
513
|
route: "/observe/activity-timeline",
|
|
494
514
|
color: "#06B6D4",
|
|
495
|
-
platforms: ["runner"]
|
|
515
|
+
platforms: ["runner"],
|
|
516
|
+
hidden: true
|
|
496
517
|
},
|
|
497
518
|
{
|
|
498
519
|
id: "automation-health",
|
|
@@ -501,21 +522,26 @@ var INSIGHTS_ITEMS = [
|
|
|
501
522
|
description: "UI Bridge automation quality, selector reliability, and improvement recommendations",
|
|
502
523
|
color: "#10B981",
|
|
503
524
|
platforms: ["runner"],
|
|
504
|
-
productMode: "ai"
|
|
525
|
+
productMode: "ai",
|
|
526
|
+
hidden: true
|
|
505
527
|
},
|
|
506
528
|
{
|
|
507
529
|
id: "reflection",
|
|
508
530
|
label: "Reflection",
|
|
509
531
|
icon: "RotateCcw",
|
|
510
532
|
description: "Reflection fix effectiveness and history",
|
|
511
|
-
productMode: "ai"
|
|
533
|
+
productMode: "ai",
|
|
534
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
535
|
+
platforms: ["runner"],
|
|
536
|
+
hidden: true
|
|
512
537
|
},
|
|
513
538
|
{
|
|
514
539
|
id: "architecture",
|
|
515
540
|
label: "Architecture",
|
|
516
541
|
icon: "GitBranch",
|
|
517
542
|
description: "Component dependency graph and SDK project architecture",
|
|
518
|
-
productMode: "ai"
|
|
543
|
+
productMode: "ai",
|
|
544
|
+
hidden: true
|
|
519
545
|
},
|
|
520
546
|
{
|
|
521
547
|
id: "api-surface",
|
|
@@ -523,7 +549,8 @@ var INSIGHTS_ITEMS = [
|
|
|
523
549
|
icon: "Network",
|
|
524
550
|
description: "Interactive map of every endpoint, command, query, and their connections",
|
|
525
551
|
color: "#06B6D4",
|
|
526
|
-
platforms: ["runner"]
|
|
552
|
+
platforms: ["runner"],
|
|
553
|
+
hidden: true
|
|
527
554
|
},
|
|
528
555
|
{
|
|
529
556
|
id: "development-intelligence",
|
|
@@ -533,7 +560,8 @@ var INSIGHTS_ITEMS = [
|
|
|
533
560
|
route: "/observe/development-intelligence",
|
|
534
561
|
color: "#8B5CF6",
|
|
535
562
|
platforms: ["runner"],
|
|
536
|
-
productMode: "ai"
|
|
563
|
+
productMode: "ai",
|
|
564
|
+
hidden: true
|
|
537
565
|
},
|
|
538
566
|
{
|
|
539
567
|
id: "project-explainer",
|
|
@@ -542,7 +570,8 @@ var INSIGHTS_ITEMS = [
|
|
|
542
570
|
description: "Hierarchical explainer for any project: overview, per-cluster narratives, and per-page deep dives with embedded architecture diagrams. AI side panel for asking questions while reading.",
|
|
543
571
|
route: "/observe/explainer",
|
|
544
572
|
color: "#06B6D4",
|
|
545
|
-
platforms: ["runner"]
|
|
573
|
+
platforms: ["runner"],
|
|
574
|
+
hidden: true
|
|
546
575
|
},
|
|
547
576
|
{
|
|
548
577
|
id: "decision-trail",
|
|
@@ -552,7 +581,8 @@ var INSIGHTS_ITEMS = [
|
|
|
552
581
|
route: "/observe/decision-trail",
|
|
553
582
|
color: "#8B5CF6",
|
|
554
583
|
productMode: "ai",
|
|
555
|
-
platforms: ["runner"]
|
|
584
|
+
platforms: ["runner"],
|
|
585
|
+
hidden: true
|
|
556
586
|
},
|
|
557
587
|
{
|
|
558
588
|
id: "session-recap",
|
|
@@ -562,7 +592,8 @@ var INSIGHTS_ITEMS = [
|
|
|
562
592
|
route: "/observe/session-recap",
|
|
563
593
|
color: "#8B5CF6",
|
|
564
594
|
platforms: ["runner"],
|
|
565
|
-
productMode: "ai"
|
|
595
|
+
productMode: "ai",
|
|
596
|
+
hidden: true
|
|
566
597
|
}
|
|
567
598
|
];
|
|
568
599
|
var INSIGHTS_GROUP = {
|
|
@@ -579,21 +610,24 @@ var CONFIGURE_ITEMS = [
|
|
|
579
610
|
description: "Configure finding patterns",
|
|
580
611
|
route: "/configure/finding-rules",
|
|
581
612
|
color: "#FFD700",
|
|
582
|
-
productMode: "ai"
|
|
613
|
+
productMode: "ai",
|
|
614
|
+
hidden: true
|
|
583
615
|
},
|
|
584
616
|
{
|
|
585
617
|
id: "config-hooks",
|
|
586
618
|
label: "Lifecycle Hooks",
|
|
587
619
|
icon: "Webhook",
|
|
588
620
|
description: "Configure execution event triggers",
|
|
589
|
-
productMode: "ai"
|
|
621
|
+
productMode: "ai",
|
|
622
|
+
hidden: true
|
|
590
623
|
},
|
|
591
624
|
{
|
|
592
625
|
id: "config-ui-bridge",
|
|
593
626
|
label: "UI Bridge",
|
|
594
627
|
icon: "Plug",
|
|
595
628
|
description: "Manage UI Bridge integrations for external apps",
|
|
596
|
-
productMode: "ai"
|
|
629
|
+
productMode: "ai",
|
|
630
|
+
hidden: true
|
|
597
631
|
},
|
|
598
632
|
{
|
|
599
633
|
id: "event-history",
|
|
@@ -676,7 +710,8 @@ var DEV_ITEMS = [
|
|
|
676
710
|
icon: "Accessibility",
|
|
677
711
|
description: "Inspect and interact with native desktop accessibility trees via UIA, AT-SPI, or AX APIs",
|
|
678
712
|
color: "#06B6D4",
|
|
679
|
-
platforms: ["runner"]
|
|
713
|
+
platforms: ["runner"],
|
|
714
|
+
hidden: true
|
|
680
715
|
}
|
|
681
716
|
];
|
|
682
717
|
var DEV_GROUP = {
|
package/dist/index.d.cts
CHANGED
|
@@ -174,14 +174,26 @@ type NavigationAction = {
|
|
|
174
174
|
*
|
|
175
175
|
* The new IA applies progressive disclosure:
|
|
176
176
|
* - WORKSPACE / REVIEW / SYSTEM — the daily set, expanded by default.
|
|
177
|
-
* - SPEND / AUTOMATE / BUILD / INSIGHTS / CONFIGURE / DEV —
|
|
178
|
-
*
|
|
179
|
-
*
|
|
180
|
-
*
|
|
177
|
+
* - SPEND / AUTOMATE / BUILD / INSIGHTS / CONFIGURE / DEV — the legacy
|
|
178
|
+
* workflow-builder + monitoring + accumulated-intelligence long tail.
|
|
179
|
+
* These are flagged `hidden: true` so they are kept out of the default
|
|
180
|
+
* sidebar entirely until the user opts into "Show advanced automation
|
|
181
|
+
* features" (setShowHiddenItems) — the same one-toggle disclosure that
|
|
182
|
+
* reveals the workflow-authoring builders. Nothing is removed; every route
|
|
183
|
+
* and tab id is preserved so deep-links and tab-activation keep resolving.
|
|
184
|
+
* (Groups that end up with no visible items are dropped by
|
|
185
|
+
* filterGroupsForPlatform, so no bare group header renders.)
|
|
186
|
+
*
|
|
187
|
+
* The default (toggle OFF, AI Dev mode) is therefore the lean, Terminal-first
|
|
188
|
+
* set: WORKSPACE (Home / Terminal / Active / Productivity), REVIEW (Runs /
|
|
189
|
+
* Findings / Memory / Knowledge), and SYSTEM (Settings / Help). This mirrors
|
|
190
|
+
* qontinui-web's coord+sessions-centric default menu.
|
|
181
191
|
*
|
|
182
192
|
* Both platforms share this structure; per-item `platforms`/`productMode`
|
|
183
193
|
* filters yield the right view for each (web has no Terminal; runner has no
|
|
184
|
-
* Dashboard/Runners, etc.).
|
|
194
|
+
* Dashboard/Runners, etc.). qontinui-web additionally demotes a few items the
|
|
195
|
+
* runner keeps (runs/active/findings/memory — task_run-scoped, not session-
|
|
196
|
+
* scoped) via its own local list; those stay un-`hidden` here.
|
|
185
197
|
*/
|
|
186
198
|
|
|
187
199
|
declare const WORKSPACE_ITEMS: NavigationItem[];
|
package/dist/index.d.ts
CHANGED
|
@@ -174,14 +174,26 @@ type NavigationAction = {
|
|
|
174
174
|
*
|
|
175
175
|
* The new IA applies progressive disclosure:
|
|
176
176
|
* - WORKSPACE / REVIEW / SYSTEM — the daily set, expanded by default.
|
|
177
|
-
* - SPEND / AUTOMATE / BUILD / INSIGHTS / CONFIGURE / DEV —
|
|
178
|
-
*
|
|
179
|
-
*
|
|
180
|
-
*
|
|
177
|
+
* - SPEND / AUTOMATE / BUILD / INSIGHTS / CONFIGURE / DEV — the legacy
|
|
178
|
+
* workflow-builder + monitoring + accumulated-intelligence long tail.
|
|
179
|
+
* These are flagged `hidden: true` so they are kept out of the default
|
|
180
|
+
* sidebar entirely until the user opts into "Show advanced automation
|
|
181
|
+
* features" (setShowHiddenItems) — the same one-toggle disclosure that
|
|
182
|
+
* reveals the workflow-authoring builders. Nothing is removed; every route
|
|
183
|
+
* and tab id is preserved so deep-links and tab-activation keep resolving.
|
|
184
|
+
* (Groups that end up with no visible items are dropped by
|
|
185
|
+
* filterGroupsForPlatform, so no bare group header renders.)
|
|
186
|
+
*
|
|
187
|
+
* The default (toggle OFF, AI Dev mode) is therefore the lean, Terminal-first
|
|
188
|
+
* set: WORKSPACE (Home / Terminal / Active / Productivity), REVIEW (Runs /
|
|
189
|
+
* Findings / Memory / Knowledge), and SYSTEM (Settings / Help). This mirrors
|
|
190
|
+
* qontinui-web's coord+sessions-centric default menu.
|
|
181
191
|
*
|
|
182
192
|
* Both platforms share this structure; per-item `platforms`/`productMode`
|
|
183
193
|
* filters yield the right view for each (web has no Terminal; runner has no
|
|
184
|
-
* Dashboard/Runners, etc.).
|
|
194
|
+
* Dashboard/Runners, etc.). qontinui-web additionally demotes a few items the
|
|
195
|
+
* runner keeps (runs/active/findings/memory — task_run-scoped, not session-
|
|
196
|
+
* scoped) via its own local list; those stay un-`hidden` here.
|
|
185
197
|
*/
|
|
186
198
|
|
|
187
199
|
declare const WORKSPACE_ITEMS: NavigationItem[];
|
package/dist/index.js
CHANGED
|
@@ -202,7 +202,8 @@ var SPEND_ITEMS = [
|
|
|
202
202
|
description: "Token usage, cost breakdown, and provider latency analytics",
|
|
203
203
|
color: "#D97706",
|
|
204
204
|
platforms: ["runner"],
|
|
205
|
-
productMode: "ai"
|
|
205
|
+
productMode: "ai",
|
|
206
|
+
hidden: true
|
|
206
207
|
},
|
|
207
208
|
{
|
|
208
209
|
id: "cost-control",
|
|
@@ -211,7 +212,8 @@ var SPEND_ITEMS = [
|
|
|
211
212
|
description: "Real-time budget tracking, circuit breakers, and cost anomaly detection",
|
|
212
213
|
color: "#EF4444",
|
|
213
214
|
platforms: ["runner"],
|
|
214
|
-
productMode: "ai"
|
|
215
|
+
productMode: "ai",
|
|
216
|
+
hidden: true
|
|
215
217
|
}
|
|
216
218
|
];
|
|
217
219
|
var SPEND_GROUP = {
|
|
@@ -226,14 +228,20 @@ var AUTOMATE_ITEMS = [
|
|
|
226
228
|
label: "Scheduled Tasks",
|
|
227
229
|
icon: "Calendar",
|
|
228
230
|
description: "Manage scheduled automation",
|
|
229
|
-
productMode: "ai"
|
|
231
|
+
productMode: "ai",
|
|
232
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
233
|
+
platforms: ["runner"],
|
|
234
|
+
hidden: true
|
|
230
235
|
},
|
|
231
236
|
{
|
|
232
237
|
id: "triggers",
|
|
233
238
|
label: "Triggers",
|
|
234
239
|
icon: "Zap",
|
|
235
240
|
description: "Event-driven workflow automation",
|
|
236
|
-
productMode: "ai"
|
|
241
|
+
productMode: "ai",
|
|
242
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
243
|
+
platforms: ["runner"],
|
|
244
|
+
hidden: true
|
|
237
245
|
},
|
|
238
246
|
{
|
|
239
247
|
id: "watchers",
|
|
@@ -242,7 +250,8 @@ var AUTOMATE_ITEMS = [
|
|
|
242
250
|
description: "Scheduled reactive agents that monitor the activity timeline",
|
|
243
251
|
route: "/observe/watchers",
|
|
244
252
|
color: "#06B6D4",
|
|
245
|
-
platforms: ["runner"]
|
|
253
|
+
platforms: ["runner"],
|
|
254
|
+
hidden: true
|
|
246
255
|
}
|
|
247
256
|
];
|
|
248
257
|
var AUTOMATE_GROUP = {
|
|
@@ -293,7 +302,8 @@ var BUILD_ITEMS = [
|
|
|
293
302
|
description: "Browse saved automation assets",
|
|
294
303
|
route: "/library",
|
|
295
304
|
color: "var(--brand-secondary)",
|
|
296
|
-
productMode: "ai"
|
|
305
|
+
productMode: "ai",
|
|
306
|
+
hidden: true
|
|
297
307
|
},
|
|
298
308
|
{
|
|
299
309
|
id: "state-machine",
|
|
@@ -302,7 +312,8 @@ var BUILD_ITEMS = [
|
|
|
302
312
|
description: "Build state machines from UI Bridge SDK apps",
|
|
303
313
|
route: "/automation-builder/ui-bridge-states",
|
|
304
314
|
color: "var(--brand-secondary)",
|
|
305
|
-
productMode: "ai"
|
|
315
|
+
productMode: "ai",
|
|
316
|
+
hidden: true
|
|
306
317
|
},
|
|
307
318
|
{
|
|
308
319
|
id: "specs",
|
|
@@ -311,7 +322,8 @@ var BUILD_ITEMS = [
|
|
|
311
322
|
description: "Manage and generate UI Bridge page specs for testing and automation",
|
|
312
323
|
route: "/build/specs",
|
|
313
324
|
color: "var(--brand-secondary)",
|
|
314
|
-
productMode: "ai"
|
|
325
|
+
productMode: "ai",
|
|
326
|
+
hidden: true
|
|
315
327
|
},
|
|
316
328
|
{
|
|
317
329
|
id: "regression",
|
|
@@ -320,7 +332,8 @@ var BUILD_ITEMS = [
|
|
|
320
332
|
description: "Run auto-generated regression suites against the live UI Bridge registry; review coverage and self-diagnoses for failures",
|
|
321
333
|
color: "var(--brand-secondary)",
|
|
322
334
|
platforms: ["runner"],
|
|
323
|
-
productMode: "ai"
|
|
335
|
+
productMode: "ai",
|
|
336
|
+
hidden: true
|
|
324
337
|
},
|
|
325
338
|
{
|
|
326
339
|
id: "vga",
|
|
@@ -329,7 +342,9 @@ var BUILD_ITEMS = [
|
|
|
329
342
|
description: "Visual GUI automation \u2014 build state machines and inspect runs",
|
|
330
343
|
route: "/vga",
|
|
331
344
|
color: "var(--brand-secondary)",
|
|
332
|
-
|
|
345
|
+
// Visual GUI automation belongs to Visual mode, not AI Dev (removed from
|
|
346
|
+
// the AI Dev sidebar on both runner and web).
|
|
347
|
+
productMode: "visual"
|
|
333
348
|
},
|
|
334
349
|
{
|
|
335
350
|
id: "orchestration-loop",
|
|
@@ -349,7 +364,8 @@ var BUILD_ITEMS = [
|
|
|
349
364
|
route: "/build/demo-videos",
|
|
350
365
|
color: "var(--brand-secondary)",
|
|
351
366
|
platforms: ["runner"],
|
|
352
|
-
productMode: "ai"
|
|
367
|
+
productMode: "ai",
|
|
368
|
+
hidden: true
|
|
353
369
|
},
|
|
354
370
|
{
|
|
355
371
|
id: "product-tours",
|
|
@@ -359,7 +375,8 @@ var BUILD_ITEMS = [
|
|
|
359
375
|
route: "/build/product-tours",
|
|
360
376
|
color: "var(--brand-secondary)",
|
|
361
377
|
platforms: ["runner"],
|
|
362
|
-
productMode: "ai"
|
|
378
|
+
productMode: "ai",
|
|
379
|
+
hidden: true
|
|
363
380
|
},
|
|
364
381
|
{
|
|
365
382
|
id: "wrappers",
|
|
@@ -368,7 +385,8 @@ var BUILD_ITEMS = [
|
|
|
368
385
|
description: "Install and manage wrapper extensions",
|
|
369
386
|
route: "/wrappers",
|
|
370
387
|
color: "#06B6D4",
|
|
371
|
-
platforms: ["runner"]
|
|
388
|
+
platforms: ["runner"],
|
|
389
|
+
hidden: true
|
|
372
390
|
}
|
|
373
391
|
];
|
|
374
392
|
var BUILD_GROUP = {
|
|
@@ -385,7 +403,8 @@ var INSIGHTS_ITEMS = [
|
|
|
385
403
|
description: "Monitor and fix application errors from log sources",
|
|
386
404
|
route: "/tools/error-monitor",
|
|
387
405
|
color: "#4A90D9",
|
|
388
|
-
productMode: "ai"
|
|
406
|
+
productMode: "ai",
|
|
407
|
+
hidden: true
|
|
389
408
|
},
|
|
390
409
|
{
|
|
391
410
|
id: "processes",
|
|
@@ -393,7 +412,8 @@ var INSIGHTS_ITEMS = [
|
|
|
393
412
|
icon: "Cpu",
|
|
394
413
|
description: "Manage and monitor spawned child processes",
|
|
395
414
|
color: "#06B6D4",
|
|
396
|
-
productMode: "ai"
|
|
415
|
+
productMode: "ai",
|
|
416
|
+
hidden: true
|
|
397
417
|
},
|
|
398
418
|
{
|
|
399
419
|
id: "activity-timeline",
|
|
@@ -402,7 +422,8 @@ var INSIGHTS_ITEMS = [
|
|
|
402
422
|
description: "Searchable capture history \u2014 everything seen on screen during automation",
|
|
403
423
|
route: "/observe/activity-timeline",
|
|
404
424
|
color: "#06B6D4",
|
|
405
|
-
platforms: ["runner"]
|
|
425
|
+
platforms: ["runner"],
|
|
426
|
+
hidden: true
|
|
406
427
|
},
|
|
407
428
|
{
|
|
408
429
|
id: "automation-health",
|
|
@@ -411,21 +432,26 @@ var INSIGHTS_ITEMS = [
|
|
|
411
432
|
description: "UI Bridge automation quality, selector reliability, and improvement recommendations",
|
|
412
433
|
color: "#10B981",
|
|
413
434
|
platforms: ["runner"],
|
|
414
|
-
productMode: "ai"
|
|
435
|
+
productMode: "ai",
|
|
436
|
+
hidden: true
|
|
415
437
|
},
|
|
416
438
|
{
|
|
417
439
|
id: "reflection",
|
|
418
440
|
label: "Reflection",
|
|
419
441
|
icon: "RotateCcw",
|
|
420
442
|
description: "Reflection fix effectiveness and history",
|
|
421
|
-
productMode: "ai"
|
|
443
|
+
productMode: "ai",
|
|
444
|
+
// Runner-only feature — has no web page (web route 404s).
|
|
445
|
+
platforms: ["runner"],
|
|
446
|
+
hidden: true
|
|
422
447
|
},
|
|
423
448
|
{
|
|
424
449
|
id: "architecture",
|
|
425
450
|
label: "Architecture",
|
|
426
451
|
icon: "GitBranch",
|
|
427
452
|
description: "Component dependency graph and SDK project architecture",
|
|
428
|
-
productMode: "ai"
|
|
453
|
+
productMode: "ai",
|
|
454
|
+
hidden: true
|
|
429
455
|
},
|
|
430
456
|
{
|
|
431
457
|
id: "api-surface",
|
|
@@ -433,7 +459,8 @@ var INSIGHTS_ITEMS = [
|
|
|
433
459
|
icon: "Network",
|
|
434
460
|
description: "Interactive map of every endpoint, command, query, and their connections",
|
|
435
461
|
color: "#06B6D4",
|
|
436
|
-
platforms: ["runner"]
|
|
462
|
+
platforms: ["runner"],
|
|
463
|
+
hidden: true
|
|
437
464
|
},
|
|
438
465
|
{
|
|
439
466
|
id: "development-intelligence",
|
|
@@ -443,7 +470,8 @@ var INSIGHTS_ITEMS = [
|
|
|
443
470
|
route: "/observe/development-intelligence",
|
|
444
471
|
color: "#8B5CF6",
|
|
445
472
|
platforms: ["runner"],
|
|
446
|
-
productMode: "ai"
|
|
473
|
+
productMode: "ai",
|
|
474
|
+
hidden: true
|
|
447
475
|
},
|
|
448
476
|
{
|
|
449
477
|
id: "project-explainer",
|
|
@@ -452,7 +480,8 @@ var INSIGHTS_ITEMS = [
|
|
|
452
480
|
description: "Hierarchical explainer for any project: overview, per-cluster narratives, and per-page deep dives with embedded architecture diagrams. AI side panel for asking questions while reading.",
|
|
453
481
|
route: "/observe/explainer",
|
|
454
482
|
color: "#06B6D4",
|
|
455
|
-
platforms: ["runner"]
|
|
483
|
+
platforms: ["runner"],
|
|
484
|
+
hidden: true
|
|
456
485
|
},
|
|
457
486
|
{
|
|
458
487
|
id: "decision-trail",
|
|
@@ -462,7 +491,8 @@ var INSIGHTS_ITEMS = [
|
|
|
462
491
|
route: "/observe/decision-trail",
|
|
463
492
|
color: "#8B5CF6",
|
|
464
493
|
productMode: "ai",
|
|
465
|
-
platforms: ["runner"]
|
|
494
|
+
platforms: ["runner"],
|
|
495
|
+
hidden: true
|
|
466
496
|
},
|
|
467
497
|
{
|
|
468
498
|
id: "session-recap",
|
|
@@ -472,7 +502,8 @@ var INSIGHTS_ITEMS = [
|
|
|
472
502
|
route: "/observe/session-recap",
|
|
473
503
|
color: "#8B5CF6",
|
|
474
504
|
platforms: ["runner"],
|
|
475
|
-
productMode: "ai"
|
|
505
|
+
productMode: "ai",
|
|
506
|
+
hidden: true
|
|
476
507
|
}
|
|
477
508
|
];
|
|
478
509
|
var INSIGHTS_GROUP = {
|
|
@@ -489,21 +520,24 @@ var CONFIGURE_ITEMS = [
|
|
|
489
520
|
description: "Configure finding patterns",
|
|
490
521
|
route: "/configure/finding-rules",
|
|
491
522
|
color: "#FFD700",
|
|
492
|
-
productMode: "ai"
|
|
523
|
+
productMode: "ai",
|
|
524
|
+
hidden: true
|
|
493
525
|
},
|
|
494
526
|
{
|
|
495
527
|
id: "config-hooks",
|
|
496
528
|
label: "Lifecycle Hooks",
|
|
497
529
|
icon: "Webhook",
|
|
498
530
|
description: "Configure execution event triggers",
|
|
499
|
-
productMode: "ai"
|
|
531
|
+
productMode: "ai",
|
|
532
|
+
hidden: true
|
|
500
533
|
},
|
|
501
534
|
{
|
|
502
535
|
id: "config-ui-bridge",
|
|
503
536
|
label: "UI Bridge",
|
|
504
537
|
icon: "Plug",
|
|
505
538
|
description: "Manage UI Bridge integrations for external apps",
|
|
506
|
-
productMode: "ai"
|
|
539
|
+
productMode: "ai",
|
|
540
|
+
hidden: true
|
|
507
541
|
},
|
|
508
542
|
{
|
|
509
543
|
id: "event-history",
|
|
@@ -586,7 +620,8 @@ var DEV_ITEMS = [
|
|
|
586
620
|
icon: "Accessibility",
|
|
587
621
|
description: "Inspect and interact with native desktop accessibility trees via UIA, AT-SPI, or AX APIs",
|
|
588
622
|
color: "#06B6D4",
|
|
589
|
-
platforms: ["runner"]
|
|
623
|
+
platforms: ["runner"],
|
|
624
|
+
hidden: true
|
|
590
625
|
}
|
|
591
626
|
];
|
|
592
627
|
var DEV_GROUP = {
|