@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
@@ -122,15 +122,15 @@ window.__ModuleLoader__.load({
122
122
  document.head.appendChild(tag);
123
123
  }
124
124
  var PlanReviewPanel_module_css_default = {
125
+ "strip": "qwZnSa_strip",
125
126
  "feedback": "qwZnSa_feedback",
127
+ "frame": "qwZnSa_frame",
126
128
  "card": "qwZnSa_card",
127
- "dot": "qwZnSa_dot",
128
129
  "body": "qwZnSa_body",
129
- "frame": "qwZnSa_frame",
130
- "strip": "qwZnSa_strip",
131
- "footer": "qwZnSa_footer",
130
+ "dot": "qwZnSa_dot",
131
+ "actions": "qwZnSa_actions",
132
132
  "discuss": "qwZnSa_discuss",
133
- "actions": "qwZnSa_actions"
133
+ "footer": "qwZnSa_footer"
134
134
  };
135
135
  //#endregion
136
136
  //#region src/client/PlanReviewPanel.tsx
@@ -240,37 +240,37 @@ window.__ModuleLoader__.load({
240
240
  document.head.appendChild(tag);
241
241
  }
242
242
  var QuestionComposer_module_css_default = {
243
- "headingBlock": "_3wP-uG_headingBlock",
244
- "detail": "_3wP-uG_detail",
245
- "number": "_3wP-uG_number",
246
- "frame": "_3wP-uG_frame",
247
243
  "progress": "_3wP-uG_progress",
248
- "description": "_3wP-uG_description",
249
- "footerActions": "_3wP-uG_footerActions",
250
- "header": "_3wP-uG_header",
251
- "headerActions": "_3wP-uG_headerActions",
252
- "card": "_3wP-uG_card",
253
244
  "badge": "_3wP-uG_badge",
245
+ "headingBlock": "_3wP-uG_headingBlock",
246
+ "headerActions": "_3wP-uG_headerActions",
247
+ "header": "_3wP-uG_header",
248
+ "customTextarea": "_3wP-uG_customTextarea",
249
+ "checkbox": "_3wP-uG_checkbox",
254
250
  "iconButton": "_3wP-uG_iconButton",
255
- "option": "_3wP-uG_option",
256
- "body": "_3wP-uG_body",
257
- "pager": "_3wP-uG_pager",
251
+ "footer": "_3wP-uG_footer",
258
252
  "options": "_3wP-uG_options",
259
- "optionSelected": "_3wP-uG_optionSelected",
260
- "optionLine": "_3wP-uG_optionLine",
261
- "customRow": "_3wP-uG_customRow",
262
- "checkbox": "_3wP-uG_checkbox",
263
- "checkboxChecked": "_3wP-uG_checkboxChecked",
253
+ "title": "_3wP-uG_title",
254
+ "optionCopy": "_3wP-uG_optionCopy",
264
255
  "customRowActive": "_3wP-uG_customRowActive",
265
- "customTextarea": "_3wP-uG_customTextarea",
266
- "footer": "_3wP-uG_footer",
256
+ "description": "_3wP-uG_description",
257
+ "card": "_3wP-uG_card",
258
+ "pager": "_3wP-uG_pager",
259
+ "optionLine": "_3wP-uG_optionLine",
267
260
  "feedback": "_3wP-uG_feedback",
268
- "optionLabel": "_3wP-uG_optionLabel",
261
+ "body": "_3wP-uG_body",
262
+ "optionSelected": "_3wP-uG_optionSelected",
269
263
  "eyebrow": "_3wP-uG_eyebrow",
270
- "title": "_3wP-uG_title",
264
+ "checkboxChecked": "_3wP-uG_checkboxChecked",
265
+ "footerActions": "_3wP-uG_footerActions",
266
+ "optionLabel": "_3wP-uG_optionLabel",
267
+ "frame": "_3wP-uG_frame",
268
+ "option": "_3wP-uG_option",
271
269
  "cardMinimized": "_3wP-uG_cardMinimized",
272
- "optionCopy": "_3wP-uG_optionCopy",
273
- "customInput": "_3wP-uG_customInput"
270
+ "customInput": "_3wP-uG_customInput",
271
+ "customRow": "_3wP-uG_customRow",
272
+ "number": "_3wP-uG_number",
273
+ "detail": "_3wP-uG_detail"
274
274
  };
275
275
  //#endregion
276
276
  //#region src/client/QuestionComposer.tsx
@@ -19,28 +19,28 @@ window.__ModuleLoader__.load({
19
19
  document.head.appendChild(tag);
20
20
  }
21
21
  var WorkflowRunPanel_module_css_default = {
22
- "memberRow": "SiHEYG_memberRow",
23
- "phase": "SiHEYG_phase",
24
- "phaseLeading": "SiHEYG_phaseLeading",
25
- "separator": "SiHEYG_separator",
26
- "memberLabel": "SiHEYG_memberLabel",
27
- "phaseStatus": "SiHEYG_phaseStatus",
22
+ "phaseList": "SiHEYG_phaseList",
23
+ "statusTail": "SiHEYG_statusTail",
28
24
  "root": "SiHEYG_root",
29
- "phaseHeader": "SiHEYG_phaseHeader",
30
- "memberButton": "SiHEYG_memberButton",
31
- "runHeader": "SiHEYG_runHeader",
25
+ "phaseStatus": "SiHEYG_phaseStatus",
26
+ "memberLabelWrap": "SiHEYG_memberLabelWrap",
27
+ "separator": "SiHEYG_separator",
32
28
  "phaseCount": "SiHEYG_phaseCount",
29
+ "phase": "SiHEYG_phase",
33
30
  "runSummary": "SiHEYG_runSummary",
34
- "memberStatus": "SiHEYG_memberStatus",
31
+ "runLeading": "SiHEYG_runLeading",
32
+ "phaseHeader": "SiHEYG_phaseHeader",
33
+ "runTitle": "SiHEYG_runTitle",
35
34
  "members": "SiHEYG_members",
36
- "statusTail": "SiHEYG_statusTail",
35
+ "memberRow": "SiHEYG_memberRow",
36
+ "memberLabel": "SiHEYG_memberLabel",
37
+ "phaseLeading": "SiHEYG_phaseLeading",
37
38
  "dotSlot": "SiHEYG_dotSlot",
39
+ "runHeader": "SiHEYG_runHeader",
40
+ "memberStatus": "SiHEYG_memberStatus",
38
41
  "phaseTitle": "SiHEYG_phaseTitle",
39
- "runLeading": "SiHEYG_runLeading",
40
- "phaseList": "SiHEYG_phaseList",
41
- "runTitle": "SiHEYG_runTitle",
42
- "memberLabelWrap": "SiHEYG_memberLabelWrap",
43
- "empty": "SiHEYG_empty"
42
+ "empty": "SiHEYG_empty",
43
+ "memberButton": "SiHEYG_memberButton"
44
44
  };
45
45
  //#endregion
46
46
  //#region src/client/WorkflowRunPanel.tsx
@@ -341,40 +341,40 @@ window.__ModuleLoader__.load({
341
341
  document.head.appendChild(tag);
342
342
  }
343
343
  var Rows_module_css_default = {
344
- "searchResultWorkspace": "X-VPTa_searchResultWorkspace",
345
- "row-in": "X-VPTa_row-in",
346
- "dot": "X-VPTa_dot",
347
- "folder": "X-VPTa_folder",
348
- "projectText": "X-VPTa_projectText",
349
- "flatSessionRowWithoutStatus": "X-VPTa_flatSessionRowWithoutStatus",
344
+ "iconButton": "X-VPTa_iconButton",
345
+ "folderActive": "X-VPTa_folderActive",
346
+ "visuallyHidden": "X-VPTa_visuallyHidden",
350
347
  "selected": "X-VPTa_selected",
351
- "searchResultRow": "X-VPTa_searchResultRow",
352
- "searchResultMeta": "X-VPTa_searchResultMeta",
348
+ "hoverContent": "X-VPTa_hoverContent",
349
+ "title": "X-VPTa_title",
350
+ "dropAfter": "X-VPTa_dropAfter",
351
+ "hoverStatus": "X-VPTa_hoverStatus",
352
+ "hoverTitle": "X-VPTa_hoverTitle",
353
+ "projectText": "X-VPTa_projectText",
354
+ "dot": "X-VPTa_dot",
355
+ "rowActions": "X-VPTa_rowActions",
356
+ "row-in": "X-VPTa_row-in",
353
357
  "hoverTime": "X-VPTa_hoverTime",
358
+ "searchResultTitle": "X-VPTa_searchResultTitle",
354
359
  "time": "X-VPTa_time",
355
- "projectRow": "X-VPTa_projectRow",
356
- "hoverTitle": "X-VPTa_hoverTitle",
357
- "menuOpen": "X-VPTa_menuOpen",
358
360
  "chevron": "X-VPTa_chevron",
359
- "dropAfter": "X-VPTa_dropAfter",
360
- "searchResultHeading": "X-VPTa_searchResultHeading",
361
- "rowActions": "X-VPTa_rowActions",
362
361
  "arrowOpen": "X-VPTa_arrowOpen",
362
+ "menuOpen": "X-VPTa_menuOpen",
363
+ "projectRow": "X-VPTa_projectRow",
364
+ "searchResultSnippet": "X-VPTa_searchResultSnippet",
363
365
  "meta": "X-VPTa_meta",
364
- "visuallyHidden": "X-VPTa_visuallyHidden",
365
- "hoverContent": "X-VPTa_hoverContent",
366
+ "flatSessionRowWithoutStatus": "X-VPTa_flatSessionRowWithoutStatus",
367
+ "sessionRow": "X-VPTa_sessionRow",
368
+ "slot": "X-VPTa_slot",
369
+ "dropBefore": "X-VPTa_dropBefore",
366
370
  "hoverPath": "X-VPTa_hoverPath",
367
- "hoverStatus": "X-VPTa_hoverStatus",
368
371
  "arrow": "X-VPTa_arrow",
369
372
  "renameInput": "X-VPTa_renameInput",
370
- "dropBefore": "X-VPTa_dropBefore",
371
- "slot": "X-VPTa_slot",
372
- "searchResultSnippet": "X-VPTa_searchResultSnippet",
373
- "folderActive": "X-VPTa_folderActive",
374
- "sessionRow": "X-VPTa_sessionRow",
375
- "title": "X-VPTa_title",
376
- "iconButton": "X-VPTa_iconButton",
377
- "searchResultTitle": "X-VPTa_searchResultTitle"
373
+ "folder": "X-VPTa_folder",
374
+ "searchResultMeta": "X-VPTa_searchResultMeta",
375
+ "searchResultWorkspace": "X-VPTa_searchResultWorkspace",
376
+ "searchResultHeading": "X-VPTa_searchResultHeading",
377
+ "searchResultRow": "X-VPTa_searchResultRow"
378
378
  };
379
379
  //#endregion
380
380
  //#region src/client/rows/Rows.tsx
@@ -806,9 +806,9 @@ window.__ModuleLoader__.load({
806
806
  document.head.appendChild(tag);
807
807
  }
808
808
  var WorkspacePicker_module_css_default = {
809
+ "modalError": "koU6Pa_modalError",
809
810
  "modalAction": "koU6Pa_modalAction",
810
- "menuStatus": "koU6Pa_menuStatus",
811
- "modalError": "koU6Pa_modalError"
811
+ "menuStatus": "koU6Pa_menuStatus"
812
812
  };
813
813
  //#endregion
814
814
  //#region src/client/WorkspacePicker.tsx
@@ -976,42 +976,42 @@ window.__ModuleLoader__.load({
976
976
  document.head.appendChild(tag);
977
977
  }
978
978
  var WorkspaceBrowser_module_css_default = {
979
+ "searchSlotExpanded": "HlYf2W_searchSlotExpanded",
980
+ "flatList": "HlYf2W_flatList",
981
+ "root": "HlYf2W_root",
979
982
  "searchExpanded": "HlYf2W_searchExpanded",
980
- "listTopDropActive": "HlYf2W_listTopDropActive",
981
- "empty": "HlYf2W_empty",
982
- "listTopDropIndicator": "HlYf2W_listTopDropIndicator",
983
- "searchInput": "HlYf2W_searchInput",
984
- "clearButton": "HlYf2W_clearButton",
985
- "searchButton": "HlYf2W_searchButton",
986
- "listArea": "HlYf2W_listArea",
987
- "sectionLabelHidden": "HlYf2W_sectionLabelHidden",
988
- "sessionOverflowButton": "HlYf2W_sessionOverflowButton",
989
- "groupSection": "HlYf2W_groupSection",
990
- "renameInput": "HlYf2W_renameInput",
991
- "headerActionsHidden": "HlYf2W_headerActionsHidden",
992
- "searchTree": "HlYf2W_searchTree",
993
- "searchStatus": "HlYf2W_searchStatus",
994
- "iconButton": "HlYf2W_iconButton",
995
983
  "workspaceDropAfter": "HlYf2W_workspaceDropAfter",
984
+ "searchButton": "HlYf2W_searchButton",
985
+ "empty": "HlYf2W_empty",
986
+ "sectionLabel": "HlYf2W_sectionLabel",
987
+ "renameError": "HlYf2W_renameError",
996
988
  "rail": "HlYf2W_rail",
997
- "deleteAction": "HlYf2W_deleteAction",
998
- "headerActions": "HlYf2W_headerActions",
989
+ "list": "HlYf2W_list",
990
+ "listTopDropActive": "HlYf2W_listTopDropActive",
991
+ "treeBody": "HlYf2W_treeBody",
992
+ "searchSlot": "HlYf2W_searchSlot",
993
+ "search": "HlYf2W_search",
999
994
  "workspaceDropBefore": "HlYf2W_workspaceDropBefore",
995
+ "renameInput": "HlYf2W_renameInput",
996
+ "sectionLabelHidden": "HlYf2W_sectionLabelHidden",
997
+ "iconButton": "HlYf2W_iconButton",
1000
998
  "wide": "HlYf2W_wide",
1001
- "treeBody": "HlYf2W_treeBody",
1002
- "sectionLabel": "HlYf2W_sectionLabel",
1003
- "fade": "HlYf2W_fade",
1004
- "flatList": "HlYf2W_flatList",
1005
- "list": "HlYf2W_list",
999
+ "searchStatus": "HlYf2W_searchStatus",
1000
+ "clearButton": "HlYf2W_clearButton",
1001
+ "wide-in": "HlYf2W_wide-in",
1002
+ "headerActions": "HlYf2W_headerActions",
1003
+ "headerActionsHidden": "HlYf2W_headerActionsHidden",
1004
+ "deleteAction": "HlYf2W_deleteAction",
1005
+ "searchTree": "HlYf2W_searchTree",
1006
+ "listArea": "HlYf2W_listArea",
1007
+ "groupSection": "HlYf2W_groupSection",
1006
1008
  "searchWarning": "HlYf2W_searchWarning",
1007
- "renameError": "HlYf2W_renameError",
1008
1009
  "deleteStatus": "HlYf2W_deleteStatus",
1009
- "searchSlotExpanded": "HlYf2W_searchSlotExpanded",
1010
+ "listTopDropIndicator": "HlYf2W_listTopDropIndicator",
1011
+ "searchInput": "HlYf2W_searchInput",
1012
+ "sessionOverflowButton": "HlYf2W_sessionOverflowButton",
1010
1013
  "sectionHeader": "HlYf2W_sectionHeader",
1011
- "wide-in": "HlYf2W_wide-in",
1012
- "search": "HlYf2W_search",
1013
- "searchSlot": "HlYf2W_searchSlot",
1014
- "root": "HlYf2W_root"
1014
+ "fade": "HlYf2W_fade"
1015
1015
  };
1016
1016
  //#endregion
1017
1017
  //#region src/client/WorkspaceBrowser.tsx