@xrkseek/harness-cli 0.1.0 → 0.1.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.
- package/README.md +1 -1
- package/dist/port.d.ts.map +1 -1
- package/dist/port.js +1 -0
- package/dist/port.js.map +1 -1
- package/node_modules/@xrkseek/preset-server/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@xrkseek/xrk-file-reference/dist/grammar.d.ts +33 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/grammar.d.ts.map +1 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/grammar.js +43 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/grammar.js.map +1 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/types.d.ts +13 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/types.d.ts.map +1 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/types.js +7 -0
- package/node_modules/@xrkseek/xrk-file-reference/dist/types.js.map +1 -0
- package/node_modules/@xrkseek/xrk-file-reference/package.json +9 -46
- package/node_modules/@xrkseek/xrk-file-reference-local/dist/search.d.ts +52 -0
- package/node_modules/@xrkseek/xrk-file-reference-local/dist/search.d.ts.map +1 -0
- package/node_modules/@xrkseek/xrk-file-reference-local/dist/search.js +258 -0
- package/node_modules/@xrkseek/xrk-file-reference-local/dist/search.js.map +1 -0
- package/node_modules/@xrkseek/xrk-file-reference-local/package.json +7 -34
- package/node_modules/@xrkseek/xrk-session-reference/dist/config.d.ts +25 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/config.d.ts.map +1 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/config.js +18 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/config.js.map +1 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/types.d.ts +70 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/types.d.ts.map +1 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/types.js +11 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/types.js.map +1 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/uri.d.ts +40 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/uri.d.ts.map +1 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/uri.js +81 -0
- package/node_modules/@xrkseek/xrk-session-reference/dist/uri.js.map +1 -0
- package/node_modules/@xrkseek/xrk-session-reference/package.json +13 -53
- package/package.json +3 -2
- package/product-web/boot.json +1 -1
- package/product-web/plugins/@xrkseek/client-connection/client.js +1160 -367
- package/product-web/plugins/@xrkseek/client-locale/client.js +3 -3
- package/product-web/plugins/@xrkseek/client-runtime/client.js +4 -13
- package/product-web/plugins/@xrkseek/client-ui-agent-preset/client.js +38 -38
- package/product-web/plugins/@xrkseek/client-ui-attachment/client.js +15 -15
- package/product-web/plugins/@xrkseek/client-ui-commands/client.js +8 -8
- package/product-web/plugins/@xrkseek/client-ui-conversation/client.js +169 -169
- package/product-web/plugins/@xrkseek/client-ui-deliverables/client.js +4 -4
- package/product-web/plugins/@xrkseek/client-ui-directory-picker-browse/client.js +26 -26
- package/product-web/plugins/@xrkseek/client-ui-goal/client.js +7 -7
- package/product-web/plugins/@xrkseek/client-ui-input-trigger/client.js +8 -8
- package/product-web/plugins/@xrkseek/client-ui-jobs/client.js +7 -7
- package/product-web/plugins/@xrkseek/client-ui-layout/client.js +3 -3
- package/product-web/plugins/@xrkseek/client-ui-message-feedback/client.js +4 -4
- package/product-web/plugins/@xrkseek/client-ui-model-selection/client.js +17 -17
- package/product-web/plugins/@xrkseek/client-ui-permission-presets/client.js +4 -4
- package/product-web/plugins/@xrkseek/client-ui-plan/client.js +3 -3
- package/product-web/plugins/@xrkseek/client-ui-settings-general/client.js +14 -14
- package/product-web/plugins/@xrkseek/client-ui-settings-models/client.js +57 -57
- package/product-web/plugins/@xrkseek/client-ui-settings-plugin-inventory/client.js +12 -12
- package/product-web/plugins/@xrkseek/client-ui-settings-plugins/client.js +41 -41
- package/product-web/plugins/@xrkseek/client-ui-sidebar/client.js +13 -13
- package/product-web/plugins/@xrkseek/client-ui-skill/client.js +10 -10
- package/product-web/plugins/@xrkseek/client-ui-subagent/client.js +21 -21
- package/product-web/plugins/@xrkseek/client-ui-theme/client.js +3 -3
- package/product-web/plugins/@xrkseek/client-ui-tool/client.js +40 -40
- package/product-web/plugins/@xrkseek/client-ui-trajectory/client.js +141 -141
- package/product-web/plugins/@xrkseek/client-ui-user-questions/client.js +27 -27
- package/product-web/plugins/@xrkseek/client-ui-workflow-run/client.js +14 -14
- package/product-web/plugins/@xrkseek/client-ui-workspace/client.js +54 -54
|
@@ -19,28 +19,28 @@ window.__ModuleLoader__.load({
|
|
|
19
19
|
document.head.appendChild(tag);
|
|
20
20
|
}
|
|
21
21
|
var WorkflowRunPanel_module_css_default = {
|
|
22
|
-
"phase": "SiHEYG_phase",
|
|
23
22
|
"phaseHeader": "SiHEYG_phaseHeader",
|
|
24
|
-
"runTitle": "SiHEYG_runTitle",
|
|
25
|
-
"phaseList": "SiHEYG_phaseList",
|
|
26
23
|
"dotSlot": "SiHEYG_dotSlot",
|
|
27
|
-
"runSummary": "SiHEYG_runSummary",
|
|
28
|
-
"runHeader": "SiHEYG_runHeader",
|
|
29
|
-
"memberStatus": "SiHEYG_memberStatus",
|
|
30
|
-
"root": "SiHEYG_root",
|
|
31
|
-
"memberButton": "SiHEYG_memberButton",
|
|
32
24
|
"phaseStatus": "SiHEYG_phaseStatus",
|
|
25
|
+
"phase": "SiHEYG_phase",
|
|
33
26
|
"separator": "SiHEYG_separator",
|
|
27
|
+
"phaseLeading": "SiHEYG_phaseLeading",
|
|
28
|
+
"runTitle": "SiHEYG_runTitle",
|
|
29
|
+
"phaseTitle": "SiHEYG_phaseTitle",
|
|
30
|
+
"runSummary": "SiHEYG_runSummary",
|
|
34
31
|
"runLeading": "SiHEYG_runLeading",
|
|
32
|
+
"phaseList": "SiHEYG_phaseList",
|
|
33
|
+
"memberRow": "SiHEYG_memberRow",
|
|
34
|
+
"memberLabelWrap": "SiHEYG_memberLabelWrap",
|
|
35
|
+
"memberStatus": "SiHEYG_memberStatus",
|
|
36
|
+
"empty": "SiHEYG_empty",
|
|
37
|
+
"memberButton": "SiHEYG_memberButton",
|
|
38
|
+
"runHeader": "SiHEYG_runHeader",
|
|
35
39
|
"phaseCount": "SiHEYG_phaseCount",
|
|
36
|
-
"statusTail": "SiHEYG_statusTail",
|
|
37
40
|
"members": "SiHEYG_members",
|
|
38
41
|
"memberLabel": "SiHEYG_memberLabel",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"empty": "SiHEYG_empty",
|
|
42
|
-
"phaseLeading": "SiHEYG_phaseLeading",
|
|
43
|
-
"phaseTitle": "SiHEYG_phaseTitle"
|
|
42
|
+
"statusTail": "SiHEYG_statusTail",
|
|
43
|
+
"root": "SiHEYG_root"
|
|
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
|
-
"
|
|
345
|
-
"
|
|
344
|
+
"renameInput": "X-VPTa_renameInput",
|
|
345
|
+
"searchResultMeta": "X-VPTa_searchResultMeta",
|
|
346
|
+
"searchResultTitle": "X-VPTa_searchResultTitle",
|
|
347
|
+
"time": "X-VPTa_time",
|
|
346
348
|
"dropBefore": "X-VPTa_dropBefore",
|
|
347
|
-
"
|
|
349
|
+
"arrowOpen": "X-VPTa_arrowOpen",
|
|
350
|
+
"flatSessionRowWithoutStatus": "X-VPTa_flatSessionRowWithoutStatus",
|
|
351
|
+
"dropAfter": "X-VPTa_dropAfter",
|
|
348
352
|
"row-in": "X-VPTa_row-in",
|
|
349
|
-
"
|
|
353
|
+
"visuallyHidden": "X-VPTa_visuallyHidden",
|
|
350
354
|
"sessionRow": "X-VPTa_sessionRow",
|
|
355
|
+
"searchResultHeading": "X-VPTa_searchResultHeading",
|
|
356
|
+
"meta": "X-VPTa_meta",
|
|
357
|
+
"menuOpen": "X-VPTa_menuOpen",
|
|
351
358
|
"folder": "X-VPTa_folder",
|
|
352
|
-
"
|
|
353
|
-
"
|
|
354
|
-
"dot": "X-VPTa_dot",
|
|
359
|
+
"chevron": "X-VPTa_chevron",
|
|
360
|
+
"hoverContent": "X-VPTa_hoverContent",
|
|
355
361
|
"hoverTime": "X-VPTa_hoverTime",
|
|
356
|
-
"
|
|
362
|
+
"arrow": "X-VPTa_arrow",
|
|
363
|
+
"rowActions": "X-VPTa_rowActions",
|
|
364
|
+
"projectRow": "X-VPTa_projectRow",
|
|
365
|
+
"hoverTitle": "X-VPTa_hoverTitle",
|
|
366
|
+
"hoverStatus": "X-VPTa_hoverStatus",
|
|
357
367
|
"projectText": "X-VPTa_projectText",
|
|
358
|
-
"
|
|
359
|
-
"
|
|
360
|
-
"meta": "X-VPTa_meta",
|
|
361
|
-
"menuOpen": "X-VPTa_menuOpen",
|
|
362
|
-
"searchResultTitle": "X-VPTa_searchResultTitle",
|
|
363
|
-
"dropAfter": "X-VPTa_dropAfter",
|
|
368
|
+
"searchResultRow": "X-VPTa_searchResultRow",
|
|
369
|
+
"iconButton": "X-VPTa_iconButton",
|
|
364
370
|
"searchResultSnippet": "X-VPTa_searchResultSnippet",
|
|
365
|
-
"
|
|
371
|
+
"folderActive": "X-VPTa_folderActive",
|
|
366
372
|
"searchResultWorkspace": "X-VPTa_searchResultWorkspace",
|
|
367
373
|
"selected": "X-VPTa_selected",
|
|
368
|
-
"
|
|
369
|
-
"hoverContent": "X-VPTa_hoverContent",
|
|
370
|
-
"chevron": "X-VPTa_chevron",
|
|
371
|
-
"hoverStatus": "X-VPTa_hoverStatus",
|
|
372
|
-
"searchResultHeading": "X-VPTa_searchResultHeading",
|
|
374
|
+
"slot": "X-VPTa_slot",
|
|
373
375
|
"title": "X-VPTa_title",
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"time": "X-VPTa_time",
|
|
377
|
-
"arrowOpen": "X-VPTa_arrowOpen"
|
|
376
|
+
"dot": "X-VPTa_dot",
|
|
377
|
+
"hoverPath": "X-VPTa_hoverPath"
|
|
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
|
-
"
|
|
809
|
+
"modalError": "koU6Pa_modalError",
|
|
810
810
|
"menuStatus": "koU6Pa_menuStatus",
|
|
811
|
-
"
|
|
811
|
+
"modalAction": "koU6Pa_modalAction"
|
|
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
|
-
"
|
|
980
|
-
"
|
|
979
|
+
"renameError": "HlYf2W_renameError",
|
|
980
|
+
"sectionLabelHidden": "HlYf2W_sectionLabelHidden",
|
|
981
|
+
"searchExpanded": "HlYf2W_searchExpanded",
|
|
982
|
+
"sessionOverflowButton": "HlYf2W_sessionOverflowButton",
|
|
983
|
+
"empty": "HlYf2W_empty",
|
|
984
|
+
"treeBody": "HlYf2W_treeBody",
|
|
981
985
|
"wide-in": "HlYf2W_wide-in",
|
|
982
|
-
"
|
|
986
|
+
"headerActionsHidden": "HlYf2W_headerActionsHidden",
|
|
987
|
+
"list": "HlYf2W_list",
|
|
988
|
+
"root": "HlYf2W_root",
|
|
989
|
+
"searchSlot": "HlYf2W_searchSlot",
|
|
983
990
|
"wide": "HlYf2W_wide",
|
|
984
|
-
"sectionLabelHidden": "HlYf2W_sectionLabelHidden",
|
|
985
|
-
"listTopDropIndicator": "HlYf2W_listTopDropIndicator",
|
|
986
|
-
"flatList": "HlYf2W_flatList",
|
|
987
|
-
"workspaceDropBefore": "HlYf2W_workspaceDropBefore",
|
|
988
|
-
"renameError": "HlYf2W_renameError",
|
|
989
|
-
"listTopDropActive": "HlYf2W_listTopDropActive",
|
|
990
991
|
"searchTree": "HlYf2W_searchTree",
|
|
991
|
-
"deleteAction": "HlYf2W_deleteAction",
|
|
992
|
-
"workspaceDropAfter": "HlYf2W_workspaceDropAfter",
|
|
993
|
-
"search": "HlYf2W_search",
|
|
994
|
-
"searchSlot": "HlYf2W_searchSlot",
|
|
995
|
-
"rail": "HlYf2W_rail",
|
|
996
|
-
"groupSection": "HlYf2W_groupSection",
|
|
997
|
-
"renameInput": "HlYf2W_renameInput",
|
|
998
|
-
"searchStatus": "HlYf2W_searchStatus",
|
|
999
992
|
"searchSlotExpanded": "HlYf2W_searchSlotExpanded",
|
|
1000
|
-
"
|
|
1001
|
-
"clearButton": "HlYf2W_clearButton",
|
|
993
|
+
"searchButton": "HlYf2W_searchButton",
|
|
1002
994
|
"fade": "HlYf2W_fade",
|
|
1003
|
-
"
|
|
1004
|
-
"
|
|
1005
|
-
"empty": "HlYf2W_empty",
|
|
995
|
+
"workspaceDropAfter": "HlYf2W_workspaceDropAfter",
|
|
996
|
+
"deleteAction": "HlYf2W_deleteAction",
|
|
1006
997
|
"deleteStatus": "HlYf2W_deleteStatus",
|
|
1007
|
-
"listArea": "HlYf2W_listArea",
|
|
1008
|
-
"iconButton": "HlYf2W_iconButton",
|
|
1009
|
-
"searchExpanded": "HlYf2W_searchExpanded",
|
|
1010
|
-
"treeBody": "HlYf2W_treeBody",
|
|
1011
998
|
"headerActions": "HlYf2W_headerActions",
|
|
999
|
+
"workspaceDropBefore": "HlYf2W_workspaceDropBefore",
|
|
1000
|
+
"listTopDropActive": "HlYf2W_listTopDropActive",
|
|
1012
1001
|
"searchInput": "HlYf2W_searchInput",
|
|
1013
|
-
"
|
|
1014
|
-
"
|
|
1002
|
+
"groupSection": "HlYf2W_groupSection",
|
|
1003
|
+
"sectionLabel": "HlYf2W_sectionLabel",
|
|
1004
|
+
"iconButton": "HlYf2W_iconButton",
|
|
1005
|
+
"clearButton": "HlYf2W_clearButton",
|
|
1006
|
+
"listTopDropIndicator": "HlYf2W_listTopDropIndicator",
|
|
1007
|
+
"sectionHeader": "HlYf2W_sectionHeader",
|
|
1008
|
+
"search": "HlYf2W_search",
|
|
1009
|
+
"searchWarning": "HlYf2W_searchWarning",
|
|
1010
|
+
"listArea": "HlYf2W_listArea",
|
|
1011
|
+
"searchStatus": "HlYf2W_searchStatus",
|
|
1012
|
+
"rail": "HlYf2W_rail",
|
|
1013
|
+
"flatList": "HlYf2W_flatList",
|
|
1014
|
+
"renameInput": "HlYf2W_renameInput"
|
|
1015
1015
|
};
|
|
1016
1016
|
//#endregion
|
|
1017
1017
|
//#region src/client/WorkspaceBrowser.tsx
|