nolo-cli 0.1.40 → 0.1.42
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/hybridRecordStore.ts +5 -3
- 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/_executeModel.ts +146 -0
- package/ai/agent/agentSlice.ts +556 -1
- package/ai/agent/appWorkingMemory.ts +126 -0
- package/ai/agent/buildEditingContext.ts +378 -0
- package/ai/agent/buildSystemPrompt.ts +599 -0
- package/ai/agent/canvasEditingContext.ts +49 -0
- package/ai/agent/cleanAgentMessages.ts +140 -0
- package/ai/agent/cliChatClient.ts +153 -0
- package/ai/agent/cliExecutor.ts +264 -46
- package/ai/agent/contextCompiler.ts +107 -0
- package/ai/agent/contextLayerContract.ts +44 -0
- package/ai/agent/createAgentSchema.ts +272 -0
- package/ai/agent/currentTimeContext.ts +65 -0
- package/ai/agent/executeToolCall.ts +58 -0
- package/ai/agent/fetchAgentContexts.ts +42 -0
- package/ai/agent/generatePrompt.ts +3 -0
- package/ai/agent/getFullChatContextKeys.ts +168 -0
- package/ai/agent/guidedCreation/capabilities.ts +84 -0
- package/ai/agent/guidedCreation/types.ts +38 -0
- package/ai/agent/isLiveAudioOnlyAgent.ts +26 -0
- package/ai/agent/liveAudioModel.ts +2 -0
- package/ai/agent/pageBuilderHandoffRules.ts +75 -0
- package/ai/agent/persistMessageWithFixedId.ts +37 -0
- package/ai/agent/planSlice.ts +259 -0
- package/ai/agent/referenceUtils.ts +229 -0
- package/ai/agent/runAgentBackground.ts +310 -0
- package/ai/agent/runAgentClientLoop.ts +164 -0
- package/ai/agent/runtimeGuidance.ts +116 -0
- package/ai/agent/serverOrigin.ts +7 -0
- package/ai/agent/startParallelAgentStreams.ts +424 -0
- package/ai/agent/startupProtocol.ts +53 -0
- package/ai/agent/streamAgentChatTurn.ts +2135 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +923 -0
- package/ai/agent/toolFailureGuard.ts +99 -0
- package/ai/agent/types.ts +73 -0
- package/ai/agent/utils/imageOutput.ts +37 -0
- package/ai/agent/utils/publicImageAgentMode.ts +26 -0
- package/ai/ai.locale.ts +1165 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +122 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +921 -0
- package/ai/chat/sendOpenAIResponseRequest.ts +720 -0
- package/ai/chat/serverProxyRetry.ts +102 -0
- package/ai/chat/shouldUseServerProxy.ts +18 -0
- package/ai/chat/streamRetry.ts +46 -0
- package/ai/chat/updateTotalUsage.ts +89 -0
- package/ai/context/buildReferenceContext.ts +437 -0
- package/ai/context/retention.ts +165 -0
- package/ai/context/tokenUtils.ts +78 -0
- package/ai/llm/agentCapabilities.ts +74 -0
- package/ai/llm/deepinfra.ts +79 -0
- package/ai/llm/fireworks.ts +68 -0
- package/ai/llm/generateRequestBody.ts +165 -0
- package/ai/llm/getModelContextWindow.ts +93 -0
- package/ai/llm/getPricing.ts +252 -0
- package/ai/llm/imagePricing.ts +66 -0
- package/ai/llm/isResponseAPIModel.ts +13 -0
- package/ai/llm/kimi.ts +22 -0
- package/ai/llm/mimo.ts +99 -0
- package/ai/llm/mistral.ts +21 -0
- package/ai/llm/models.ts +45 -0
- package/ai/llm/openrouterModels.ts +31 -0
- package/ai/llm/providers.ts +313 -0
- package/ai/llm/reasoningModels.ts +27 -0
- package/ai/llm/types.ts +82 -0
- package/ai/llm/usageRequestOptions.ts +59 -0
- package/ai/memory/policy.ts +49 -0
- package/ai/memory/queryShared.ts +167 -0
- package/ai/memory/recentRelationshipRecap.ts +251 -0
- package/ai/memory/remember.ts +111 -0
- package/ai/memory/scope.ts +74 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +52 -0
- package/ai/memory/understanding.ts +341 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +526 -0
- package/ai/policy/selfUpdateFields.ts +48 -0
- package/ai/policy/types.ts +64 -0
- package/ai/skills/referenceRuntime.ts +274 -0
- package/ai/skills/skillDiagnostics.ts +251 -0
- package/ai/skills/skillDocBuilder.ts +139 -0
- package/ai/skills/skillSummaryMarker.ts +26 -0
- package/ai/token/calculatePrice.ts +576 -0
- package/ai/token/missingUsageEstimate.ts +42 -0
- package/ai/token/normalizeUsage.ts +124 -0
- package/ai/token/openaiImageGenerationUsage.ts +56 -0
- package/ai/token/prepareTokenUsageData.ts +93 -0
- package/ai/token/resolveBillingTarget.ts +52 -0
- package/ai/token/saveTokenRecord.ts +53 -0
- package/ai/token/types.ts +103 -0
- package/ai/tools/agent/agentTools.ts +214 -0
- package/ai/tools/agent/agentUpdateShared.ts +311 -0
- package/ai/tools/agent/callAgentTool.ts +139 -0
- package/ai/tools/agent/createAgentTool.ts +512 -0
- package/ai/tools/agent/createDialogTool.ts +69 -0
- package/ai/tools/agent/createSkillAgentTool.ts +62 -0
- package/ai/tools/agent/parallelBudget.ts +221 -0
- package/ai/tools/agent/prepareAgentDraftTool.ts +159 -0
- package/ai/tools/agent/presets/appBuilderPreset.ts +154 -0
- package/ai/tools/agent/runLlmTool.ts +96 -0
- package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
- package/ai/tools/agent/skillAgentArgs.ts +106 -0
- package/ai/tools/agent/startAgentDialogTool.ts +54 -0
- package/ai/tools/agent/streamParallelAgentsTool.ts +123 -0
- package/ai/tools/agent/updateAgentTool.ts +96 -0
- package/ai/tools/agent/updateSelfTool.ts +113 -0
- package/ai/tools/amazonProductScraperTool.ts +86 -0
- package/ai/tools/apifyActorClient.ts +45 -0
- package/ai/tools/appEditGuard.ts +372 -0
- package/ai/tools/appReadSnapshot.ts +153 -0
- package/ai/tools/appTools.ts +1549 -0
- package/ai/tools/applyEditTool.ts +259 -0
- package/ai/tools/applyLineEditsTool.ts +315 -0
- package/ai/tools/browserTools/click.ts +33 -0
- package/ai/tools/browserTools/closeSession.ts +29 -0
- package/ai/tools/browserTools/common.ts +27 -0
- package/ai/tools/browserTools/openSession.ts +48 -0
- package/ai/tools/browserTools/readContent.ts +38 -0
- package/ai/tools/browserTools/selectOption.ts +46 -0
- package/ai/tools/browserTools/typeText.ts +42 -0
- package/ai/tools/category/createCategoryTool.ts +66 -0
- package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
- package/ai/tools/category/updateContentCategoryTool.ts +75 -0
- package/ai/tools/cfBrowserTools.ts +319 -0
- package/ai/tools/cfSpeechToTextTool.ts +49 -0
- package/ai/tools/checkEnvTool.ts +102 -0
- package/ai/tools/cloudflareCrawlTool.ts +289 -0
- package/ai/tools/codeSearchTool.ts +123 -0
- package/ai/tools/codeTools.ts +101 -0
- package/ai/tools/convertMarxistsBookTool.ts +103 -0
- package/ai/tools/createDocTool.ts +132 -0
- package/ai/tools/createSkillDocTool.ts +155 -0
- package/ai/tools/createWorkflowTool.ts +154 -0
- package/ai/tools/delayTool.ts +31 -0
- package/ai/tools/deleteSpacesTool.ts +325 -0
- package/ai/tools/deleteSpacesToolModel.ts +159 -0
- package/ai/tools/devReloadUtils.ts +29 -0
- package/ai/tools/dialogMessageSearch.ts +137 -0
- package/ai/tools/doctorSkillTool.ts +72 -0
- package/ai/tools/ecommerceScraperTool.ts +86 -0
- package/ai/tools/emailTools.ts +549 -0
- package/ai/tools/evalSkillTool.ts +92 -0
- package/ai/tools/exaSearchTool.ts +63 -0
- package/ai/tools/execShellTool.ts +266 -0
- package/ai/tools/executeSqlTool.ts +192 -0
- package/ai/tools/fetchWebpageSupport.ts +333 -0
- package/ai/tools/fetchWebpageTool.ts +97 -0
- package/ai/tools/geminiImagePreviewTool.ts +386 -0
- package/ai/tools/generateDocxTool.ts +215 -0
- package/ai/tools/googleSearchScraperTool.ts +106 -0
- package/ai/tools/importDataTool.ts +133 -0
- package/ai/tools/importSkillTool.ts +162 -0
- package/ai/tools/index.ts +2290 -0
- package/ai/tools/jdProductScraperTool.ts +821 -0
- package/ai/tools/listUserSpacesTool.ts +113 -0
- package/ai/tools/localFilesTool.ts +276 -0
- package/ai/tools/marxistsOfflineBook.ts +253 -0
- package/ai/tools/modelUsageTools.ts +206 -0
- package/ai/tools/noloWorkspaceReadTools.ts +467 -0
- package/ai/tools/olmOcrTool.ts +33 -0
- package/ai/tools/openaiImageTool.ts +267 -0
- package/ai/tools/prepareTools.ts +193 -0
- package/ai/tools/readDocTool.ts +88 -0
- package/ai/tools/readFileTool.ts +214 -0
- package/ai/tools/readTool.ts +194 -0
- package/ai/tools/readXPostTool.ts +229 -0
- package/ai/tools/readXhsProfileTool.ts +638 -0
- package/ai/tools/rememberMemoryTool.ts +84 -0
- package/ai/tools/remotionVideoTool.ts +151 -0
- package/ai/tools/searchDialogMessagesTool.ts +222 -0
- package/ai/tools/searchWorkspaceTool.ts +259 -0
- package/ai/tools/skillFollowup.ts +86 -0
- package/ai/tools/surfWeatherTool.ts +169 -0
- package/ai/tools/table/addTableRowTool.ts +217 -0
- package/ai/tools/table/createTableTool.ts +326 -0
- package/ai/tools/table/rowTools.ts +386 -0
- package/ai/tools/table/schemaTools.ts +244 -0
- package/ai/tools/table/shareTableTool.ts +148 -0
- package/ai/tools/table/toolShared.ts +129 -0
- package/ai/tools/taobaoTmallProductScraperTool.ts +49 -0
- package/ai/tools/toolApiClient.ts +279 -0
- package/ai/tools/toolPacks.ts +19 -0
- package/ai/tools/toolResultError.ts +42 -0
- package/ai/tools/toolRunSlice.ts +303 -0
- package/ai/tools/toolSchemaCompatibility.ts +53 -0
- package/ai/tools/uiAskChoiceTool.ts +104 -0
- package/ai/tools/updateContentTitleTool.ts +84 -0
- package/ai/tools/updateDocTool.ts +105 -0
- package/ai/tools/updateUserPreferenceProfileTool.ts +153 -0
- package/ai/tools/wereadGatewayTool.ts +152 -0
- package/ai/tools/whisperTool.ts +76 -0
- package/ai/tools/writeFileTool.ts +213 -0
- package/ai/tools/youtubeScraperTool.ts +116 -0
- package/ai/tools/ziweiChartTool.ts +678 -0
- package/ai/types.ts +58 -0
- package/ai/workflow/workflowExecutor.ts +323 -0
- package/ai/workflow/workflowSlice.ts +73 -0
- package/ai/workflow/workflowTypes.ts +106 -0
- package/app/actions/syncAppRecord.ts +73 -0
- package/app/constants/animationSets.ts +21 -0
- package/app/constants/appEditor.ts +99 -0
- package/app/favorite/deletedFavoriteProjection.ts +31 -0
- package/app/favorite/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +254 -0
- package/app/i18n/client.ts +13 -0
- package/app/i18n/i18n.base.ts +14 -0
- package/app/i18n/i18n.config.ts +77 -0
- package/app/i18n/index.ts +15 -0
- package/app/i18n/mapLanguage.ts +11 -0
- package/app/i18n/translations/appBuilder.locale.ts +453 -0
- package/app/i18n/translations/error.locale.ts +246 -0
- package/app/i18n/translations/interface.locale.ts +2206 -0
- package/app/i18n/translations/pricing.locale.ts +397 -0
- package/app/i18n/translations/privacy.locale.ts +168 -0
- package/app/i18n/translations/seo.locale.ts +129 -0
- package/app/i18n/translations/terms.locale.ts +124 -0
- package/app/i18n/types.ts +6 -0
- package/app/notifications/model.ts +77 -0
- package/app/notifications/notificationSlice.ts +141 -0
- package/app/reducer.ts +36 -0
- package/app/settings/dbActionThunks.ts +34 -0
- package/app/settings/defaultSpacePreference.ts +87 -0
- package/app/settings/settingSlice.tsx +1212 -0
- package/app/settings/settingsRecord.ts +8 -0
- package/app/stateViews/runtime.ts +90 -0
- package/app/store.ts +55 -0
- package/app/theme/colors.ts +280 -0
- package/app/theme/fontPreference.ts +77 -0
- package/app/theme/theme.config.ts +120 -0
- package/app/theme/themeModeBootstrap.ts +123 -0
- package/app/types/appSummary.ts +118 -0
- package/app/types.ts +358 -0
- package/app/utils/appKeys.ts +55 -0
- package/app/utils/async.ts +28 -0
- package/app/utils/desktopAgentRuntimeTurnClient.ts +75 -0
- package/app/utils/env.ts +17 -0
- package/app/utils/fileUtils.ts +229 -0
- package/app/utils/imageUtils.ts +274 -0
- package/app/utils/myContentItems.ts +289 -0
- package/app/utils/retryAfter.ts +36 -0
- package/app/utils/retryFetch.ts +61 -0
- package/app/utils/toast.ts +3 -0
- package/auth/action/signUpAction.ts +227 -0
- package/auth/adminPermissions.ts +78 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +183 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +817 -0
- package/chat/dialog/actions/addCybotAction.ts +52 -0
- package/chat/dialog/actions/addReferenceKeysAction.ts +62 -0
- package/chat/dialog/actions/builtinDialogLlm.ts +35 -0
- package/chat/dialog/actions/cleanupCliSession.ts +40 -0
- package/chat/dialog/actions/createDialogAction.ts +379 -0
- package/chat/dialog/actions/createScheduledTaskAction.ts +78 -0
- package/chat/dialog/actions/handleSendMessageAction.ts +202 -0
- package/chat/dialog/actions/handleSendMessageResolver.ts +27 -0
- package/chat/dialog/actions/removeCybotAction.ts +6 -0
- package/chat/dialog/actions/removeDialogAgentAction.ts +44 -0
- package/chat/dialog/actions/replacePrimaryCybotAction.ts +6 -0
- package/chat/dialog/actions/setPrimaryDialogAgentAction.ts +52 -0
- package/chat/dialog/actions/updateDialogSummaryAction.ts +430 -0
- package/chat/dialog/actions/updateDialogTitleAction.ts +151 -0
- package/chat/dialog/actions/updateDialogTitlePolicy.ts +30 -0
- package/chat/dialog/actions/updateTokensAction.ts +233 -0
- package/chat/dialog/dialogAgents.ts +72 -0
- package/chat/dialog/dialogAttachmentCleanup.ts +135 -0
- package/chat/dialog/dialogSlice.ts +985 -0
- package/chat/dialog/dialogTitle.ts +81 -0
- package/chat/dialog/dialogTokenStats.ts +12 -0
- package/chat/dialog/dialogUrl.ts +6 -0
- package/chat/dialog/goal.ts +108 -0
- package/chat/dialog/objectAssistantRegistry.ts +286 -0
- package/chat/dialog/schedule.ts +17 -0
- package/chat/messages/activityCompletion.ts +97 -0
- package/chat/messages/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/imagePayloadPersistence.ts +22 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +203 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1386 -0
- package/chat/messages/toolThunks.ts +646 -0
- 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 +92 -261
- package/cli/client/localRuntimeAdapter.ts +292 -50
- 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 +119 -83
- package/client/agentRun.ts +92 -261
- package/client/localRuntimeAdapter.test.ts +894 -32
- package/client/localRuntimeAdapter.ts +292 -50
- package/commandRegistry.ts +7 -4
- package/connector-experimental/capabilities.ts +10 -9
- package/core/builtinAgents.ts +209 -0
- package/core/config.ts +15 -0
- package/core/crypto.ts +51 -0
- package/core/generateKeyPairFromSeedV1.ts +15 -0
- package/core/generateMainKey.ts +22 -0
- package/core/init.ts +41 -0
- package/core/localOrigins.ts +8 -0
- package/core/password.ts +13 -0
- package/core/prefix.ts +23 -0
- package/create/editor/transforms/fromMarkdown/index.ts +260 -0
- package/create/editor/transforms/fromMarkdown/inline.ts +285 -0
- package/create/editor/transforms/fromMarkdown/table.ts +130 -0
- package/create/editor/transforms/markdownToSlate.ts +24 -0
- package/create/editor/transforms/slateToRenderMarkdown.ts +218 -0
- package/create/editor/transforms/slateToSimplifiedMarkdown.ts +224 -0
- package/create/editor/transforms/slateToText.ts +33 -0
- package/create/editor/utils/slateUtils.ts +233 -0
- package/create/space/addSpaceAction.ts +193 -0
- package/create/space/category/categoryActions.ts +427 -0
- package/create/space/changeSpaceAction.ts +36 -0
- package/create/space/constants.ts +8 -0
- package/create/space/content/addContentAction.ts +116 -0
- package/create/space/content/contentThunks.ts +90 -0
- package/create/space/content/deleteContentFromSpaceAction.ts +187 -0
- package/create/space/content/deleteMultipleContentAction.ts +112 -0
- package/create/space/content/moveContentAction.ts +285 -0
- package/create/space/content/updateContentCategoryAction.ts +154 -0
- package/create/space/content/updateContentTitleAction.ts +151 -0
- package/create/space/content/uploadAndAddFileToSpaceAction.ts +98 -0
- package/create/space/contentKeyUtils.ts +117 -0
- package/create/space/deleteSpaceAction.ts +276 -0
- package/create/space/fetchSpaceAction.ts +70 -0
- package/create/space/fetchSpaceSidebarStateAction.ts +26 -0
- package/create/space/loadDefaultSpaceAction.ts +57 -0
- package/create/space/member/addMemberAction.ts +79 -0
- package/create/space/member/fetchUserSpaceMembershipsAction.ts +386 -0
- package/create/space/member/memberThunks.ts +47 -0
- package/create/space/member/removeMemberAction.ts +67 -0
- package/create/space/resolvePreferredSpaceId.ts +113 -0
- package/create/space/sidebarVisibleTypes.ts +260 -0
- package/create/space/space.locale.ts +1087 -0
- package/create/space/spaceAccess.ts +182 -0
- package/create/space/spaceCollapsedState.ts +54 -0
- package/create/space/spaceKeys.ts +65 -0
- package/create/space/spaceSlice.ts +328 -0
- package/create/space/spaceThunks.ts +410 -0
- package/create/space/types.ts +27 -0
- package/create/space/updateSpaceAction.ts +107 -0
- package/create/space/utils/permissions.ts +47 -0
- package/create/types.ts +21 -0
- package/database/actions/agentReadResolution.ts +33 -0
- package/database/actions/common.ts +243 -0
- package/database/actions/deleteFile.ts +40 -0
- package/database/actions/fileContent.ts +125 -0
- package/database/actions/patch.ts +155 -0
- package/database/actions/read.ts +358 -0
- package/database/actions/readAndWait.ts +260 -0
- package/database/actions/readRequestManager.ts +120 -0
- package/database/actions/readResolution.ts +125 -0
- package/database/actions/remove.ts +94 -0
- package/database/actions/replication.ts +477 -0
- package/database/actions/upload.ts +186 -0
- package/database/actions/upsert.ts +56 -0
- package/database/actions/write.ts +146 -0
- package/database/authority/ownerKey.ts +80 -0
- package/database/authority/recordAuthority.ts +67 -0
- package/database/authority/userAuthorityRegistry.ts +54 -0
- package/database/client/fetchUserData.ts +61 -0
- package/database/dbActionThunks.ts +1 -0
- package/database/dbSlice.ts +149 -0
- package/database/fileRing.ts +51 -0
- package/database/fileStorage.ts +232 -0
- package/database/fileUrl.ts +34 -0
- package/database/keys.ts +767 -0
- package/database/queryPrefixes.ts +14 -0
- package/database/requests.ts +443 -0
- package/database/runtimeServerContext.ts +54 -0
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -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/anthropic/anthropicModels.ts +47 -0
- package/integrations/deepseek/models.ts +37 -0
- package/integrations/google/models.ts +341 -0
- package/integrations/openai/chatCompletionStreamMode.ts +10 -0
- package/integrations/openai/filterAndCleanMessages.ts +284 -0
- package/integrations/openai/flexTier.ts +102 -0
- package/integrations/openai/generateOpenAIRequestBody.ts +271 -0
- package/integrations/openai/generateResponseRequestBody.ts +77 -0
- package/integrations/openai/models.ts +271 -0
- package/integrations/openai/providerBodyCompatibility.ts +23 -0
- package/integrations/openai/responsesHelpers.ts +297 -0
- package/integrations/x-reader/types.ts +109 -0
- package/integrations/xai/models.ts +13 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +277 -0
- package/integrations/xhs-reader/url.ts +80 -0
- package/internalCommandEntries.ts +4 -0
- package/machineCommands.ts +18 -34
- package/memoryCommands.ts +253 -0
- package/memoryInternalCommandEntries.ts +9 -0
- package/package.json +454 -9
- package/qoderUsageProbe.ts +252 -0
- package/render/contentIcon/types.ts +167 -0
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +495 -0
- package/render/page/types.ts +19 -0
- package/render/table/createTableAction.ts +274 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1167 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +262 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/scriptCommandEntries.ts +0 -3
- package/secretScan.ts +31 -0
- package/server/handlers/agentRun/types.ts +105 -0
- package/share/action.ts +225 -0
- package/share/helpers.ts +302 -0
- package/share/keys.ts +243 -0
- package/share/publicSharePolicy.ts +27 -0
- package/share/shareSlice.ts +53 -0
- package/share/types.ts +100 -0
- 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/taskRunCommand.ts +0 -265
|
@@ -0,0 +1,686 @@
|
|
|
1
|
+
export function resolveToolDisplayName(
|
|
2
|
+
toolName: string | undefined,
|
|
3
|
+
translate: (key: string, fallback: string) => string
|
|
4
|
+
) {
|
|
5
|
+
const normalized = typeof toolName === "string" ? toolName.trim() : "";
|
|
6
|
+
if (!normalized) return translate("toolNames.tool", "Tool");
|
|
7
|
+
return translate(`toolNames.${normalized}`, normalized);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export function formatToolInvocationSummary(
|
|
11
|
+
messages: Array<{ toolName?: string }>,
|
|
12
|
+
translate: (key: string, fallback: string) => string
|
|
13
|
+
) {
|
|
14
|
+
const counts = new Map<string, number>();
|
|
15
|
+
for (const msg of messages) {
|
|
16
|
+
const name = msg.toolName || "tool";
|
|
17
|
+
counts.set(name, (counts.get(name) || 0) + 1);
|
|
18
|
+
}
|
|
19
|
+
return Array.from(counts.entries())
|
|
20
|
+
.map(([name, count]) => `${resolveToolDisplayName(name, translate)} × ${count}`)
|
|
21
|
+
.join("、");
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// ─── Activity line extraction & fallback ─────────────────────────────
|
|
25
|
+
|
|
26
|
+
export type ToolActivityRef =
|
|
27
|
+
| { type: "file"; path: string }
|
|
28
|
+
| { type: "terminal"; id?: string; label?: string }
|
|
29
|
+
| { type: "url"; url: string; label?: string };
|
|
30
|
+
|
|
31
|
+
export type ToolActivityKind =
|
|
32
|
+
| "read"
|
|
33
|
+
| "write"
|
|
34
|
+
| "edit"
|
|
35
|
+
| "search"
|
|
36
|
+
| "terminal"
|
|
37
|
+
| "version"
|
|
38
|
+
| "test"
|
|
39
|
+
| "build"
|
|
40
|
+
| "preview"
|
|
41
|
+
| "other";
|
|
42
|
+
|
|
43
|
+
export type ToolActivityStatus = "pending" | "running" | "success" | "failed";
|
|
44
|
+
|
|
45
|
+
export type ToolActivityAction = {
|
|
46
|
+
title: string;
|
|
47
|
+
kind?: ToolActivityKind;
|
|
48
|
+
detail?: string;
|
|
49
|
+
refs?: ToolActivityRef[];
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export type ToolActivityPhase = {
|
|
53
|
+
id: string;
|
|
54
|
+
title: string;
|
|
55
|
+
index?: number;
|
|
56
|
+
total?: number;
|
|
57
|
+
status?: ToolActivityStatus;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export type ActivityPlanPhase = {
|
|
61
|
+
id: string;
|
|
62
|
+
title: string;
|
|
63
|
+
index?: number;
|
|
64
|
+
status?: ToolActivityStatus;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export type ActivityPlan = {
|
|
68
|
+
title?: string;
|
|
69
|
+
phases: ActivityPlanPhase[];
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export type ToolActivity = ToolActivityAction & {
|
|
73
|
+
phase?: ToolActivityPhase;
|
|
74
|
+
action?: ToolActivityAction;
|
|
75
|
+
plan?: ActivityPlan;
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
type ActivitySignal = {
|
|
79
|
+
phase?: ToolActivityPhase;
|
|
80
|
+
action?: ToolActivityAction;
|
|
81
|
+
plan?: ActivityPlan;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export type ActivityTimelineAction = ToolActivityAction & {
|
|
85
|
+
id: string;
|
|
86
|
+
label: string;
|
|
87
|
+
status: ToolActivityStatus;
|
|
88
|
+
message: unknown;
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export type ActivityTimelinePhase = {
|
|
92
|
+
id: string;
|
|
93
|
+
title: string;
|
|
94
|
+
index?: number;
|
|
95
|
+
total?: number;
|
|
96
|
+
status: ToolActivityStatus;
|
|
97
|
+
actions: ActivityTimelineAction[];
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
export type ActivityTimeline = {
|
|
101
|
+
phases: ActivityTimelinePhase[];
|
|
102
|
+
completedPhases: number;
|
|
103
|
+
totalPhases: number;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export type BuildActivityTimelineOptions = {
|
|
107
|
+
includePlan?: boolean;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
const SHELL_COMMAND_CLASSIFIERS: Array<{
|
|
111
|
+
pattern: RegExp;
|
|
112
|
+
label: (cmd: string) => string;
|
|
113
|
+
}> = [
|
|
114
|
+
{
|
|
115
|
+
pattern: /\bgit\s+(status)\b/,
|
|
116
|
+
label: () => "用版本管理检查改动",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
pattern: /\bgit\s+diff\b/,
|
|
120
|
+
label: () => "用版本管理查看改动",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
pattern: /\bgit\s+log\b/,
|
|
124
|
+
label: () => "用版本管理查看历史",
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
pattern: /\bgit\s+add\b/,
|
|
128
|
+
label: () => "用版本管理暂存改动",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
pattern: /\bgit\s+commit\b/,
|
|
132
|
+
label: () => "用版本管理保存改动",
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
pattern: /\bgit\s+push\b/,
|
|
136
|
+
label: () => "用版本管理同步改动",
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
pattern: /\b(rg|grep)\b/,
|
|
140
|
+
label: (cmd) => {
|
|
141
|
+
const match = cmd.match(/(?:rg|grep)\s+(?:-[^\s]*\s+)*['"]?([^\s'"]+)['"]?/);
|
|
142
|
+
return match ? `搜索 "${match[1]}"` : "搜索代码";
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
pattern: /\b(bun\s+test|jest|vitest|mocha|pytest|go\s+test)\b/,
|
|
147
|
+
label: () => "运行测试",
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
pattern: /\b(bun\s+run\s+build|npm\s+run\s+build|yarn\s+build|make\s+build)\b/,
|
|
151
|
+
label: () => "构建项目",
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
pattern: /\b(bun\s+install|npm\s+install|yarn\s+install|pnpm\s+install)\b/,
|
|
155
|
+
label: () => "安装依赖",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
pattern: /\b(bun\s+run\s+dev|npm\s+run\s+dev|yarn\s+dev)\b/,
|
|
159
|
+
label: () => "启动开发服务器",
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
pattern: /\bcurl\b/,
|
|
163
|
+
label: (cmd) => {
|
|
164
|
+
const match = cmd.match(/curl\s+(?:-[^\s]*\s+)*(https?:\/\/[^\s'"]+)/);
|
|
165
|
+
return match ? `请求 ${match[1]}` : "发送 HTTP 请求";
|
|
166
|
+
},
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
pattern: /\blsof\b/,
|
|
170
|
+
label: () => "查看端口占用",
|
|
171
|
+
},
|
|
172
|
+
];
|
|
173
|
+
|
|
174
|
+
function classifyShellCommand(command: string): string {
|
|
175
|
+
const trimmed = command.trim();
|
|
176
|
+
for (const { pattern, label } of SHELL_COMMAND_CLASSIFIERS) {
|
|
177
|
+
if (pattern.test(trimmed)) return label(trimmed);
|
|
178
|
+
}
|
|
179
|
+
return "执行终端命令";
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Build a fallback activity line from tool call arguments when the model
|
|
184
|
+
* did not provide an explicit `_activity` field.
|
|
185
|
+
*/
|
|
186
|
+
export function buildFallbackActivity(
|
|
187
|
+
toolName: string | undefined,
|
|
188
|
+
args: Record<string, unknown> | undefined
|
|
189
|
+
): ToolActivity | undefined {
|
|
190
|
+
const normalized = typeof toolName === "string" ? toolName.trim() : "";
|
|
191
|
+
if (!normalized || !args) return undefined;
|
|
192
|
+
|
|
193
|
+
switch (normalized) {
|
|
194
|
+
case "readFile": {
|
|
195
|
+
const path = typeof args.path === "string" ? args.path.trim() : "";
|
|
196
|
+
return path ? { title: "查看相关文件", refs: [{ type: "file", path }] } : undefined;
|
|
197
|
+
}
|
|
198
|
+
case "writeFile": {
|
|
199
|
+
const path = typeof args.path === "string" ? args.path.trim() : "";
|
|
200
|
+
return path ? { title: "写入文件", refs: [{ type: "file", path }] } : undefined;
|
|
201
|
+
}
|
|
202
|
+
case "editFile": {
|
|
203
|
+
const path = typeof args.path === "string" ? args.path.trim() : "";
|
|
204
|
+
return path ? { title: "修改文件", refs: [{ type: "file", path }] } : undefined;
|
|
205
|
+
}
|
|
206
|
+
case "searchFiles": {
|
|
207
|
+
const query = typeof args.query === "string" ? args.query.trim() : "";
|
|
208
|
+
return query ? { title: "在代码里找线索", detail: query } : undefined;
|
|
209
|
+
}
|
|
210
|
+
case "globFiles": {
|
|
211
|
+
const pattern = typeof args.pattern === "string"
|
|
212
|
+
? args.pattern.trim()
|
|
213
|
+
: typeof args.glob === "string"
|
|
214
|
+
? args.glob.trim()
|
|
215
|
+
: "";
|
|
216
|
+
return pattern ? { title: "查找相关文件", detail: pattern } : undefined;
|
|
217
|
+
}
|
|
218
|
+
case "execShell": {
|
|
219
|
+
const command =
|
|
220
|
+
typeof args.cmd === "string"
|
|
221
|
+
? args.cmd.trim()
|
|
222
|
+
: typeof args.command === "string"
|
|
223
|
+
? args.command.trim()
|
|
224
|
+
: "";
|
|
225
|
+
if (!command) return undefined;
|
|
226
|
+
const label = classifyShellCommand(command);
|
|
227
|
+
return { title: label, detail: command.length <= 120 ? command : `${command.slice(0, 117)}...` };
|
|
228
|
+
}
|
|
229
|
+
default:
|
|
230
|
+
return undefined;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
function normalizeString(value: unknown): string | undefined {
|
|
235
|
+
if (typeof value !== "string") return undefined;
|
|
236
|
+
const trimmed = value.trim();
|
|
237
|
+
return trimmed || undefined;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
function normalizeNumber(value: unknown): number | undefined {
|
|
241
|
+
if (typeof value !== "number" || !Number.isFinite(value)) return undefined;
|
|
242
|
+
return value;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
function normalizeStatus(value: unknown): ToolActivityStatus | undefined {
|
|
246
|
+
return value === "pending" ||
|
|
247
|
+
value === "running" ||
|
|
248
|
+
value === "success" ||
|
|
249
|
+
value === "failed"
|
|
250
|
+
? value
|
|
251
|
+
: undefined;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
function normalizeKind(value: unknown): ToolActivityKind | undefined {
|
|
255
|
+
return value === "read" ||
|
|
256
|
+
value === "write" ||
|
|
257
|
+
value === "edit" ||
|
|
258
|
+
value === "search" ||
|
|
259
|
+
value === "terminal" ||
|
|
260
|
+
value === "version" ||
|
|
261
|
+
value === "test" ||
|
|
262
|
+
value === "build" ||
|
|
263
|
+
value === "preview" ||
|
|
264
|
+
value === "other"
|
|
265
|
+
? value
|
|
266
|
+
: undefined;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
function normalizeRefs(value: unknown): ToolActivityRef[] | undefined {
|
|
270
|
+
if (!Array.isArray(value)) return undefined;
|
|
271
|
+
const refs = value.flatMap((item): ToolActivityRef[] => {
|
|
272
|
+
if (!item || typeof item !== "object" || Array.isArray(item)) return [];
|
|
273
|
+
const raw = item as Record<string, unknown>;
|
|
274
|
+
if (raw.type === "file") {
|
|
275
|
+
const path = normalizeString(raw.path);
|
|
276
|
+
return path ? [{ type: "file", path }] : [];
|
|
277
|
+
}
|
|
278
|
+
if (raw.type === "terminal") {
|
|
279
|
+
const id = normalizeString(raw.id);
|
|
280
|
+
const label = normalizeString(raw.label);
|
|
281
|
+
return id || label ? [{ type: "terminal", ...(id ? { id } : {}), ...(label ? { label } : {}) }] : [];
|
|
282
|
+
}
|
|
283
|
+
if (raw.type === "url") {
|
|
284
|
+
const url = normalizeString(raw.url);
|
|
285
|
+
const label = normalizeString(raw.label);
|
|
286
|
+
return url ? [{ type: "url", url, ...(label ? { label } : {}) }] : [];
|
|
287
|
+
}
|
|
288
|
+
return [];
|
|
289
|
+
});
|
|
290
|
+
return refs.length ? refs : undefined;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
function normalizeActivityAction(value: unknown): ToolActivityAction | undefined {
|
|
294
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return undefined;
|
|
295
|
+
const raw = value as Record<string, unknown>;
|
|
296
|
+
const title = normalizeString(raw.title);
|
|
297
|
+
if (!title) return undefined;
|
|
298
|
+
const detail = normalizeString(raw.detail);
|
|
299
|
+
const kind = normalizeKind(raw.kind);
|
|
300
|
+
const refs = normalizeRefs(raw.refs);
|
|
301
|
+
return {
|
|
302
|
+
title,
|
|
303
|
+
...(kind ? { kind } : {}),
|
|
304
|
+
...(detail ? { detail } : {}),
|
|
305
|
+
...(refs ? { refs } : {}),
|
|
306
|
+
};
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
function normalizeActivityPhase(value: unknown): ToolActivityPhase | undefined {
|
|
310
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return undefined;
|
|
311
|
+
const raw = value as Record<string, unknown>;
|
|
312
|
+
const title = normalizeString(raw.title);
|
|
313
|
+
if (!title) return undefined;
|
|
314
|
+
const id = normalizeString(raw.id) || title.toLowerCase().replace(/\s+/g, "-");
|
|
315
|
+
const index = normalizeNumber(raw.index);
|
|
316
|
+
const total = normalizeNumber(raw.total);
|
|
317
|
+
const status = normalizeStatus(raw.status);
|
|
318
|
+
return {
|
|
319
|
+
id,
|
|
320
|
+
title,
|
|
321
|
+
...(index !== undefined ? { index } : {}),
|
|
322
|
+
...(total !== undefined ? { total } : {}),
|
|
323
|
+
...(status ? { status } : {}),
|
|
324
|
+
};
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
function normalizeActivityPlan(value: unknown): ActivityPlan | undefined {
|
|
328
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return undefined;
|
|
329
|
+
const raw = value as Record<string, unknown>;
|
|
330
|
+
if (!Array.isArray(raw.phases)) return undefined;
|
|
331
|
+
const phases = raw.phases.flatMap((item, index): ActivityPlanPhase[] => {
|
|
332
|
+
const phase = normalizeActivityPhase(item);
|
|
333
|
+
if (!phase) return [];
|
|
334
|
+
return [{
|
|
335
|
+
id: phase.id,
|
|
336
|
+
title: phase.title,
|
|
337
|
+
index: phase.index ?? index + 1,
|
|
338
|
+
...(phase.status ? { status: phase.status } : {}),
|
|
339
|
+
}];
|
|
340
|
+
});
|
|
341
|
+
if (phases.length === 0) return undefined;
|
|
342
|
+
const title = normalizeString(raw.title);
|
|
343
|
+
return {
|
|
344
|
+
...(title ? { title } : {}),
|
|
345
|
+
phases,
|
|
346
|
+
};
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
function normalizeActivitySignal(value: unknown): ActivitySignal | undefined {
|
|
350
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return undefined;
|
|
351
|
+
const raw = value as Record<string, unknown>;
|
|
352
|
+
const nestedAction = normalizeActivityAction(raw.action);
|
|
353
|
+
const legacyAction = normalizeActivityAction(raw);
|
|
354
|
+
const action = nestedAction || legacyAction;
|
|
355
|
+
const phase = normalizeActivityPhase(raw.phase);
|
|
356
|
+
const plan = normalizeActivityPlan(raw.plan);
|
|
357
|
+
if (!action && !phase && !plan) return undefined;
|
|
358
|
+
return {
|
|
359
|
+
...(action ? { action } : {}),
|
|
360
|
+
...(phase ? { phase } : {}),
|
|
361
|
+
...(plan ? { plan } : {}),
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
export function normalizeToolActivity(value: unknown): ToolActivity | undefined {
|
|
366
|
+
const signal = normalizeActivitySignal(value);
|
|
367
|
+
if (!signal?.action) return undefined;
|
|
368
|
+
return {
|
|
369
|
+
...signal.action,
|
|
370
|
+
...(signal.phase ? { phase: signal.phase } : {}),
|
|
371
|
+
...(signal.action ? { action: signal.action } : {}),
|
|
372
|
+
...(signal.plan ? { plan: signal.plan } : {}),
|
|
373
|
+
};
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
function formatActivityAction(activity: ToolActivityAction): string {
|
|
377
|
+
const firstRef = activity.refs?.[0];
|
|
378
|
+
const refLabel =
|
|
379
|
+
firstRef?.type === "file"
|
|
380
|
+
? firstRef.path
|
|
381
|
+
: firstRef?.type === "terminal"
|
|
382
|
+
? firstRef.label || firstRef.id
|
|
383
|
+
: firstRef?.type === "url"
|
|
384
|
+
? firstRef.label || firstRef.url
|
|
385
|
+
: undefined;
|
|
386
|
+
const suffix = refLabel || activity.detail;
|
|
387
|
+
return suffix ? `${activity.title} · ${suffix}` : activity.title;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
function getMessageStatus(msg: any): ToolActivityStatus {
|
|
391
|
+
const rawData = typeof msg?.content === "string" ? safeParseObject(msg.content) : msg?.content;
|
|
392
|
+
const isError =
|
|
393
|
+
msg?.toolPayload?.status === "failed" ||
|
|
394
|
+
!!msg?.toolPayload?.error ||
|
|
395
|
+
!!rawData?.error;
|
|
396
|
+
if (msg?.isStreaming || msg?.toolPayload?.status === "running") return "running";
|
|
397
|
+
if (isError) return "failed";
|
|
398
|
+
if (msg?.toolPayload?.status === "pending") return "pending";
|
|
399
|
+
return "success";
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
function mergeStatuses(current: ToolActivityStatus, next: ToolActivityStatus): ToolActivityStatus {
|
|
403
|
+
if (current === "running" || next === "running") return "running";
|
|
404
|
+
if (current === "failed" || next === "failed") return "failed";
|
|
405
|
+
if (current === "pending" || next === "pending") return "pending";
|
|
406
|
+
return "success";
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
function readMessageActivity(msg: {
|
|
410
|
+
toolName?: string;
|
|
411
|
+
metadata?: Record<string, unknown>;
|
|
412
|
+
content?: string;
|
|
413
|
+
toolPayload?: Record<string, unknown>;
|
|
414
|
+
}): ToolActivity | undefined {
|
|
415
|
+
const meta = msg.metadata as Record<string, unknown> | undefined;
|
|
416
|
+
const explicit = normalizeToolActivity(meta?.activity) ||
|
|
417
|
+
normalizeToolActivity(msg.toolPayload?.activity);
|
|
418
|
+
if (explicit) return explicit;
|
|
419
|
+
const parsedArgs = tryParseToolArgs(msg);
|
|
420
|
+
const fallback = buildFallbackActivity(msg.toolName, parsedArgs);
|
|
421
|
+
return fallback ? normalizeToolActivity(fallback) : undefined;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
function readMessageActivitySignal(msg: {
|
|
425
|
+
toolName?: string;
|
|
426
|
+
metadata?: Record<string, unknown>;
|
|
427
|
+
content?: string;
|
|
428
|
+
toolPayload?: Record<string, unknown>;
|
|
429
|
+
}): ActivitySignal | undefined {
|
|
430
|
+
const meta = msg.metadata as Record<string, unknown> | undefined;
|
|
431
|
+
const explicit = normalizeActivitySignal(meta?.activity) ||
|
|
432
|
+
normalizeActivitySignal(msg.toolPayload?.activity);
|
|
433
|
+
if (explicit) return explicit;
|
|
434
|
+
const parsedArgs = tryParseToolArgs(msg);
|
|
435
|
+
const fallback = buildFallbackActivity(msg.toolName, parsedArgs);
|
|
436
|
+
const fallbackActivity = fallback ? normalizeToolActivity(fallback) : undefined;
|
|
437
|
+
return fallbackActivity
|
|
438
|
+
? {
|
|
439
|
+
action: fallbackActivity.action || fallbackActivity,
|
|
440
|
+
...(fallbackActivity.phase ? { phase: fallbackActivity.phase } : {}),
|
|
441
|
+
...(fallbackActivity.plan ? { plan: fallbackActivity.plan } : {}),
|
|
442
|
+
}
|
|
443
|
+
: undefined;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
function readMessageActivityPlan(msg: {
|
|
447
|
+
metadata?: Record<string, unknown>;
|
|
448
|
+
toolPayload?: Record<string, unknown>;
|
|
449
|
+
}): ActivityPlan | undefined {
|
|
450
|
+
const meta = msg.metadata as Record<string, unknown> | undefined;
|
|
451
|
+
const metadataActivity =
|
|
452
|
+
meta?.activity && typeof meta.activity === "object" && !Array.isArray(meta.activity)
|
|
453
|
+
? meta.activity as Record<string, unknown>
|
|
454
|
+
: undefined;
|
|
455
|
+
const payloadActivity =
|
|
456
|
+
msg.toolPayload?.activity &&
|
|
457
|
+
typeof msg.toolPayload.activity === "object" &&
|
|
458
|
+
!Array.isArray(msg.toolPayload.activity)
|
|
459
|
+
? msg.toolPayload.activity as Record<string, unknown>
|
|
460
|
+
: undefined;
|
|
461
|
+
return normalizeActivitySignal(metadataActivity)?.plan ||
|
|
462
|
+
normalizeActivitySignal(payloadActivity)?.plan;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
function safeParseObject(content: string): Record<string, unknown> | undefined {
|
|
466
|
+
if (!content.trim()) return undefined;
|
|
467
|
+
try {
|
|
468
|
+
const parsed = JSON.parse(content);
|
|
469
|
+
return parsed && typeof parsed === "object" && !Array.isArray(parsed)
|
|
470
|
+
? (parsed as Record<string, unknown>)
|
|
471
|
+
: undefined;
|
|
472
|
+
} catch {
|
|
473
|
+
return undefined;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export function buildActivityTimeline(
|
|
478
|
+
messages: Array<{
|
|
479
|
+
id?: string;
|
|
480
|
+
dbKey?: string;
|
|
481
|
+
tool_call_id?: string;
|
|
482
|
+
toolCallId?: string;
|
|
483
|
+
toolName?: string;
|
|
484
|
+
metadata?: Record<string, unknown>;
|
|
485
|
+
content?: string;
|
|
486
|
+
toolPayload?: Record<string, unknown>;
|
|
487
|
+
isStreaming?: boolean;
|
|
488
|
+
}>,
|
|
489
|
+
activityPlan?: unknown,
|
|
490
|
+
options: BuildActivityTimelineOptions = {}
|
|
491
|
+
): ActivityTimeline {
|
|
492
|
+
const phases: ActivityTimelinePhase[] = [];
|
|
493
|
+
const phaseById = new Map<string, ActivityTimelinePhase>();
|
|
494
|
+
let implicitPhase: ActivityTimelinePhase | undefined;
|
|
495
|
+
let declaredTotal = 0;
|
|
496
|
+
const includePlan = options.includePlan !== false;
|
|
497
|
+
const declaredPlan = includePlan
|
|
498
|
+
? normalizeActivityPlan(activityPlan) ||
|
|
499
|
+
messages.map(readMessageActivityPlan).find(Boolean)
|
|
500
|
+
: undefined;
|
|
501
|
+
|
|
502
|
+
const ensurePlanPhase = (phaseDef: ActivityPlanPhase): ActivityTimelinePhase => {
|
|
503
|
+
let phase = phaseById.get(phaseDef.id);
|
|
504
|
+
if (!phase) {
|
|
505
|
+
phase = {
|
|
506
|
+
id: phaseDef.id,
|
|
507
|
+
title: phaseDef.title,
|
|
508
|
+
...(phaseDef.index !== undefined ? { index: phaseDef.index } : {}),
|
|
509
|
+
...(declaredPlan ? { total: declaredPlan.phases.length } : {}),
|
|
510
|
+
status: phaseDef.status || "pending",
|
|
511
|
+
actions: [],
|
|
512
|
+
};
|
|
513
|
+
phaseById.set(phaseDef.id, phase);
|
|
514
|
+
phases.push(phase);
|
|
515
|
+
}
|
|
516
|
+
return phase;
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
if (declaredPlan) {
|
|
520
|
+
declaredTotal = declaredPlan.phases.length;
|
|
521
|
+
for (const phaseDef of declaredPlan.phases) {
|
|
522
|
+
ensurePlanPhase(phaseDef);
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
for (const msg of messages) {
|
|
527
|
+
const signal = readMessageActivitySignal(msg);
|
|
528
|
+
if (!signal) continue;
|
|
529
|
+
if (includePlan && !declaredPlan && signal.plan) {
|
|
530
|
+
declaredTotal = Math.max(declaredTotal, signal.plan.phases.length);
|
|
531
|
+
for (const phaseDef of signal.plan.phases) {
|
|
532
|
+
ensurePlanPhase(phaseDef);
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
const status = getMessageStatus(msg);
|
|
537
|
+
const activityAction = signal.action;
|
|
538
|
+
const phaseDef = signal.phase;
|
|
539
|
+
if (!activityAction && !phaseDef) continue;
|
|
540
|
+
const phaseId = phaseDef?.id || "__implicit_tools__";
|
|
541
|
+
const phaseTitle = phaseDef?.title || "执行工具步骤";
|
|
542
|
+
const phaseStatus = phaseDef?.status || (activityAction ? status : "pending");
|
|
543
|
+
let phase = phaseById.get(phaseId);
|
|
544
|
+
|
|
545
|
+
if (!phase) {
|
|
546
|
+
phase = {
|
|
547
|
+
id: phaseId,
|
|
548
|
+
title: phaseTitle,
|
|
549
|
+
...(phaseDef?.index !== undefined ? { index: phaseDef.index } : {}),
|
|
550
|
+
...(phaseDef?.total !== undefined ? { total: phaseDef.total } : {}),
|
|
551
|
+
status: phaseStatus,
|
|
552
|
+
actions: [],
|
|
553
|
+
};
|
|
554
|
+
phaseById.set(phaseId, phase);
|
|
555
|
+
phases.push(phase);
|
|
556
|
+
if (!phaseDef) implicitPhase = phase;
|
|
557
|
+
} else {
|
|
558
|
+
phase.status = mergeStatuses(phase.status, phaseStatus);
|
|
559
|
+
if (phase.status === "pending") {
|
|
560
|
+
phase.status = phaseStatus;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
if (phaseDef?.total && phaseDef.total > declaredTotal) {
|
|
565
|
+
declaredTotal = phaseDef.total;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
if (activityAction) {
|
|
569
|
+
const action: ActivityTimelineAction = {
|
|
570
|
+
...activityAction,
|
|
571
|
+
id:
|
|
572
|
+
normalizeString(msg.id) ||
|
|
573
|
+
normalizeString(msg.dbKey) ||
|
|
574
|
+
normalizeString(msg.toolCallId) ||
|
|
575
|
+
normalizeString(msg.tool_call_id) ||
|
|
576
|
+
`tool-action-${phase.actions.length + 1}`,
|
|
577
|
+
label: formatActivityAction(activityAction),
|
|
578
|
+
status,
|
|
579
|
+
message: msg,
|
|
580
|
+
};
|
|
581
|
+
phase.actions.push(action);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
if (implicitPhase && phases.length > 1 && implicitPhase.actions.length === 0) {
|
|
586
|
+
phaseById.delete(implicitPhase.id);
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
const completedPhases = phases.filter((phase) => phase.status === "success").length;
|
|
590
|
+
return {
|
|
591
|
+
phases,
|
|
592
|
+
completedPhases,
|
|
593
|
+
totalPhases: declaredTotal || phases.length,
|
|
594
|
+
};
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* Extract activity lines from an array of tool messages for collapsed-group display.
|
|
599
|
+
* Returns at most `maxLines` entries. Each entry is a displayable string.
|
|
600
|
+
*/
|
|
601
|
+
export function extractActivityLines(
|
|
602
|
+
messages: Array<{
|
|
603
|
+
toolName?: string;
|
|
604
|
+
metadata?: Record<string, unknown>;
|
|
605
|
+
content?: string;
|
|
606
|
+
tool_call_id?: string;
|
|
607
|
+
toolPayload?: Record<string, unknown>;
|
|
608
|
+
}>,
|
|
609
|
+
maxLines: number = 5
|
|
610
|
+
): { lines: string[]; overflow: number } {
|
|
611
|
+
const lines: string[] = [];
|
|
612
|
+
for (const msg of messages) {
|
|
613
|
+
if (lines.length >= maxLines) break;
|
|
614
|
+
|
|
615
|
+
// 1. Try explicit activity from metadata
|
|
616
|
+
const meta = msg.metadata as Record<string, unknown> | undefined;
|
|
617
|
+
const activity = normalizeToolActivity(meta?.activity) ||
|
|
618
|
+
normalizeToolActivity(msg.toolPayload?.activity);
|
|
619
|
+
|
|
620
|
+
if (activity) {
|
|
621
|
+
lines.push(formatActivityAction(activity.action || activity));
|
|
622
|
+
continue;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
// 2. Fallback: derive from tool name + content/args
|
|
626
|
+
const parsedArgs = tryParseToolArgs(msg);
|
|
627
|
+
const fallback = buildFallbackActivity(msg.toolName, parsedArgs);
|
|
628
|
+
if (fallback) {
|
|
629
|
+
lines.push(formatActivityAction(fallback));
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
const overflow = Math.max(0, messages.length - maxLines);
|
|
633
|
+
return { lines, overflow };
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
function tryParseToolArgs(
|
|
637
|
+
msg: { content?: string; toolPayload?: Record<string, unknown>; metadata?: Record<string, unknown> }
|
|
638
|
+
): Record<string, unknown> | undefined {
|
|
639
|
+
// 1. Standard: toolPayload.input (web runtime)
|
|
640
|
+
const payload = msg.toolPayload;
|
|
641
|
+
if (payload && typeof payload.input === "object" && payload.input !== null) {
|
|
642
|
+
return payload.input as Record<string, unknown>;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
// 2. Desktop projected messages: derive from metadata fields
|
|
646
|
+
const meta = msg.metadata;
|
|
647
|
+
if (meta) {
|
|
648
|
+
const derived: Record<string, unknown> = {};
|
|
649
|
+
let hasField = false;
|
|
650
|
+
if (typeof meta.path === "string" && meta.path.trim()) {
|
|
651
|
+
derived.path = meta.path.trim();
|
|
652
|
+
hasField = true;
|
|
653
|
+
}
|
|
654
|
+
if (typeof meta.command === "string" && meta.command.trim()) {
|
|
655
|
+
derived.command = meta.command.trim();
|
|
656
|
+
hasField = true;
|
|
657
|
+
}
|
|
658
|
+
if (typeof meta.cmd === "string" && meta.cmd.trim()) {
|
|
659
|
+
derived.cmd = meta.cmd.trim();
|
|
660
|
+
hasField = true;
|
|
661
|
+
}
|
|
662
|
+
if (typeof meta.query === "string" && meta.query.trim()) {
|
|
663
|
+
derived.query = meta.query.trim();
|
|
664
|
+
hasField = true;
|
|
665
|
+
}
|
|
666
|
+
if (typeof meta.pattern === "string" && meta.pattern.trim()) {
|
|
667
|
+
derived.pattern = meta.pattern.trim();
|
|
668
|
+
hasField = true;
|
|
669
|
+
}
|
|
670
|
+
if (hasField) return derived;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
// 3. Last resort: try parsing content as JSON tool args
|
|
674
|
+
if (typeof msg.content === "string" && msg.content.trim()) {
|
|
675
|
+
try {
|
|
676
|
+
const parsed = JSON.parse(msg.content);
|
|
677
|
+
if (parsed && typeof parsed === "object" && !Array.isArray(parsed)) {
|
|
678
|
+
return parsed as Record<string, unknown>;
|
|
679
|
+
}
|
|
680
|
+
} catch {
|
|
681
|
+
// not JSON, skip
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
return undefined;
|
|
686
|
+
}
|