nolo-cli 0.1.41 → 0.1.43
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 +27 -12
- package/agent-runtime/agentThread.ts +222 -0
- package/agent-runtime/agentThreadAdmission.ts +74 -0
- package/agent-runtime/dialogWritePlan.ts +42 -0
- package/agent-runtime/hostAdapter.ts +1 -0
- package/agent-runtime/index.ts +43 -0
- package/agent-runtime/localLoop.ts +31 -2
- package/agent-runtime/localToolPolicy.ts +1 -0
- package/agent-runtime/localWorkspaceTools.ts +1258 -78
- package/agent-runtime/noloWorkspaceTools.ts +20 -1
- package/agent-runtime/runtimeToolPolicy.ts +1 -5
- package/agent-runtime/runtimeToolSurface.ts +1 -0
- package/agentAliases.ts +29 -9
- package/agentInternalCommandEntries.ts +11 -3
- package/agentMachineCommands.ts +1 -0
- package/agentRecordCommands.ts +2 -2
- package/agentRecordHelpers.ts +59 -6
- package/agentRunCommand.ts +84 -19
- package/ai/agent/buildSystemPrompt.ts +14 -0
- package/ai/agent/cliExecutor.ts +202 -43
- package/ai/agent/createAgentSchema.ts +2 -2
- package/ai/agent/liveAudioModel.ts +1 -1
- package/ai/agent/streamAgentChatTurn.ts +154 -20
- package/ai/agent/streamAgentChatTurnUtils.ts +63 -0
- package/ai/ai.locale.ts +70 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +7 -2
- package/ai/chat/sendOpenAICompletionsRequest.ts +25 -1
- package/ai/llm/kimi.ts +0 -1
- package/ai/llm/openrouterModels.ts +27 -2
- package/ai/memory/policy.ts +49 -0
- package/ai/memory/queryShared.ts +10 -4
- package/ai/memory/recentRelationshipRecap.ts +4 -0
- package/ai/memory/remember.ts +48 -104
- package/ai/memory/scope.ts +74 -0
- package/ai/memory/types.ts +6 -0
- package/ai/memory/understanding.ts +10 -18
- package/ai/policy/runtimePolicy.ts +95 -23
- package/ai/tools/agent/agentTools.ts +0 -21
- package/ai/tools/agent/startAgentDialogTool.ts +2 -1
- package/ai/tools/index.ts +2 -20
- package/ai/tools/prepareTools.ts +171 -1
- package/ai/tools/readXhsProfileTool.ts +80 -69
- package/ai/tools/table/createTableTool.ts +11 -0
- package/ai/tools/toolPacks.ts +19 -0
- package/ai/types.ts +3 -0
- package/app/favorite/deletedFavoriteProjection.ts +31 -0
- package/app/hooks/deleteDbKey.ts +24 -3
- package/app/i18n/translations/interface.locale.ts +48 -16
- package/app/types/appSummary.ts +4 -0
- package/app/utils/desktopAgentRuntimeTurnClient.ts +2 -0
- package/auth/adminPermissions.ts +64 -4
- package/auth/routes.ts +5 -0
- package/chat/chat.locale.ts +4 -0
- package/chat/dialog/actions/handleSendMessageAction.ts +7 -2
- package/chat/dialog/dialogAttachmentCleanup.ts +135 -0
- package/chat/dialog/dialogSlice.ts +117 -4
- package/chat/messages/activityCompletion.ts +97 -0
- package/chat/messages/imagePayloadPersistence.ts +22 -0
- package/chat/messages/messageContent.ts +20 -16
- package/chat/messages/messageSlice.ts +20 -1
- package/chat/messages/toolThunks.ts +32 -11
- package/chat/messages/types.ts +8 -1
- package/chat/messages/web/toolDisplayName.ts +686 -0
- package/cli/agentAliases.ts +29 -9
- package/cli/agentInternalCommandEntries.ts +11 -3
- package/cli/agentMachineCommands.ts +1 -0
- package/cli/agentRecordCommands.ts +2 -2
- package/cli/agentRecordHelpers.ts +59 -6
- package/cli/agentRunCommand.ts +84 -19
- package/cli/client/agentRun.ts +65 -253
- package/cli/client/localRuntimeAdapter.ts +179 -53
- package/cli/commandRegistry.ts +7 -4
- package/cli/dialogAttachmentCleanup.ts +151 -0
- package/cli/dialogCommands.ts +163 -61
- package/cli/dialogInternalCommandEntries.ts +1 -1
- package/cli/docCreateCommands.ts +345 -0
- package/cli/docInternalCommandEntries.ts +11 -0
- package/cli/docPageHelpers.ts +80 -0
- package/cli/docSkillHelpers.ts +67 -0
- package/cli/docSpaceHelpers.ts +46 -0
- package/cli/internalCommandEntries.ts +4 -0
- package/cli/machineCommands.ts +18 -34
- package/cli/memoryCommands.ts +253 -0
- package/cli/memoryInternalCommandEntries.ts +9 -0
- package/cli/qoderUsageProbe.ts +252 -0
- package/cli/scriptCommandEntries.ts +0 -3
- package/cli/secretScan.ts +31 -0
- package/cli/tableCommands.ts +248 -13
- package/cli/workflowInternalCommandEntries.ts +2 -3
- package/client/agentRun.test.ts +68 -84
- package/client/agentRun.ts +65 -253
- package/client/localRuntimeAdapter.test.ts +505 -74
- package/client/localRuntimeAdapter.ts +179 -53
- package/commandRegistry.ts +7 -4
- package/connector-experimental/capabilities.ts +10 -9
- package/create/space/sidebarVisibleTypes.ts +19 -0
- package/dialogAttachmentCleanup.ts +151 -0
- package/dialogCommands.ts +163 -61
- package/dialogInternalCommandEntries.ts +1 -1
- package/docCreateCommands.ts +345 -0
- package/docInternalCommandEntries.ts +11 -0
- package/docPageHelpers.ts +80 -0
- package/docSkillHelpers.ts +67 -0
- package/docSpaceHelpers.ts +46 -0
- package/integrations/google/models.ts +4 -4
- package/integrations/openai/generateOpenAIRequestBody.ts +0 -3
- package/integrations/xhs-reader/types.ts +36 -3
- package/integrations/xhs-reader/url.ts +24 -1
- package/internalCommandEntries.ts +4 -0
- package/machineCommands.ts +18 -34
- package/memoryCommands.ts +253 -0
- package/memoryInternalCommandEntries.ts +9 -0
- package/package.json +141 -114
- package/qoderUsageProbe.ts +252 -0
- package/render/contentIcon/types.ts +167 -0
- package/render/page/docSlice.ts +30 -3
- package/render/page/types.ts +2 -0
- package/render/table/createTableAction.ts +4 -0
- package/render/table/tableSlice.ts +61 -0
- package/render/table/types.ts +10 -0
- package/scriptCommandEntries.ts +0 -3
- package/secretScan.ts +31 -0
- package/server/handlers/agentRun/types.ts +24 -23
- package/tableCommands.ts +248 -13
- package/workflowInternalCommandEntries.ts +2 -3
- package/ai/tools/agent/taskRunTool.ts +0 -112
- package/cli/client/taskRunPrompt.ts +0 -27
- package/cli/taskRunCommand.ts +0 -265
- package/client/taskRunPrompt.ts +0 -27
- package/integrations/xhs-reader/analyze/profileAnalyzer.ts +0 -205
- package/integrations/xhs-reader/backends/playwrightProfileCollector.ts +0 -624
- package/integrations/xhs-reader/bridge/readXhsProfileWithBridge.ts +0 -227
- package/integrations/xhs-reader/client/xhsWebApiClient.ts +0 -229
- package/integrations/xhs-reader/normalize.ts +0 -390
- package/integrations/xhs-reader/orchestrator.ts +0 -178
- package/taskRunCommand.ts +0 -265
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nolo-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.43",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent-first terminal workspace for Nolo",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/nolotus/nolo-cli.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/nolotus/nolo-cli/issues"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/nolotus/nolo-cli#readme",
|
|
6
14
|
"bin": {
|
|
7
15
|
"nolo": "index.ts"
|
|
8
16
|
},
|
|
@@ -35,6 +43,11 @@
|
|
|
35
43
|
"agentInternalCommandEntries.ts",
|
|
36
44
|
"dialogCommands.ts",
|
|
37
45
|
"dialogInternalCommandEntries.ts",
|
|
46
|
+
"docCreateCommands.ts",
|
|
47
|
+
"docInternalCommandEntries.ts",
|
|
48
|
+
"docPageHelpers.ts",
|
|
49
|
+
"docSkillHelpers.ts",
|
|
50
|
+
"docSpaceHelpers.ts",
|
|
38
51
|
"globalRecordOperations.ts",
|
|
39
52
|
"internalCommandEntries.ts",
|
|
40
53
|
"machineCommands.ts",
|
|
@@ -42,7 +55,7 @@
|
|
|
42
55
|
"runtimeDoctorCommands.ts",
|
|
43
56
|
"scriptCommandEntries.ts",
|
|
44
57
|
"systemInternalCommandEntries.ts",
|
|
45
|
-
"
|
|
58
|
+
"secretScan.ts",
|
|
46
59
|
"workflowInternalCommandEntries.ts",
|
|
47
60
|
"runtimeModeArgs.ts",
|
|
48
61
|
"tableCommands.ts",
|
|
@@ -59,7 +72,6 @@
|
|
|
59
72
|
"client/agentConfigResolver.test.ts",
|
|
60
73
|
"client/localAgentRecords.ts",
|
|
61
74
|
"client/localProviderResolver.test.ts",
|
|
62
|
-
"client/taskRunPrompt.ts",
|
|
63
75
|
"client/localToolPolicy.test.ts",
|
|
64
76
|
"client/localRuntimeDryRun.test.ts",
|
|
65
77
|
"client/agentConfigResolver.ts",
|
|
@@ -87,6 +99,10 @@
|
|
|
87
99
|
"machineWsSession.ts",
|
|
88
100
|
"machineStatusCommands.ts",
|
|
89
101
|
"machineWsPromptMaterialization.ts",
|
|
102
|
+
"memoryInternalCommandEntries.ts",
|
|
103
|
+
"memoryCommands.ts",
|
|
104
|
+
"dialogAttachmentCleanup.ts",
|
|
105
|
+
"qoderUsageProbe.ts",
|
|
90
106
|
"localRuntimeAuthority.ts",
|
|
91
107
|
"cli/commandRegistry.ts",
|
|
92
108
|
"cli/client/profileConfig.ts",
|
|
@@ -113,7 +129,6 @@
|
|
|
113
129
|
"cli/defaultServer.ts",
|
|
114
130
|
"cli/client/agentRun.ts",
|
|
115
131
|
"cli/agentRuntimeLocal.ts",
|
|
116
|
-
"cli/client/taskRunPrompt.ts",
|
|
117
132
|
"cli/cliCommandTypes.ts",
|
|
118
133
|
"cli/cliCommandAdapters.ts",
|
|
119
134
|
"cli/cliCommandDispatch.ts",
|
|
@@ -122,11 +137,20 @@
|
|
|
122
137
|
"cli/agentPullCommand.ts",
|
|
123
138
|
"cli/agentRecordCommands.ts",
|
|
124
139
|
"cli/agentRunCommand.ts",
|
|
140
|
+
"cli/qoderUsageProbe.ts",
|
|
125
141
|
"cli/cliCommandFactories.ts",
|
|
126
142
|
"cli/offlineMarxistsAgentCommand.ts",
|
|
143
|
+
"cli/dialogAttachmentCleanup.ts",
|
|
127
144
|
"cli/dialogCommands.ts",
|
|
145
|
+
"cli/docPageHelpers.ts",
|
|
146
|
+
"cli/docSkillHelpers.ts",
|
|
147
|
+
"cli/docSpaceHelpers.ts",
|
|
148
|
+
"cli/secretScan.ts",
|
|
149
|
+
"cli/docCreateCommands.ts",
|
|
128
150
|
"cli/agentInternalCommandEntries.ts",
|
|
129
151
|
"cli/dialogInternalCommandEntries.ts",
|
|
152
|
+
"cli/docInternalCommandEntries.ts",
|
|
153
|
+
"cli/memoryInternalCommandEntries.ts",
|
|
130
154
|
"cli/systemInternalCommandEntries.ts",
|
|
131
155
|
"cli/workflowInternalCommandEntries.ts",
|
|
132
156
|
"cli/machineDaemonCommands.ts",
|
|
@@ -137,7 +161,6 @@
|
|
|
137
161
|
"cli/machineStatusCommands.ts",
|
|
138
162
|
"cli/authCommands.ts",
|
|
139
163
|
"cli/tableCommands.ts",
|
|
140
|
-
"cli/taskRunCommand.ts",
|
|
141
164
|
"cli/client/streamingOutput.ts",
|
|
142
165
|
"cli/client/agentConfigResolver.ts",
|
|
143
166
|
"cli/client/localProviderResolver.ts",
|
|
@@ -147,6 +170,7 @@
|
|
|
147
170
|
"cli/tui/session.ts",
|
|
148
171
|
"cli/connectorRunArtifact.ts",
|
|
149
172
|
"cli/machineWsPromptMaterialization.ts",
|
|
173
|
+
"cli/memoryCommands.ts",
|
|
150
174
|
"agent-runtime/index.ts",
|
|
151
175
|
"agent-runtime/localLoop.ts",
|
|
152
176
|
"agent-runtime/localWorkspaceTools.ts",
|
|
@@ -164,6 +188,8 @@
|
|
|
164
188
|
"agent-runtime/platformChatProvider.ts",
|
|
165
189
|
"agent-runtime/runtimeFacts.ts",
|
|
166
190
|
"agent-runtime/agentRecordKeys.ts",
|
|
191
|
+
"agent-runtime/agentThreadAdmission.ts",
|
|
192
|
+
"agent-runtime/agentThread.ts",
|
|
167
193
|
"agent-runtime/agentRecordConfig.ts",
|
|
168
194
|
"agent-runtime/dialogMessageRecord.ts",
|
|
169
195
|
"agent-runtime/dialogWritePlan.ts",
|
|
@@ -174,6 +200,7 @@
|
|
|
174
200
|
"connector-experimental/capabilities.ts",
|
|
175
201
|
"connector-experimental/codexBinary.ts",
|
|
176
202
|
"database/server/dbPath.ts",
|
|
203
|
+
"database/keys.ts",
|
|
177
204
|
"database/config.ts",
|
|
178
205
|
"database/tombstones.ts",
|
|
179
206
|
"database/userDataMerge.ts",
|
|
@@ -185,7 +212,6 @@
|
|
|
185
212
|
"database/server/legacyServerDb.ts",
|
|
186
213
|
"database/server/cliAuthorityBrokerTypes.ts",
|
|
187
214
|
"database/actions/common.ts",
|
|
188
|
-
"database/keys.ts",
|
|
189
215
|
"database/userPreferenceRegister.ts",
|
|
190
216
|
"database/dbActionThunks.ts",
|
|
191
217
|
"database/dbSlice.ts",
|
|
@@ -211,20 +237,22 @@
|
|
|
211
237
|
"database/actions/readRequestManager.ts",
|
|
212
238
|
"database/actions/agentReadResolution.ts",
|
|
213
239
|
"database/fileUrl.ts",
|
|
240
|
+
"database/actions/deleteFile.ts",
|
|
214
241
|
"database/client/fetchUserData.ts",
|
|
215
242
|
"database/queryPrefixes.ts",
|
|
216
|
-
"database/actions/deleteFile.ts",
|
|
217
243
|
"database/server/db.ts",
|
|
218
244
|
"database/server/ensureDbOpen.ts",
|
|
219
245
|
"database/server/serverStoreFactory.ts",
|
|
220
246
|
"database/server/memoryAuthorityStore.ts",
|
|
221
247
|
"ai/agent/cliExecutor.ts",
|
|
222
248
|
"ai/skills/skillDocProtocol.ts",
|
|
249
|
+
"ai/skills/skillSummaryMarker.ts",
|
|
223
250
|
"ai/policy/runtimePolicy.ts",
|
|
251
|
+
"ai/tools/toolPacks.ts",
|
|
224
252
|
"ai/tools/prepareTools.ts",
|
|
225
|
-
"ai/tools/agent/taskRunTool.ts",
|
|
226
253
|
"ai/agent/cliPrompt.ts",
|
|
227
254
|
"ai/tools/readXhsProfileTool.ts",
|
|
255
|
+
"ai/tools/readXPostTool.ts",
|
|
228
256
|
"ai/tools/toolApiClient.ts",
|
|
229
257
|
"ai/tools/index.ts",
|
|
230
258
|
"ai/tools/toolNameAliases.ts",
|
|
@@ -258,7 +286,6 @@
|
|
|
258
286
|
"ai/tools/table/schemaTools.ts",
|
|
259
287
|
"ai/tools/fetchWebpageTool.ts",
|
|
260
288
|
"ai/tools/convertMarxistsBookTool.ts",
|
|
261
|
-
"ai/tools/readXPostTool.ts",
|
|
262
289
|
"ai/tools/surfWeatherTool.ts",
|
|
263
290
|
"ai/tools/wereadGatewayTool.ts",
|
|
264
291
|
"ai/tools/browserTools/closeSession.ts",
|
|
@@ -348,7 +375,6 @@
|
|
|
348
375
|
"ai/agent/liveAudioModel.ts",
|
|
349
376
|
"ai/tools/toolResultError.ts",
|
|
350
377
|
"ai/agent/canvasEditingContext.ts",
|
|
351
|
-
"ai/skills/skillSummaryMarker.ts",
|
|
352
378
|
"ai/agent/utils/publicImageAgentMode.ts",
|
|
353
379
|
"ai/skills/referenceRuntime.ts",
|
|
354
380
|
"ai/chat/fetchUtils.ts",
|
|
@@ -381,9 +407,11 @@
|
|
|
381
407
|
"ai/token/saveTokenRecord.ts",
|
|
382
408
|
"ai/memory/storeShared.ts",
|
|
383
409
|
"ai/memory/queryShared.ts",
|
|
410
|
+
"ai/memory/scope.ts",
|
|
384
411
|
"ai/memory/types.ts",
|
|
385
412
|
"ai/memory/recentRelationshipRecap.ts",
|
|
386
413
|
"ai/memory/understandingGreeting.ts",
|
|
414
|
+
"ai/memory/policy.ts",
|
|
387
415
|
"ai/workflow/workflowTypes.ts",
|
|
388
416
|
"ai/tools/dialogMessageSearch.ts",
|
|
389
417
|
"ai/tools/appReadSnapshot.ts",
|
|
@@ -419,12 +447,63 @@
|
|
|
419
447
|
"ai/tools/skillFollowup.ts",
|
|
420
448
|
"ai/skills/skillDiagnostics.ts",
|
|
421
449
|
"ai/skills/skillDocBuilder.ts",
|
|
422
|
-
"ai/ai.locale.ts",
|
|
423
450
|
"ai/workflow/workflowExecutor.ts",
|
|
451
|
+
"ai/ai.locale.ts",
|
|
452
|
+
"create/types.ts",
|
|
453
|
+
"create/space/spaceKeys.ts",
|
|
454
|
+
"create/space/sidebarVisibleTypes.ts",
|
|
455
|
+
"create/space/spaceSlice.ts",
|
|
456
|
+
"create/editor/utils/slateUtils.ts",
|
|
457
|
+
"create/editor/transforms/slateToRenderMarkdown.ts",
|
|
458
|
+
"create/editor/transforms/markdownToSlate.ts",
|
|
459
|
+
"create/editor/transforms/fromMarkdown/index.ts",
|
|
460
|
+
"create/editor/transforms/fromMarkdown/inline.ts",
|
|
461
|
+
"create/editor/transforms/fromMarkdown/table.ts",
|
|
462
|
+
"create/space/contentKeyUtils.ts",
|
|
463
|
+
"create/editor/transforms/slateToText.ts",
|
|
464
|
+
"create/editor/transforms/slateToSimplifiedMarkdown.ts",
|
|
465
|
+
"create/space/content/addContentAction.ts",
|
|
466
|
+
"create/space/types.ts",
|
|
467
|
+
"create/space/utils/permissions.ts",
|
|
468
|
+
"create/space/constants.ts",
|
|
469
|
+
"create/space/category/categoryActions.ts",
|
|
470
|
+
"create/space/content/contentThunks.ts",
|
|
471
|
+
"create/space/member/memberThunks.ts",
|
|
472
|
+
"create/space/spaceThunks.ts",
|
|
473
|
+
"create/space/addSpaceAction.ts",
|
|
474
|
+
"create/space/deleteSpaceAction.ts",
|
|
475
|
+
"create/space/fetchSpaceAction.ts",
|
|
476
|
+
"create/space/loadDefaultSpaceAction.ts",
|
|
477
|
+
"create/space/updateSpaceAction.ts",
|
|
478
|
+
"create/space/fetchSpaceSidebarStateAction.ts",
|
|
479
|
+
"create/space/changeSpaceAction.ts",
|
|
480
|
+
"create/space/spaceCollapsedState.ts",
|
|
481
|
+
"create/space/resolvePreferredSpaceId.ts",
|
|
482
|
+
"create/space/spaceAccess.ts",
|
|
483
|
+
"create/space/member/fetchUserSpaceMembershipsAction.ts",
|
|
484
|
+
"create/space/member/addMemberAction.ts",
|
|
485
|
+
"create/space/member/removeMemberAction.ts",
|
|
486
|
+
"create/space/content/deleteContentFromSpaceAction.ts",
|
|
487
|
+
"create/space/content/moveContentAction.ts",
|
|
488
|
+
"create/space/content/updateContentTitleAction.ts",
|
|
489
|
+
"create/space/content/updateContentCategoryAction.ts",
|
|
490
|
+
"create/space/content/deleteMultipleContentAction.ts",
|
|
491
|
+
"create/space/content/uploadAndAddFileToSpaceAction.ts",
|
|
492
|
+
"create/space/space.locale.ts",
|
|
493
|
+
"core/localOrigins.ts",
|
|
494
|
+
"core/prefix.ts",
|
|
495
|
+
"core/init.ts",
|
|
496
|
+
"core/builtinAgents.ts",
|
|
497
|
+
"core/generateMainKey.ts",
|
|
498
|
+
"core/generateKeyPairFromSeedV1.ts",
|
|
499
|
+
"core/password.ts",
|
|
500
|
+
"core/crypto.ts",
|
|
501
|
+
"core/config.ts",
|
|
424
502
|
"render/table/activityColumns.ts",
|
|
425
503
|
"render/table/tableSlice.ts",
|
|
426
504
|
"render/page/docSlice.ts",
|
|
427
505
|
"render/page/types.ts",
|
|
506
|
+
"render/contentIcon/types.ts",
|
|
428
507
|
"render/page/createPageAction.ts",
|
|
429
508
|
"render/table/fetchAndCacheTableRows.ts",
|
|
430
509
|
"render/table/createTableAction.ts",
|
|
@@ -432,14 +511,48 @@
|
|
|
432
511
|
"render/table/types.ts",
|
|
433
512
|
"render/table/utils/tableSerialization.ts",
|
|
434
513
|
"render/table/toolValueUtils.ts",
|
|
435
|
-
"
|
|
436
|
-
"
|
|
514
|
+
"chat/dialog/dialogAttachmentCleanup.ts",
|
|
515
|
+
"chat/messages/types.ts",
|
|
516
|
+
"chat/dialog/dialogSlice.ts",
|
|
517
|
+
"chat/messages/messageSlice.ts",
|
|
518
|
+
"chat/dialog/actions/addReferenceKeysAction.ts",
|
|
519
|
+
"chat/messages/fetchAndCacheMessages.ts",
|
|
520
|
+
"chat/dialog/actions/updateDialogSummaryAction.ts",
|
|
521
|
+
"chat/messages/messageContent.ts",
|
|
522
|
+
"chat/messages/messageContract.ts",
|
|
523
|
+
"chat/messages/activityCompletion.ts",
|
|
524
|
+
"chat/dialog/actions/handleSendMessageResolver.ts",
|
|
525
|
+
"chat/dialog/dialogUrl.ts",
|
|
526
|
+
"chat/messages/toolThunks.ts",
|
|
527
|
+
"chat/dialog/actions/updateTokensAction.ts",
|
|
528
|
+
"chat/dialog/dialogAgents.ts",
|
|
529
|
+
"chat/messages/web/toolDisplayName.ts",
|
|
530
|
+
"chat/messages/fileUrl.ts",
|
|
531
|
+
"chat/messages/imagePayloadPersistence.ts",
|
|
532
|
+
"chat/dialog/actions/builtinDialogLlm.ts",
|
|
533
|
+
"chat/messages/fetchMessages.ts",
|
|
534
|
+
"chat/messages/fetchConvMsgs.ts",
|
|
535
|
+
"chat/dialog/actions/cleanupCliSession.ts",
|
|
536
|
+
"chat/dialog/dialogTokenStats.ts",
|
|
537
|
+
"chat/dialog/goal.ts",
|
|
538
|
+
"chat/dialog/actions/createDialogAction.ts",
|
|
539
|
+
"chat/dialog/actions/createScheduledTaskAction.ts",
|
|
540
|
+
"chat/dialog/actions/updateDialogTitleAction.ts",
|
|
541
|
+
"chat/dialog/actions/addCybotAction.ts",
|
|
542
|
+
"chat/dialog/actions/removeCybotAction.ts",
|
|
543
|
+
"chat/dialog/actions/replacePrimaryCybotAction.ts",
|
|
544
|
+
"chat/dialog/actions/removeDialogAgentAction.ts",
|
|
545
|
+
"chat/dialog/actions/setPrimaryDialogAgentAction.ts",
|
|
546
|
+
"chat/dialog/actions/handleSendMessageAction.ts",
|
|
547
|
+
"chat/dialog/actions/updateDialogTitlePolicy.ts",
|
|
548
|
+
"chat/dialog/dialogTitle.ts",
|
|
549
|
+
"chat/dialog/schedule.ts",
|
|
550
|
+
"chat/dialog/objectAssistantRegistry.ts",
|
|
551
|
+
"chat/messages/messageAgent.ts",
|
|
552
|
+
"chat/chat.locale.ts",
|
|
553
|
+
"integrations/x-reader/types.ts",
|
|
437
554
|
"integrations/xhs-reader/types.ts",
|
|
438
555
|
"integrations/xhs-reader/redaction.ts",
|
|
439
|
-
"integrations/xhs-reader/backends/playwrightProfileCollector.ts",
|
|
440
|
-
"integrations/xhs-reader/client/xhsWebApiClient.ts",
|
|
441
|
-
"integrations/xhs-reader/analyze/profileAnalyzer.ts",
|
|
442
|
-
"integrations/xhs-reader/normalize.ts",
|
|
443
556
|
"integrations/xhs-reader/url.ts",
|
|
444
557
|
"integrations/openai/filterAndCleanMessages.ts",
|
|
445
558
|
"integrations/anthropic/anthropicModels.ts",
|
|
@@ -453,16 +566,7 @@
|
|
|
453
566
|
"integrations/openai/generateResponseRequestBody.ts",
|
|
454
567
|
"integrations/openai/providerBodyCompatibility.ts",
|
|
455
568
|
"integrations/openai/chatCompletionStreamMode.ts",
|
|
456
|
-
"
|
|
457
|
-
"core/prefix.ts",
|
|
458
|
-
"core/init.ts",
|
|
459
|
-
"core/builtinAgents.ts",
|
|
460
|
-
"core/generateMainKey.ts",
|
|
461
|
-
"core/generateKeyPairFromSeedV1.ts",
|
|
462
|
-
"core/password.ts",
|
|
463
|
-
"core/crypto.ts",
|
|
464
|
-
"core/config.ts",
|
|
465
|
-
"core/localOrigins.ts",
|
|
569
|
+
"app/i18n/index.ts",
|
|
466
570
|
"app/settings/settingSlice.tsx",
|
|
467
571
|
"app/store.ts",
|
|
468
572
|
"app/utils/env.ts",
|
|
@@ -490,6 +594,7 @@
|
|
|
490
594
|
"app/utils/async.ts",
|
|
491
595
|
"app/favorite/type.ts",
|
|
492
596
|
"app/hooks/deleteDbKey.ts",
|
|
597
|
+
"app/favorite/deletedFavoriteProjection.ts",
|
|
493
598
|
"app/reducer.ts",
|
|
494
599
|
"app/notifications/notificationSlice.ts",
|
|
495
600
|
"app/notifications/model.ts",
|
|
@@ -498,7 +603,6 @@
|
|
|
498
603
|
"app/utils/appKeys.ts",
|
|
499
604
|
"app/actions/syncAppRecord.ts",
|
|
500
605
|
"app/utils/retryAfter.ts",
|
|
501
|
-
"app/i18n/index.ts",
|
|
502
606
|
"app/i18n/i18n.config.ts",
|
|
503
607
|
"app/i18n/translations/interface.locale.ts",
|
|
504
608
|
"app/i18n/translations/error.locale.ts",
|
|
@@ -515,88 +619,12 @@
|
|
|
515
619
|
"auth/routes.ts",
|
|
516
620
|
"auth/types.ts",
|
|
517
621
|
"auth/adminPermissions.ts",
|
|
518
|
-
"create/space/sidebarVisibleTypes.ts",
|
|
519
|
-
"create/space/spaceKeys.ts",
|
|
520
|
-
"create/types.ts",
|
|
521
|
-
"create/space/spaceSlice.ts",
|
|
522
|
-
"create/editor/utils/slateUtils.ts",
|
|
523
|
-
"create/editor/transforms/slateToRenderMarkdown.ts",
|
|
524
|
-
"create/editor/transforms/markdownToSlate.ts",
|
|
525
|
-
"create/editor/transforms/fromMarkdown/index.ts",
|
|
526
|
-
"create/editor/transforms/fromMarkdown/inline.ts",
|
|
527
|
-
"create/editor/transforms/fromMarkdown/table.ts",
|
|
528
|
-
"create/space/contentKeyUtils.ts",
|
|
529
|
-
"create/editor/transforms/slateToText.ts",
|
|
530
|
-
"create/editor/transforms/slateToSimplifiedMarkdown.ts",
|
|
531
|
-
"create/space/content/addContentAction.ts",
|
|
532
|
-
"create/space/types.ts",
|
|
533
|
-
"create/space/utils/permissions.ts",
|
|
534
|
-
"create/space/constants.ts",
|
|
535
|
-
"create/space/category/categoryActions.ts",
|
|
536
|
-
"create/space/content/contentThunks.ts",
|
|
537
|
-
"create/space/member/memberThunks.ts",
|
|
538
|
-
"create/space/spaceThunks.ts",
|
|
539
|
-
"create/space/addSpaceAction.ts",
|
|
540
|
-
"create/space/deleteSpaceAction.ts",
|
|
541
|
-
"create/space/fetchSpaceAction.ts",
|
|
542
|
-
"create/space/loadDefaultSpaceAction.ts",
|
|
543
|
-
"create/space/updateSpaceAction.ts",
|
|
544
|
-
"create/space/fetchSpaceSidebarStateAction.ts",
|
|
545
|
-
"create/space/changeSpaceAction.ts",
|
|
546
|
-
"create/space/spaceCollapsedState.ts",
|
|
547
|
-
"create/space/resolvePreferredSpaceId.ts",
|
|
548
|
-
"create/space/spaceAccess.ts",
|
|
549
|
-
"create/space/member/fetchUserSpaceMembershipsAction.ts",
|
|
550
|
-
"create/space/member/addMemberAction.ts",
|
|
551
|
-
"create/space/member/removeMemberAction.ts",
|
|
552
|
-
"create/space/content/deleteContentFromSpaceAction.ts",
|
|
553
|
-
"create/space/content/moveContentAction.ts",
|
|
554
|
-
"create/space/content/updateContentTitleAction.ts",
|
|
555
|
-
"create/space/content/updateContentCategoryAction.ts",
|
|
556
|
-
"create/space/content/deleteMultipleContentAction.ts",
|
|
557
|
-
"create/space/content/uploadAndAddFileToSpaceAction.ts",
|
|
558
|
-
"create/space/space.locale.ts",
|
|
559
622
|
"share/action.ts",
|
|
560
623
|
"share/types.ts",
|
|
561
624
|
"share/keys.ts",
|
|
562
625
|
"share/helpers.ts",
|
|
563
626
|
"share/shareSlice.ts",
|
|
564
627
|
"share/publicSharePolicy.ts",
|
|
565
|
-
"chat/messages/types.ts",
|
|
566
|
-
"chat/dialog/dialogSlice.ts",
|
|
567
|
-
"chat/messages/messageSlice.ts",
|
|
568
|
-
"chat/dialog/actions/addReferenceKeysAction.ts",
|
|
569
|
-
"chat/messages/fetchAndCacheMessages.ts",
|
|
570
|
-
"chat/dialog/actions/updateDialogSummaryAction.ts",
|
|
571
|
-
"chat/messages/messageContent.ts",
|
|
572
|
-
"chat/messages/messageContract.ts",
|
|
573
|
-
"chat/dialog/actions/handleSendMessageResolver.ts",
|
|
574
|
-
"chat/dialog/dialogUrl.ts",
|
|
575
|
-
"chat/messages/toolThunks.ts",
|
|
576
|
-
"chat/dialog/actions/updateTokensAction.ts",
|
|
577
|
-
"chat/dialog/dialogAgents.ts",
|
|
578
|
-
"chat/messages/fileUrl.ts",
|
|
579
|
-
"chat/dialog/actions/builtinDialogLlm.ts",
|
|
580
|
-
"chat/messages/fetchMessages.ts",
|
|
581
|
-
"chat/messages/fetchConvMsgs.ts",
|
|
582
|
-
"chat/dialog/actions/cleanupCliSession.ts",
|
|
583
|
-
"chat/dialog/dialogTokenStats.ts",
|
|
584
|
-
"chat/dialog/goal.ts",
|
|
585
|
-
"chat/dialog/actions/createDialogAction.ts",
|
|
586
|
-
"chat/dialog/actions/createScheduledTaskAction.ts",
|
|
587
|
-
"chat/dialog/actions/updateDialogTitleAction.ts",
|
|
588
|
-
"chat/dialog/actions/addCybotAction.ts",
|
|
589
|
-
"chat/dialog/actions/removeCybotAction.ts",
|
|
590
|
-
"chat/dialog/actions/replacePrimaryCybotAction.ts",
|
|
591
|
-
"chat/dialog/actions/removeDialogAgentAction.ts",
|
|
592
|
-
"chat/dialog/actions/setPrimaryDialogAgentAction.ts",
|
|
593
|
-
"chat/dialog/actions/handleSendMessageAction.ts",
|
|
594
|
-
"chat/dialog/actions/updateDialogTitlePolicy.ts",
|
|
595
|
-
"chat/dialog/dialogTitle.ts",
|
|
596
|
-
"chat/dialog/schedule.ts",
|
|
597
|
-
"chat/dialog/objectAssistantRegistry.ts",
|
|
598
|
-
"chat/messages/messageAgent.ts",
|
|
599
|
-
"chat/chat.locale.ts",
|
|
600
628
|
"server/handlers/agentRun/types.ts"
|
|
601
629
|
],
|
|
602
630
|
"publishConfig": {
|
|
@@ -610,10 +638,10 @@
|
|
|
610
638
|
},
|
|
611
639
|
"dependencies": {
|
|
612
640
|
"ulid": "^2.3.0",
|
|
641
|
+
"rambda": "^8.6.0",
|
|
613
642
|
"level": "^10.0.0",
|
|
614
643
|
"pino": "^9.9.0",
|
|
615
644
|
"@react-native-community/netinfo": "^11.5.0",
|
|
616
|
-
"rambda": "^8.6.0",
|
|
617
645
|
"@reduxjs/toolkit": "^2.5.0",
|
|
618
646
|
"react-native-blob-util": "^0.24.7",
|
|
619
647
|
"js-yaml": "^4.1.0",
|
|
@@ -622,19 +650,18 @@
|
|
|
622
650
|
"iztro": "^2.5.8",
|
|
623
651
|
"i18next": "^23.11.5",
|
|
624
652
|
"zod": "^3.25.20",
|
|
625
|
-
"
|
|
626
|
-
"
|
|
653
|
+
"slate": "^0.112.0",
|
|
654
|
+
"mdast-util-from-markdown": "^2.0.2",
|
|
655
|
+
"mdast-util-gfm": "^3.0.0",
|
|
656
|
+
"micromark-extension-gfm": "^3.0.0",
|
|
627
657
|
"tweetnacl": "^1.0.3",
|
|
628
658
|
"js-base64": "^3.7.7",
|
|
629
659
|
"crypto-js": "^4.1.1",
|
|
660
|
+
"date-fns": "^2.30.0",
|
|
661
|
+
"croner": "^8.0.1",
|
|
662
|
+
"react-i18next": "^14.1.2",
|
|
630
663
|
"react-redux": "^9.2.0",
|
|
631
664
|
"react-hot-toast": "^2.4.1",
|
|
632
|
-
"
|
|
633
|
-
"browser-image-compression": "^2.0.2",
|
|
634
|
-
"slate": "^0.112.0",
|
|
635
|
-
"mdast-util-from-markdown": "^2.0.2",
|
|
636
|
-
"mdast-util-gfm": "^3.0.0",
|
|
637
|
-
"micromark-extension-gfm": "^3.0.0",
|
|
638
|
-
"croner": "^8.0.1"
|
|
665
|
+
"browser-image-compression": "^2.0.2"
|
|
639
666
|
}
|
|
640
667
|
}
|