@xrkseek/harness-cli 0.0.5 → 0.0.6

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 (77) hide show
  1. package/README.md +3 -1
  2. package/dist/commands/plugin.d.ts +3 -0
  3. package/dist/commands/plugin.d.ts.map +1 -0
  4. package/dist/commands/plugin.js +100 -0
  5. package/dist/commands/plugin.js.map +1 -0
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +3 -0
  8. package/dist/index.js.map +1 -1
  9. package/dist/parse-args.d.ts +3 -1
  10. package/dist/parse-args.d.ts.map +1 -1
  11. package/dist/parse-args.js +11 -0
  12. package/dist/parse-args.js.map +1 -1
  13. package/dist/plugin/classify.d.ts +18 -0
  14. package/dist/plugin/classify.d.ts.map +1 -0
  15. package/dist/plugin/classify.js +109 -0
  16. package/dist/plugin/classify.js.map +1 -0
  17. package/dist/plugin/fetch-pack.d.ts +16 -0
  18. package/dist/plugin/fetch-pack.d.ts.map +1 -0
  19. package/dist/plugin/fetch-pack.js +104 -0
  20. package/dist/plugin/fetch-pack.js.map +1 -0
  21. package/dist/plugin/index.d.ts +27 -0
  22. package/dist/plugin/index.d.ts.map +1 -0
  23. package/dist/plugin/index.js +109 -0
  24. package/dist/plugin/index.js.map +1 -0
  25. package/dist/plugin/install-client.d.ts +4 -0
  26. package/dist/plugin/install-client.d.ts.map +1 -0
  27. package/dist/plugin/install-client.js +34 -0
  28. package/dist/plugin/install-client.js.map +1 -0
  29. package/dist/plugin/install-process.d.ts +4 -0
  30. package/dist/plugin/install-process.d.ts.map +1 -0
  31. package/dist/plugin/install-process.js +46 -0
  32. package/dist/plugin/install-process.js.map +1 -0
  33. package/dist/plugin/inventory.d.ts +42 -0
  34. package/dist/plugin/inventory.d.ts.map +1 -0
  35. package/dist/plugin/inventory.js +105 -0
  36. package/dist/plugin/inventory.js.map +1 -0
  37. package/dist/plugin/remap-inject.d.ts +16 -0
  38. package/dist/plugin/remap-inject.d.ts.map +1 -0
  39. package/dist/plugin/remap-inject.js +52 -0
  40. package/dist/plugin/remap-inject.js.map +1 -0
  41. package/node_modules/@xrkseek/server-config/dist/home.d.ts +5 -0
  42. package/node_modules/@xrkseek/server-config/dist/home.d.ts.map +1 -1
  43. package/node_modules/@xrkseek/server-config/dist/home.js +7 -0
  44. package/node_modules/@xrkseek/server-config/dist/home.js.map +1 -1
  45. package/node_modules/@xrkseek/server-config/dist/index.d.ts +4 -2
  46. package/node_modules/@xrkseek/server-config/dist/index.d.ts.map +1 -1
  47. package/node_modules/@xrkseek/server-config/dist/index.js +10 -1
  48. package/node_modules/@xrkseek/server-config/dist/index.js.map +1 -1
  49. package/package.json +2 -2
  50. package/product-web/boot.json +1 -1
  51. package/product-web/plugins/@xrkseek/client-locale/client.js +4 -4
  52. package/product-web/plugins/@xrkseek/client-ui-agent-preset/client.js +38 -38
  53. package/product-web/plugins/@xrkseek/client-ui-commands/client.js +7 -7
  54. package/product-web/plugins/@xrkseek/client-ui-conversation/client.js +160 -160
  55. package/product-web/plugins/@xrkseek/client-ui-deliverables/client.js +4 -4
  56. package/product-web/plugins/@xrkseek/client-ui-directory-picker-browse/client.js +27 -27
  57. package/product-web/plugins/@xrkseek/client-ui-goal/client.js +5 -5
  58. package/product-web/plugins/@xrkseek/client-ui-input-trigger/client.js +6 -6
  59. package/product-web/plugins/@xrkseek/client-ui-jobs/client.js +8 -8
  60. package/product-web/plugins/@xrkseek/client-ui-layout/client.js +4 -4
  61. package/product-web/plugins/@xrkseek/client-ui-message-feedback/client.js +5 -5
  62. package/product-web/plugins/@xrkseek/client-ui-model-selection/client.js +17 -17
  63. package/product-web/plugins/@xrkseek/client-ui-permission-presets/client.js +3 -3
  64. package/product-web/plugins/@xrkseek/client-ui-plan/client.js +3 -3
  65. package/product-web/plugins/@xrkseek/client-ui-settings-general/client.js +11 -11
  66. package/product-web/plugins/@xrkseek/client-ui-settings-models/client.js +56 -56
  67. package/product-web/plugins/@xrkseek/client-ui-settings-plugin-inventory/client.js +13 -13
  68. package/product-web/plugins/@xrkseek/client-ui-settings-plugins/client.js +45 -45
  69. package/product-web/plugins/@xrkseek/client-ui-sidebar/client.js +16 -16
  70. package/product-web/plugins/@xrkseek/client-ui-skill/client.js +10 -10
  71. package/product-web/plugins/@xrkseek/client-ui-subagent/client.js +17 -17
  72. package/product-web/plugins/@xrkseek/client-ui-theme/client.js +3 -3
  73. package/product-web/plugins/@xrkseek/client-ui-tool/client.js +35 -35
  74. package/product-web/plugins/@xrkseek/client-ui-trajectory/client.js +140 -140
  75. package/product-web/plugins/@xrkseek/client-ui-user-questions/client.js +28 -28
  76. package/product-web/plugins/@xrkseek/client-ui-workflow-run/client.js +16 -16
  77. package/product-web/plugins/@xrkseek/client-ui-workspace/client.js +55 -55
@@ -167,14 +167,14 @@ window.__ModuleLoader__.load({
167
167
  document.head.appendChild(tag);
168
168
  }
169
169
  var ProducedFiles_module_css_default = {
170
- "root": "LKrWRG_root",
171
- "measure": "LKrWRG_measure",
170
+ "row": "LKrWRG_row",
172
171
  "file": "LKrWRG_file",
173
172
  "label": "LKrWRG_label",
174
173
  "showFolder": "LKrWRG_showFolder",
174
+ "measure": "LKrWRG_measure",
175
175
  "more": "LKrWRG_more",
176
- "probe": "LKrWRG_probe",
177
- "row": "LKrWRG_row"
176
+ "root": "LKrWRG_root",
177
+ "probe": "LKrWRG_probe"
178
178
  };
179
179
  //#endregion
180
180
  //#region src/client/ProducedFiles.tsx
@@ -34,43 +34,43 @@ window.__ModuleLoader__.load({
34
34
  document.head.appendChild(tag);
35
35
  }
36
36
  var DirectoryBrowser_module_css_default = {
37
- "editorScope": "eriWnG_editorScope",
38
- "footerBar": "eriWnG_footerBar",
39
37
  "rowSelected": "eriWnG_rowSelected",
40
- "status": "eriWnG_status",
41
- "crumbTrail": "eriWnG_crumbTrail",
42
- "loadingFloat": "eriWnG_loadingFloat",
43
- "crumbChevron": "eriWnG_crumbChevron",
44
- "rowIconSelected": "eriWnG_rowIconSelected",
45
- "millerRow": "eriWnG_millerRow",
38
+ "showHiddenToggleActive": "eriWnG_showHiddenToggleActive",
39
+ "createIn": "eriWnG_createIn",
46
40
  "column": "eriWnG_column",
47
- "header": "eriWnG_header",
48
- "title": "eriWnG_title",
49
- "crumbEditZone": "eriWnG_crumbEditZone",
50
- "rowIcon": "eriWnG_rowIcon",
51
41
  "footerGap": "eriWnG_footerGap",
52
- "footerAction": "eriWnG_footerAction",
53
- "createDialog": "eriWnG_createDialog",
54
- "showHiddenToggleActive": "eriWnG_showHiddenToggleActive",
55
- "content": "eriWnG_content",
56
- "crumbEditGlyph": "eriWnG_crumbEditGlyph",
57
- "createInput": "eriWnG_createInput",
58
- "rowChevron": "eriWnG_rowChevron",
59
- "pathInput": "eriWnG_pathInput",
60
- "crumb": "eriWnG_crumb",
42
+ "loadingFloat": "eriWnG_loadingFloat",
43
+ "createActions": "eriWnG_createActions",
44
+ "rowName": "eriWnG_rowName",
61
45
  "dialog": "eriWnG_dialog",
62
- "rowSeat": "eriWnG_rowSeat",
63
- "row": "eriWnG_row",
64
46
  "showHiddenToggle": "eriWnG_showHiddenToggle",
47
+ "rowChevron": "eriWnG_rowChevron",
48
+ "row": "eriWnG_row",
49
+ "footerAction": "eriWnG_footerAction",
50
+ "createBody": "eriWnG_createBody",
51
+ "footerBar": "eriWnG_footerBar",
52
+ "title": "eriWnG_title",
65
53
  "crumbSeat": "eriWnG_crumbSeat",
54
+ "createDialog": "eriWnG_createDialog",
55
+ "rowSeat": "eriWnG_rowSeat",
56
+ "crumbEditGlyph": "eriWnG_crumbEditGlyph",
57
+ "crumbChevron": "eriWnG_crumbChevron",
66
58
  "divider": "eriWnG_divider",
59
+ "header": "eriWnG_header",
60
+ "editorScope": "eriWnG_editorScope",
67
61
  "crumbBar": "eriWnG_crumbBar",
68
- "createBody": "eriWnG_createBody",
62
+ "crumbEditZone": "eriWnG_crumbEditZone",
63
+ "millerRow": "eriWnG_millerRow",
64
+ "content": "eriWnG_content",
65
+ "rowIcon": "eriWnG_rowIcon",
66
+ "rowIconSelected": "eriWnG_rowIconSelected",
69
67
  "error": "eriWnG_error",
68
+ "crumbTrail": "eriWnG_crumbTrail",
69
+ "createInput": "eriWnG_createInput",
70
+ "crumb": "eriWnG_crumb",
71
+ "status": "eriWnG_status",
70
72
  "createTitle": "eriWnG_createTitle",
71
- "createActions": "eriWnG_createActions",
72
- "createIn": "eriWnG_createIn",
73
- "rowName": "eriWnG_rowName"
73
+ "pathInput": "eriWnG_pathInput"
74
74
  };
75
75
  //#endregion
76
76
  //#region src/client/DirectoryBrowser.tsx
@@ -18,15 +18,15 @@ window.__ModuleLoader__.load({
18
18
  document.head.appendChild(tag);
19
19
  }
20
20
  var GoalBar_module_css_default = {
21
+ "iconBtn": "loP2MG_iconBtn",
21
22
  "bar": "loP2MG_bar",
23
+ "dock": "loP2MG_dock",
22
24
  "label": "loP2MG_label",
23
- "actions": "loP2MG_actions",
24
- "iconBtn": "loP2MG_iconBtn",
25
- "objectiveInput": "loP2MG_objectiveInput",
25
+ "goalGlyph": "loP2MG_goalGlyph",
26
26
  "objective": "loP2MG_objective",
27
- "dock": "loP2MG_dock",
27
+ "actions": "loP2MG_actions",
28
28
  "error": "loP2MG_error",
29
- "goalGlyph": "loP2MG_goalGlyph"
29
+ "objectiveInput": "loP2MG_objectiveInput"
30
30
  };
31
31
  //#endregion
32
32
  //#region src/client/GoalBar.tsx
@@ -673,15 +673,15 @@ window.__ModuleLoader__.load({
673
673
  document.head.appendChild(tag);
674
674
  }
675
675
  var MenuView_module_css_default = {
676
- "groupTitle": "_203XIq_groupTitle",
677
- "item": "_203XIq_item",
678
- "itemName": "_203XIq_itemName",
676
+ "itemDescription": "_203XIq_itemDescription",
679
677
  "viewport": "_203XIq_viewport",
680
- "menu": "_203XIq_menu",
681
678
  "active": "_203XIq_active",
682
- "itemDescription": "_203XIq_itemDescription",
679
+ "menu": "_203XIq_menu",
680
+ "groupTitle": "_203XIq_groupTitle",
683
681
  "loading": "_203XIq_loading",
684
- "itemIcon": "_203XIq_itemIcon"
682
+ "item": "_203XIq_item",
683
+ "itemIcon": "_203XIq_itemIcon",
684
+ "itemName": "_203XIq_itemName"
685
685
  };
686
686
  //#endregion
687
687
  //#region src/client/MenuView.tsx
@@ -18,19 +18,19 @@ window.__ModuleLoader__.load({
18
18
  document.head.appendChild(tag);
19
19
  }
20
20
  var JobListAction_module_css_default = {
21
- "rowDot": "gBhgYW_rowDot",
22
- "kind": "gBhgYW_kind",
23
- "label": "gBhgYW_label",
24
- "count": "gBhgYW_count",
25
- "status": "gBhgYW_status",
26
21
  "root": "gBhgYW_root",
22
+ "triggerDot": "gBhgYW_triggerDot",
23
+ "triggerOpen": "gBhgYW_triggerOpen",
27
24
  "trigger": "gBhgYW_trigger",
28
25
  "row": "gBhgYW_row",
29
- "triggerOpen": "gBhgYW_triggerOpen",
30
26
  "rowSettled": "gBhgYW_rowSettled",
27
+ "status": "gBhgYW_status",
31
28
  "duration": "gBhgYW_duration",
32
- "triggerDot": "gBhgYW_triggerDot",
33
- "menu": "gBhgYW_menu"
29
+ "count": "gBhgYW_count",
30
+ "label": "gBhgYW_label",
31
+ "menu": "gBhgYW_menu",
32
+ "kind": "gBhgYW_kind",
33
+ "rowDot": "gBhgYW_rowDot"
34
34
  };
35
35
  //#endregion
36
36
  //#region src/client/JobListAction.tsx
@@ -63,12 +63,12 @@ window.__ModuleLoader__.load({
63
63
  document.head.appendChild(tag);
64
64
  }
65
65
  var AppFrame_module_css_default = {
66
- "detailsCol": "LMEksG_detailsCol",
67
- "frame": "LMEksG_frame",
68
66
  "overlayLayer": "LMEksG_overlayLayer",
69
- "centerCol": "LMEksG_centerCol",
67
+ "sidebarCol": "LMEksG_sidebarCol",
68
+ "detailsCol": "LMEksG_detailsCol",
70
69
  "handle": "LMEksG_handle",
71
- "sidebarCol": "LMEksG_sidebarCol"
70
+ "frame": "LMEksG_frame",
71
+ "centerCol": "LMEksG_centerCol"
72
72
  };
73
73
  //#endregion
74
74
  //#region src/client/AppFrame.tsx
@@ -335,13 +335,13 @@ window.__ModuleLoader__.load({
335
335
  document.head.appendChild(tag);
336
336
  }
337
337
  var MessageFeedbackActions_module_css_default = {
338
- "noteSave": "Q8qPSG_noteSave",
339
- "noteCancel": "Q8qPSG_noteCancel",
340
- "noteInput": "Q8qPSG_noteInput",
341
- "failure": "Q8qPSG_failure",
342
338
  "noteOpen": "Q8qPSG_noteOpen",
339
+ "noteInput": "Q8qPSG_noteInput",
343
340
  "noteEditor": "Q8qPSG_noteEditor",
344
- "action": "Q8qPSG_action"
341
+ "action": "Q8qPSG_action",
342
+ "noteCancel": "Q8qPSG_noteCancel",
343
+ "failure": "Q8qPSG_failure",
344
+ "noteSave": "Q8qPSG_noteSave"
345
345
  };
346
346
  //#endregion
347
347
  //#region src/client/MessageFeedbackActions.tsx
@@ -241,31 +241,31 @@ window.__ModuleLoader__.load({
241
241
  document.head.appendChild(tag);
242
242
  }
243
243
  var ModelSelect_module_css_default = {
244
- "cell": "TZv2bW_cell",
245
- "error": "TZv2bW_error",
246
- "trigger": "TZv2bW_trigger",
247
- "selected": "TZv2bW_selected",
248
- "optionCopy": "TZv2bW_optionCopy",
249
- "chevronOpen": "TZv2bW_chevronOpen",
250
- "menu": "TZv2bW_menu",
251
- "chevron": "TZv2bW_chevron",
252
- "warning": "TZv2bW_warning",
253
244
  "triggerLabel": "TZv2bW_triggerLabel",
254
- "status": "TZv2bW_status",
245
+ "root": "TZv2bW_root",
246
+ "trigger": "TZv2bW_trigger",
247
+ "triggerEffort": "TZv2bW_triggerEffort",
255
248
  "groupTitle": "TZv2bW_groupTitle",
256
249
  "description": "TZv2bW_description",
257
- "root": "TZv2bW_root",
258
- "group": "TZv2bW_group",
250
+ "status": "TZv2bW_status",
251
+ "warning": "TZv2bW_warning",
259
252
  "retry": "TZv2bW_retry",
253
+ "groups": "TZv2bW_groups",
254
+ "chevron": "TZv2bW_chevron",
255
+ "selected": "TZv2bW_selected",
256
+ "menu": "TZv2bW_menu",
257
+ "cell": "TZv2bW_cell",
260
258
  "check": "TZv2bW_check",
261
259
  "cellLabel": "TZv2bW_cellLabel",
262
- "cellValue": "TZv2bW_cellValue",
263
260
  "cellChevron": "TZv2bW_cellChevron",
264
- "triggerEffort": "TZv2bW_triggerEffort",
265
- "groups": "TZv2bW_groups",
266
- "modelName": "TZv2bW_modelName",
261
+ "chevronOpen": "TZv2bW_chevronOpen",
267
262
  "empty": "TZv2bW_empty",
268
- "option": "TZv2bW_option"
263
+ "optionCopy": "TZv2bW_optionCopy",
264
+ "group": "TZv2bW_group",
265
+ "option": "TZv2bW_option",
266
+ "modelName": "TZv2bW_modelName",
267
+ "cellValue": "TZv2bW_cellValue",
268
+ "error": "TZv2bW_error"
269
269
  };
270
270
  //#endregion
271
271
  //#region src/client/ModelSelect.tsx
@@ -42,12 +42,12 @@ window.__ModuleLoader__.load({
42
42
  document.head.appendChild(tag);
43
43
  }
44
44
  var PermissionRow_module_css_default = {
45
- "desc": "kxdSgq_desc",
46
- "selector": "kxdSgq_selector",
47
45
  "chevron": "kxdSgq_chevron",
48
46
  "row": "kxdSgq_row",
47
+ "rowText": "kxdSgq_rowText",
49
48
  "title": "kxdSgq_title",
50
- "rowText": "kxdSgq_rowText"
49
+ "selector": "kxdSgq_selector",
50
+ "desc": "kxdSgq_desc"
51
51
  };
52
52
  //#endregion
53
53
  //#region src/client/PermissionRow.tsx
@@ -18,10 +18,10 @@ window.__ModuleLoader__.load({
18
18
  document.head.appendChild(tag);
19
19
  }
20
20
  var PlanModeControl_module_css_default = {
21
- "chip": "xROLNG_chip",
22
21
  "error": "xROLNG_error",
23
- "close": "xROLNG_close",
24
- "wrap": "xROLNG_wrap"
22
+ "wrap": "xROLNG_wrap",
23
+ "chip": "xROLNG_chip",
24
+ "close": "xROLNG_close"
25
25
  };
26
26
  //#endregion
27
27
  //#region src/client/PlanModeControl.tsx
@@ -36,24 +36,24 @@ window.__ModuleLoader__.load({
36
36
  document.head.appendChild(tag);
37
37
  }
38
38
  var SettingsRoot_module_css_default = {
39
+ "active": "yDpcKa_active",
39
40
  "navCell": "yDpcKa_navCell",
40
- "overlay": "yDpcKa_overlay",
41
+ "options": "yDpcKa_options",
42
+ "navLabel": "yDpcKa_navLabel",
41
43
  "content": "yDpcKa_content",
42
- "navTitle": "yDpcKa_navTitle",
43
- "rail": "yDpcKa_rail",
44
- "trigger": "yDpcKa_trigger",
45
44
  "mask": "yDpcKa_mask",
46
- "hiddenLabel": "yDpcKa_hiddenLabel",
47
- "navLabel": "yDpcKa_navLabel",
48
- "active": "yDpcKa_active",
49
- "header": "yDpcKa_header",
50
- "nav": "yDpcKa_nav",
45
+ "rail": "yDpcKa_rail",
51
46
  "navList": "yDpcKa_navList",
52
- "options": "yDpcKa_options",
53
- "triggerLabel": "yDpcKa_triggerLabel",
54
47
  "panel": "yDpcKa_panel",
48
+ "triggerLabel": "yDpcKa_triggerLabel",
49
+ "header": "yDpcKa_header",
55
50
  "navIcon": "yDpcKa_navIcon",
51
+ "nav": "yDpcKa_nav",
56
52
  "actions": "yDpcKa_actions",
53
+ "overlay": "yDpcKa_overlay",
54
+ "navTitle": "yDpcKa_navTitle",
55
+ "hiddenLabel": "yDpcKa_hiddenLabel",
56
+ "trigger": "yDpcKa_trigger",
57
57
  "close": "yDpcKa_close"
58
58
  };
59
59
  //#endregion
@@ -67,67 +67,67 @@ window.__ModuleLoader__.load({
67
67
  document.head.appendChild(tag);
68
68
  }
69
69
  var ModelsSection_module_css_default = {
70
- "rowActions": "AmnBRG_rowActions",
71
- "modelEntry": "AmnBRG_modelEntry",
72
- "credentialDotConfigured": "AmnBRG_credentialDotConfigured",
73
- "candidateLabel": "AmnBRG_candidateLabel",
74
- "dangerButton": "AmnBRG_dangerButton",
75
- "notice": "AmnBRG_notice",
76
- "addModelButton": "AmnBRG_addModelButton",
77
- "modelCatalog": "AmnBRG_modelCatalog",
78
- "advancedHint": "AmnBRG_advancedHint",
79
- "section": "AmnBRG_section",
80
- "candidateId": "AmnBRG_candidateId",
81
- "addBlock": "AmnBRG_addBlock",
82
- "iconButtonDanger": "AmnBRG_iconButtonDanger",
83
- "fetchDialog": "AmnBRG_fetchDialog",
70
+ "field": "AmnBRG_field",
71
+ "title": "AmnBRG_title",
72
+ "modelAdvanced": "AmnBRG_modelAdvanced",
73
+ "iconButton": "AmnBRG_iconButton",
74
+ "addButton": "AmnBRG_addButton",
84
75
  "modelField": "AmnBRG_modelField",
85
- "addActions": "AmnBRG_addActions",
76
+ "candidateList": "AmnBRG_candidateList",
77
+ "candidate": "AmnBRG_candidate",
86
78
  "customized": "AmnBRG_customized",
87
- "savedNotice": "AmnBRG_savedNotice",
88
- "credentialDot": "AmnBRG_credentialDot",
89
- "setupCard": "AmnBRG_setupCard",
90
- "modelCatalogHeading": "AmnBRG_modelCatalogHeading",
91
- "addButton": "AmnBRG_addButton",
79
+ "rowName": "AmnBRG_rowName",
80
+ "primaryButton": "AmnBRG_primaryButton",
92
81
  "modelFieldLabel": "AmnBRG_modelFieldLabel",
82
+ "addBlock": "AmnBRG_addBlock",
83
+ "intro": "AmnBRG_intro",
84
+ "selectInput": "AmnBRG_selectInput",
85
+ "modelListHead": "AmnBRG_modelListHead",
86
+ "rowActions": "AmnBRG_rowActions",
93
87
  "editor": "AmnBRG_editor",
94
- "rowIdentity": "AmnBRG_rowIdentity",
88
+ "notice": "AmnBRG_notice",
95
89
  "customizedSummary": "AmnBRG_customizedSummary",
96
- "addCard": "AmnBRG_addCard",
97
- "rows": "AmnBRG_rows",
98
- "rowCard": "AmnBRG_rowCard",
99
- "deleteConfirm": "AmnBRG_deleteConfirm",
90
+ "modelCatalogTitle": "AmnBRG_modelCatalogTitle",
91
+ "modelCatalogHeading": "AmnBRG_modelCatalogHeading",
100
92
  "modelList": "AmnBRG_modelList",
93
+ "modelEntry": "AmnBRG_modelEntry",
94
+ "dangerButton": "AmnBRG_dangerButton",
95
+ "setupCard": "AmnBRG_setupCard",
96
+ "savedNotice": "AmnBRG_savedNotice",
101
97
  "rowTag": "AmnBRG_rowTag",
102
- "secondaryButton": "AmnBRG_secondaryButton",
103
- "editorHeader": "AmnBRG_editorHeader",
104
- "deleteDialog": "AmnBRG_deleteDialog",
105
- "selectInput": "AmnBRG_selectInput",
106
98
  "linkButton": "AmnBRG_linkButton",
99
+ "advancedHint": "AmnBRG_advancedHint",
100
+ "deleteConfirm": "AmnBRG_deleteConfirm",
101
+ "editorHeader": "AmnBRG_editorHeader",
102
+ "rowIdentity": "AmnBRG_rowIdentity",
103
+ "modelEmpty": "AmnBRG_modelEmpty",
104
+ "editorActions": "AmnBRG_editorActions",
105
+ "rows": "AmnBRG_rows",
106
+ "hiddenLabel": "AmnBRG_hiddenLabel",
107
+ "credentialDotConfigured": "AmnBRG_credentialDotConfigured",
108
+ "credentialDotMissing": "AmnBRG_credentialDotMissing",
109
+ "editorRoute": "AmnBRG_editorRoute",
110
+ "modelCatalog": "AmnBRG_modelCatalog",
107
111
  "customizedBody": "AmnBRG_customizedBody",
108
- "modelCatalogMeta": "AmnBRG_modelCatalogMeta",
109
- "intro": "AmnBRG_intro",
110
- "modelRow": "AmnBRG_modelRow",
112
+ "deleteDialog": "AmnBRG_deleteDialog",
113
+ "candidateLabel": "AmnBRG_candidateLabel",
114
+ "addModelButton": "AmnBRG_addModelButton",
111
115
  "input": "AmnBRG_input",
112
- "modelCatalogTitle": "AmnBRG_modelCatalogTitle",
113
- "field": "AmnBRG_field",
116
+ "addActions": "AmnBRG_addActions",
114
117
  "rowHead": "AmnBRG_rowHead",
115
- "candidate": "AmnBRG_candidate",
116
- "editorRoute": "AmnBRG_editorRoute",
117
- "hiddenLabel": "AmnBRG_hiddenLabel",
118
- "credentialDotMissing": "AmnBRG_credentialDotMissing",
119
- "title": "AmnBRG_title",
120
- "editorActions": "AmnBRG_editorActions",
121
- "rowName": "AmnBRG_rowName",
122
- "primaryButton": "AmnBRG_primaryButton",
118
+ "candidateId": "AmnBRG_candidateId",
119
+ "fetchDialog": "AmnBRG_fetchDialog",
120
+ "secondaryButton": "AmnBRG_secondaryButton",
121
+ "rowCard": "AmnBRG_rowCard",
122
+ "section": "AmnBRG_section",
123
+ "iconButtonDanger": "AmnBRG_iconButtonDanger",
124
+ "error": "AmnBRG_error",
123
125
  "editorTitle": "AmnBRG_editorTitle",
124
- "modelEmpty": "AmnBRG_modelEmpty",
125
- "modelAdvanced": "AmnBRG_modelAdvanced",
126
- "candidateList": "AmnBRG_candidateList",
126
+ "credentialDot": "AmnBRG_credentialDot",
127
+ "modelCatalogMeta": "AmnBRG_modelCatalogMeta",
127
128
  "fieldLabel": "AmnBRG_fieldLabel",
128
- "modelListHead": "AmnBRG_modelListHead",
129
- "error": "AmnBRG_error",
130
- "iconButton": "AmnBRG_iconButton"
129
+ "modelRow": "AmnBRG_modelRow",
130
+ "addCard": "AmnBRG_addCard"
131
131
  };
132
132
  //#endregion
133
133
  //#region src/client/EditorFooter.tsx
@@ -2076,10 +2076,10 @@ window.__ModuleLoader__.load({
2076
2076
  document.head.appendChild(tag);
2077
2077
  }
2078
2078
  var OnboardingModal_module_css_default = {
2079
- "title": "aIiZrG_title",
2080
- "content": "aIiZrG_content",
2081
2079
  "body": "aIiZrG_body",
2082
- "dialog": "aIiZrG_dialog"
2080
+ "dialog": "aIiZrG_dialog",
2081
+ "content": "aIiZrG_content",
2082
+ "title": "aIiZrG_title"
2083
2083
  };
2084
2084
  //#endregion
2085
2085
  //#region src/client/OnboardingModal.tsx
@@ -2138,8 +2138,8 @@ window.__ModuleLoader__.load({
2138
2138
  document.head.appendChild(tag);
2139
2139
  }
2140
2140
  var DeepSeekOnboardingDialog_module_css_default = {
2141
- "description": "kdI8hG_description",
2142
- "editor": "kdI8hG_editor"
2141
+ "editor": "kdI8hG_editor",
2142
+ "description": "kdI8hG_description"
2143
2143
  };
2144
2144
  //#endregion
2145
2145
  //#region src/client/DeepSeekOnboardingDialog.tsx
@@ -2229,10 +2229,10 @@ window.__ModuleLoader__.load({
2229
2229
  document.head.appendChild(tag);
2230
2230
  }
2231
2231
  var WelcomeNotice_module_css_default = {
2232
- "actions": "R-6oRa_actions",
2233
- "error": "R-6oRa_error",
2232
+ "copy": "R-6oRa_copy",
2234
2233
  "primary": "R-6oRa_primary",
2235
- "copy": "R-6oRa_copy"
2234
+ "error": "R-6oRa_error",
2235
+ "actions": "R-6oRa_actions"
2236
2236
  };
2237
2237
  //#endregion
2238
2238
  //#region src/client/WelcomeNotice.tsx
@@ -18,24 +18,24 @@ window.__ModuleLoader__.load({
18
18
  document.head.appendChild(tag);
19
19
  }
20
20
  var PluginInventorySettingsTab_module_css_default = {
21
+ "cardTitle": "WrOExW_cardTitle",
22
+ "visuallyHidden": "WrOExW_visuallyHidden",
21
23
  "cardDetails": "WrOExW_cardDetails",
22
- "statusDot": "WrOExW_statusDot",
23
- "catalog": "WrOExW_catalog",
24
+ "cardTrailing": "WrOExW_cardTrailing",
25
+ "catalogHeading": "WrOExW_catalogHeading",
24
26
  "configTag": "WrOExW_configTag",
25
27
  "chevron": "WrOExW_chevron",
26
- "visuallyHidden": "WrOExW_visuallyHidden",
27
- "cardTitle": "WrOExW_cardTitle",
28
- "cardContent": "WrOExW_cardContent",
29
- "search": "WrOExW_search",
30
- "failure": "WrOExW_failure",
31
- "card": "WrOExW_card",
32
- "cardTrailing": "WrOExW_cardTrailing",
33
- "entryValue": "WrOExW_entryValue",
34
28
  "details": "WrOExW_details",
35
- "catalogHeading": "WrOExW_catalogHeading",
36
- "cards": "WrOExW_cards",
37
29
  "section": "WrOExW_section",
38
- "status": "WrOExW_status"
30
+ "statusDot": "WrOExW_statusDot",
31
+ "status": "WrOExW_status",
32
+ "search": "WrOExW_search",
33
+ "cards": "WrOExW_cards",
34
+ "catalog": "WrOExW_catalog",
35
+ "cardContent": "WrOExW_cardContent",
36
+ "entryValue": "WrOExW_entryValue",
37
+ "card": "WrOExW_card",
38
+ "failure": "WrOExW_failure"
39
39
  };
40
40
  //#endregion
41
41
  //#region src/client/PluginInventorySettingsTab.tsx
@@ -20,18 +20,18 @@ window.__ModuleLoader__.load({
20
20
  document.head.appendChild(tag);
21
21
  }
22
22
  var fields_module_css_default = {
23
- "label": "MiE2dW_label",
24
- "reset": "MiE2dW_reset",
25
- "input": "MiE2dW_input",
23
+ "head": "MiE2dW_head",
26
24
  "inputInvalid": "MiE2dW_inputInvalid",
25
+ "badges": "MiE2dW_badges",
26
+ "select": "MiE2dW_select",
27
+ "input": "MiE2dW_input",
27
28
  "badgeMuted": "MiE2dW_badgeMuted",
29
+ "reset": "MiE2dW_reset",
30
+ "badge": "MiE2dW_badge",
28
31
  "invalid": "MiE2dW_invalid",
29
- "field": "MiE2dW_field",
30
32
  "hint": "MiE2dW_hint",
31
- "head": "MiE2dW_head",
32
- "badge": "MiE2dW_badge",
33
- "select": "MiE2dW_select",
34
- "badges": "MiE2dW_badges"
33
+ "label": "MiE2dW_label",
34
+ "field": "MiE2dW_field"
35
35
  };
36
36
  //#endregion
37
37
  //#region src/client/fields.tsx
@@ -193,21 +193,21 @@ window.__ModuleLoader__.load({
193
193
  document.head.appendChild(tag);
194
194
  }
195
195
  var PluginCard_module_css_default = {
196
- "header": "YRvGva_header",
197
196
  "card": "YRvGva_card",
198
- "discard": "YRvGva_discard",
199
- "description": "YRvGva_description",
200
- "save": "YRvGva_save",
201
- "readOnly": "YRvGva_readOnly",
202
- "pending": "YRvGva_pending",
203
- "chevron": "YRvGva_chevron",
204
197
  "footer": "YRvGva_footer",
205
- "cardOpen": "YRvGva_cardOpen",
198
+ "save": "YRvGva_save",
206
199
  "name": "YRvGva_name",
207
- "body": "YRvGva_body",
208
- "failed": "YRvGva_failed",
200
+ "chevron": "YRvGva_chevron",
201
+ "chevronOpen": "YRvGva_chevronOpen",
209
202
  "headText": "YRvGva_headText",
210
- "chevronOpen": "YRvGva_chevronOpen"
203
+ "body": "YRvGva_body",
204
+ "pending": "YRvGva_pending",
205
+ "discard": "YRvGva_discard",
206
+ "cardOpen": "YRvGva_cardOpen",
207
+ "description": "YRvGva_description",
208
+ "header": "YRvGva_header",
209
+ "readOnly": "YRvGva_readOnly",
210
+ "failed": "YRvGva_failed"
211
211
  };
212
212
  //#endregion
213
213
  //#region src/client/PluginCard.tsx
@@ -402,14 +402,14 @@ window.__ModuleLoader__.load({
402
402
  document.head.appendChild(tag);
403
403
  }
404
404
  var PluginsSettingsSection_module_css_default = {
405
- "heading": "ha2I9q_heading",
406
- "empty": "ha2I9q_empty",
407
- "tab": "ha2I9q_tab",
408
- "tabs": "ha2I9q_tabs",
409
- "intro": "ha2I9q_intro",
405
+ "panel": "ha2I9q_panel",
410
406
  "cards": "ha2I9q_cards",
407
+ "intro": "ha2I9q_intro",
411
408
  "section": "ha2I9q_section",
412
- "panel": "ha2I9q_panel"
409
+ "tabs": "ha2I9q_tabs",
410
+ "heading": "ha2I9q_heading",
411
+ "tab": "ha2I9q_tab",
412
+ "empty": "ha2I9q_empty"
413
413
  };
414
414
  //#endregion
415
415
  //#region src/client/ConfigurablePluginsTab.tsx
@@ -450,33 +450,33 @@ window.__ModuleLoader__.load({
450
450
  document.head.appendChild(tag);
451
451
  }
452
452
  var McpCard_module_css_default = {
453
- "list": "FVl50a_list",
454
- "pasteLabel": "FVl50a_pasteLabel",
455
- "add": "FVl50a_add",
456
- "empty": "FVl50a_empty",
457
- "connectedRow": "FVl50a_connectedRow",
458
- "entryTitleRow": "FVl50a_entryTitleRow",
459
453
  "connectedName": "FVl50a_connectedName",
460
- "badgeError": "FVl50a_badgeError",
461
- "badgeWarn": "FVl50a_badgeWarn",
462
- "block": "FVl50a_block",
463
454
  "note": "FVl50a_note",
464
- "allowHint": "FVl50a_allowHint",
465
- "entry": "FVl50a_entry",
466
- "heading": "FVl50a_heading",
467
- "invalid": "FVl50a_invalid",
468
- "entryHead": "FVl50a_entryHead",
469
- "badgeMuted": "FVl50a_badgeMuted",
470
- "badgeOk": "FVl50a_badgeOk",
471
455
  "allowTitle": "FVl50a_allowTitle",
472
456
  "statusDot": "FVl50a_statusDot",
473
- "allowRow": "FVl50a_allowRow",
457
+ "empty": "FVl50a_empty",
458
+ "list": "FVl50a_list",
474
459
  "entryTitle": "FVl50a_entryTitle",
475
- "connectedList": "FVl50a_connectedList",
476
460
  "remove": "FVl50a_remove",
477
- "entryBody": "FVl50a_entryBody",
478
461
  "badge": "FVl50a_badge",
479
- "paste": "FVl50a_paste"
462
+ "badgeMuted": "FVl50a_badgeMuted",
463
+ "entryBody": "FVl50a_entryBody",
464
+ "connectedRow": "FVl50a_connectedRow",
465
+ "pasteLabel": "FVl50a_pasteLabel",
466
+ "block": "FVl50a_block",
467
+ "badgeOk": "FVl50a_badgeOk",
468
+ "connectedList": "FVl50a_connectedList",
469
+ "badgeWarn": "FVl50a_badgeWarn",
470
+ "allowRow": "FVl50a_allowRow",
471
+ "entryTitleRow": "FVl50a_entryTitleRow",
472
+ "paste": "FVl50a_paste",
473
+ "entryHead": "FVl50a_entryHead",
474
+ "add": "FVl50a_add",
475
+ "entry": "FVl50a_entry",
476
+ "badgeError": "FVl50a_badgeError",
477
+ "allowHint": "FVl50a_allowHint",
478
+ "heading": "FVl50a_heading",
479
+ "invalid": "FVl50a_invalid"
480
480
  };
481
481
  //#endregion
482
482
  //#region src/client/McpCard.tsx