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,123 @@
|
|
|
1
|
+
const THEME_MODE_VALUES = ["system", "light", "dark"] as const;
|
|
2
|
+
const THEME_DENSITY_VALUES = ["compact", "spacious"] as const;
|
|
3
|
+
|
|
4
|
+
export type ThemeMode = (typeof THEME_MODE_VALUES)[number];
|
|
5
|
+
export type ThemeDensity = (typeof THEME_DENSITY_VALUES)[number];
|
|
6
|
+
|
|
7
|
+
import {
|
|
8
|
+
DEFAULT_THEME_NAME,
|
|
9
|
+
THEME_COLORS,
|
|
10
|
+
THEME_NAME_ALIASES,
|
|
11
|
+
} from "./theme.config";
|
|
12
|
+
import {
|
|
13
|
+
FONT_PRESET_STORAGE_KEY,
|
|
14
|
+
type FontPreset,
|
|
15
|
+
normalizeFontPreset,
|
|
16
|
+
} from "./fontPreference";
|
|
17
|
+
|
|
18
|
+
type StorageLike = {
|
|
19
|
+
getItem(key: string): string | null;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export const SYSTEM_DARK_MEDIA_QUERY = "(prefers-color-scheme: dark)";
|
|
23
|
+
|
|
24
|
+
const createLiteralGuard =
|
|
25
|
+
<const T extends readonly string[]>(values: T) =>
|
|
26
|
+
(value: unknown): value is T[number] =>
|
|
27
|
+
typeof value === "string" && values.includes(value as T[number]);
|
|
28
|
+
|
|
29
|
+
const isThemeMode = (value: unknown): value is ThemeMode =>
|
|
30
|
+
createLiteralGuard(THEME_MODE_VALUES)(value);
|
|
31
|
+
|
|
32
|
+
const isThemeDensity = (value: unknown): value is ThemeDensity =>
|
|
33
|
+
createLiteralGuard(THEME_DENSITY_VALUES)(value);
|
|
34
|
+
|
|
35
|
+
export const normalizeThemeName = (
|
|
36
|
+
value: unknown
|
|
37
|
+
): keyof typeof THEME_COLORS | undefined => {
|
|
38
|
+
if (typeof value !== "string") return undefined;
|
|
39
|
+
const canonicalName =
|
|
40
|
+
value in THEME_NAME_ALIASES
|
|
41
|
+
? THEME_NAME_ALIASES[value as keyof typeof THEME_NAME_ALIASES]
|
|
42
|
+
: value;
|
|
43
|
+
return canonicalName in THEME_COLORS
|
|
44
|
+
? (canonicalName as keyof typeof THEME_COLORS)
|
|
45
|
+
: undefined;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export const resolveThemeModeIsDark = (
|
|
49
|
+
themeMode: ThemeMode,
|
|
50
|
+
systemPrefersDark: boolean
|
|
51
|
+
): boolean =>
|
|
52
|
+
themeMode === "dark"
|
|
53
|
+
? true
|
|
54
|
+
: themeMode === "light"
|
|
55
|
+
? false
|
|
56
|
+
: systemPrefersDark;
|
|
57
|
+
|
|
58
|
+
export function readStoredThemeMode(
|
|
59
|
+
storage: StorageLike | null | undefined
|
|
60
|
+
): ThemeMode {
|
|
61
|
+
try {
|
|
62
|
+
const value = storage?.getItem("nolo-theme-mode");
|
|
63
|
+
return isThemeMode(value) ? value : "system";
|
|
64
|
+
} catch {
|
|
65
|
+
return "system";
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function readStoredThemeDensity(
|
|
70
|
+
storage: StorageLike | null | undefined
|
|
71
|
+
): ThemeDensity | undefined {
|
|
72
|
+
try {
|
|
73
|
+
const value = storage?.getItem("nolo-density");
|
|
74
|
+
return isThemeDensity(value) ? value : undefined;
|
|
75
|
+
} catch {
|
|
76
|
+
return undefined;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function readStoredThemeName(
|
|
81
|
+
storage: StorageLike | null | undefined
|
|
82
|
+
): keyof typeof THEME_COLORS | undefined {
|
|
83
|
+
try {
|
|
84
|
+
const value = normalizeThemeName(storage?.getItem("nolo-theme-name"));
|
|
85
|
+
if (!value) return undefined;
|
|
86
|
+
|
|
87
|
+
const isExplicitSelection =
|
|
88
|
+
storage?.getItem("nolo-theme-name-explicit") === "1";
|
|
89
|
+
|
|
90
|
+
if (isExplicitSelection) return value;
|
|
91
|
+
|
|
92
|
+
return value === DEFAULT_THEME_NAME || value !== "neutral"
|
|
93
|
+
? value
|
|
94
|
+
: undefined;
|
|
95
|
+
} catch {
|
|
96
|
+
return undefined;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export function readStoredFontPreset(
|
|
101
|
+
storage: StorageLike | null | undefined
|
|
102
|
+
): FontPreset | undefined {
|
|
103
|
+
try {
|
|
104
|
+
return normalizeFontPreset(storage?.getItem(FONT_PRESET_STORAGE_KEY));
|
|
105
|
+
} catch {
|
|
106
|
+
return undefined;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export function resolveThemeModePreload({
|
|
111
|
+
storage,
|
|
112
|
+
systemPrefersDark,
|
|
113
|
+
}: {
|
|
114
|
+
storage: StorageLike | null | undefined;
|
|
115
|
+
systemPrefersDark: boolean;
|
|
116
|
+
}): { themeMode: ThemeMode; isDark: boolean } {
|
|
117
|
+
const themeMode = readStoredThemeMode(storage);
|
|
118
|
+
|
|
119
|
+
return {
|
|
120
|
+
themeMode,
|
|
121
|
+
isDark: resolveThemeModeIsDark(themeMode, systemPrefersDark),
|
|
122
|
+
};
|
|
123
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { deriveAppIdFromRouteKey, isAppRouteKey, resolveAppRouteKey } from "../utils/appKeys";
|
|
2
|
+
import type { ContentIcon } from "../../render/contentIcon/types";
|
|
3
|
+
|
|
4
|
+
export type AppVisibility = "private" | "unlisted" | "public";
|
|
5
|
+
export type AppDeployMode = "platform";
|
|
6
|
+
|
|
7
|
+
export interface CustomDomain {
|
|
8
|
+
hostname: string;
|
|
9
|
+
url: string;
|
|
10
|
+
mode: "platform_a" | string;
|
|
11
|
+
pendingDns?: boolean;
|
|
12
|
+
dnsRecordType?: "A" | string;
|
|
13
|
+
aRecords?: string[];
|
|
14
|
+
verifiedAt?: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface AppSummary {
|
|
18
|
+
name: string;
|
|
19
|
+
url: string | null;
|
|
20
|
+
appId?: string;
|
|
21
|
+
appKey?: string;
|
|
22
|
+
serverOrigin?: string;
|
|
23
|
+
spaceId?: string | null;
|
|
24
|
+
customUrl?: string;
|
|
25
|
+
modifiedOn?: string;
|
|
26
|
+
visibility?: AppVisibility;
|
|
27
|
+
deployMode?: AppDeployMode;
|
|
28
|
+
icon?: ContentIcon | null;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface AppSummaryRecord {
|
|
32
|
+
appId?: string;
|
|
33
|
+
appKey?: string;
|
|
34
|
+
dbKey?: string;
|
|
35
|
+
userId?: string;
|
|
36
|
+
name?: string;
|
|
37
|
+
customUrl?: string | null;
|
|
38
|
+
visibility?: AppVisibility;
|
|
39
|
+
deployMode?: AppDeployMode;
|
|
40
|
+
spaceId?: string | null;
|
|
41
|
+
updatedAt?: string | number;
|
|
42
|
+
createdAt?: string | number;
|
|
43
|
+
serverOrigin?: string;
|
|
44
|
+
icon?: ContentIcon | null;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const toTimestamp = (value: unknown): number => {
|
|
48
|
+
if (typeof value === "number" && Number.isFinite(value)) return value;
|
|
49
|
+
if (typeof value === "string") {
|
|
50
|
+
const parsed = Date.parse(value);
|
|
51
|
+
return Number.isFinite(parsed) ? parsed : 0;
|
|
52
|
+
}
|
|
53
|
+
return 0;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const toIsoString = (value: unknown): string | undefined => {
|
|
57
|
+
const timestamp = toTimestamp(value);
|
|
58
|
+
return timestamp > 0 ? new Date(timestamp).toISOString() : undefined;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
const buildAppUrl = (serverOrigin: string | undefined, appId?: string): string | null => {
|
|
62
|
+
if (!serverOrigin || !appId) return null;
|
|
63
|
+
return `${serverOrigin.replace(/\/+$/, "")}/apps/${appId}/`;
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
export function toAppSummary(
|
|
67
|
+
record: Partial<AppSummaryRecord> | null | undefined,
|
|
68
|
+
fallbackServerOrigin: string
|
|
69
|
+
): AppSummary | null {
|
|
70
|
+
if (!record || typeof record !== "object") return null;
|
|
71
|
+
|
|
72
|
+
const recordDbKey =
|
|
73
|
+
typeof record.dbKey === "string" && record.dbKey.trim().length > 0
|
|
74
|
+
? record.dbKey
|
|
75
|
+
: undefined;
|
|
76
|
+
const explicitAppId =
|
|
77
|
+
typeof record.appId === "string" && record.appId.trim().length > 0
|
|
78
|
+
? record.appId
|
|
79
|
+
: undefined;
|
|
80
|
+
const appKey = resolveAppRouteKey(
|
|
81
|
+
typeof record.appKey === "string"
|
|
82
|
+
? record.appKey
|
|
83
|
+
: isAppRouteKey(recordDbKey)
|
|
84
|
+
? recordDbKey
|
|
85
|
+
: undefined,
|
|
86
|
+
explicitAppId
|
|
87
|
+
);
|
|
88
|
+
if (!appKey) return null;
|
|
89
|
+
const appId = explicitAppId ?? deriveAppIdFromRouteKey(appKey, record.userId);
|
|
90
|
+
|
|
91
|
+
const name =
|
|
92
|
+
typeof record.name === "string" && record.name.trim().length > 0
|
|
93
|
+
? record.name
|
|
94
|
+
: appId ?? appKey;
|
|
95
|
+
|
|
96
|
+
return {
|
|
97
|
+
name,
|
|
98
|
+
url: buildAppUrl(record.serverOrigin ?? fallbackServerOrigin, appId),
|
|
99
|
+
appId,
|
|
100
|
+
appKey,
|
|
101
|
+
serverOrigin:
|
|
102
|
+
typeof record.serverOrigin === "string" && record.serverOrigin.trim().length > 0
|
|
103
|
+
? record.serverOrigin
|
|
104
|
+
: fallbackServerOrigin,
|
|
105
|
+
spaceId:
|
|
106
|
+
typeof record.spaceId === "string" && record.spaceId.trim().length > 0
|
|
107
|
+
? record.spaceId
|
|
108
|
+
: null,
|
|
109
|
+
customUrl:
|
|
110
|
+
typeof record.customUrl === "string" && record.customUrl.trim().length > 0
|
|
111
|
+
? record.customUrl
|
|
112
|
+
: undefined,
|
|
113
|
+
modifiedOn: toIsoString(record.updatedAt ?? record.createdAt),
|
|
114
|
+
visibility: record.visibility ?? "private",
|
|
115
|
+
deployMode: record.deployMode ?? "platform",
|
|
116
|
+
icon: record.icon ?? null,
|
|
117
|
+
};
|
|
118
|
+
}
|
package/app/types.ts
ADDED
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
// packages/app/types.ts
|
|
2
|
+
import type { UiOption, OpenAIImageContent } from "../chat/messages/types";
|
|
3
|
+
import { DataType } from "../create/types";
|
|
4
|
+
import type {
|
|
5
|
+
AgentBasePolicy,
|
|
6
|
+
DialogPolicyState,
|
|
7
|
+
} from "../ai/policy/types";
|
|
8
|
+
|
|
9
|
+
export type ULID = string;
|
|
10
|
+
|
|
11
|
+
export type DialogRuntimeController =
|
|
12
|
+
| "request"
|
|
13
|
+
| "scheduler"
|
|
14
|
+
| "server-supervisor"
|
|
15
|
+
| "external-supervisor";
|
|
16
|
+
|
|
17
|
+
export type DialogRuntimeProfile = "autonomous";
|
|
18
|
+
|
|
19
|
+
export interface DialogRuntimeBinding {
|
|
20
|
+
version: 1;
|
|
21
|
+
/** 当前 product runtime 的 tenant 边界;本地模型 watchdog 不属于这里。 */
|
|
22
|
+
tenantUserId?: string | null;
|
|
23
|
+
agentKey: string;
|
|
24
|
+
/** 当前长期 runtime 的 durable anchor;现阶段直接复用 dialog。 */
|
|
25
|
+
runtimeAnchorDialogId: string;
|
|
26
|
+
controller: DialogRuntimeController;
|
|
27
|
+
triggerType?: "user" | "api" | "localhost" | "scheduled_run";
|
|
28
|
+
executionMode?: "foreground" | "background";
|
|
29
|
+
runtimeProfile?: DialogRuntimeProfile;
|
|
30
|
+
spaceId?: string;
|
|
31
|
+
category?: string;
|
|
32
|
+
/** Effective runtime/tool policy snapshot for this dialog run. */
|
|
33
|
+
runtimeToolPolicySnapshot?: Record<string, unknown>;
|
|
34
|
+
/** Workspace lease/session used by machine or workspace-backed tools. */
|
|
35
|
+
workspaceLease?: Record<string, unknown>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface AgentRuntimeBinding {
|
|
39
|
+
machineId?: string | null;
|
|
40
|
+
ownerUserId?: string | null;
|
|
41
|
+
requiredCapabilities?: string[] | null;
|
|
42
|
+
runtimeToolPolicy?: Record<string, unknown> | null;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface DialogGoalState {
|
|
46
|
+
objective: string;
|
|
47
|
+
status: "active" | "complete";
|
|
48
|
+
tokenBudget?: number;
|
|
49
|
+
createdAt: number;
|
|
50
|
+
completedAt?: number;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export interface DialogSubjectRef {
|
|
54
|
+
kind: "table-row" | "page" | "dialog" | "asset" | "external" | string;
|
|
55
|
+
id: string;
|
|
56
|
+
role?: "subject" | "parent" | "work-item" | "artifact" | string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface DialogConfig {
|
|
60
|
+
id: string; // 对话的唯一标识符/路径
|
|
61
|
+
type: DataType.DIALOG; // 数据类型标记
|
|
62
|
+
title: string; // 对话标题
|
|
63
|
+
cybots: string[]; // 兼容字段:当前对话参与的 agent ID 列表
|
|
64
|
+
primaryAgentKey?: string;
|
|
65
|
+
taskLabel?: string;
|
|
66
|
+
tags?: string[];
|
|
67
|
+
createdAt: string; // 创建时间戳
|
|
68
|
+
updatedAt: string; // 最后更新时间戳
|
|
69
|
+
dbKey?: string;
|
|
70
|
+
spaceId?: string;
|
|
71
|
+
category?: string;
|
|
72
|
+
|
|
73
|
+
// --- 上下文压缩 ---
|
|
74
|
+
summary?: string; // 对话摘要(单层覆盖式)
|
|
75
|
+
summarizedBeforeId?: string; // 摘要覆盖到哪条消息 ID
|
|
76
|
+
proactiveSummary?: string; // 主动工作摘要(不裁剪原始消息,供被动压缩消费)
|
|
77
|
+
proactiveSummaryBeforeId?: string; // 主动工作摘要覆盖到哪条消息 ID
|
|
78
|
+
compressionCount?: number; // 压缩次数(用于极端情况提示)
|
|
79
|
+
referenceKeys?: string[]; // 消息中引用过的 pageKey/dialogKey(替代 historyKeys 扫描)
|
|
80
|
+
inheritedFromDialogKey?: string; // 若从旧对话开启,记录来源对话 key 以便刷新后仍可提示
|
|
81
|
+
inheritedFromDialogTitle?: string; // 来源对话标题快照,用于 UI 提示
|
|
82
|
+
summaryPending?: boolean; // 摘要任务是否挂起(因快速切换等原因)
|
|
83
|
+
inputTokens?: number;
|
|
84
|
+
outputTokens?: number;
|
|
85
|
+
maxTokens?: number; // 此对话最大回复 token 数,覆盖 agent 默认值
|
|
86
|
+
|
|
87
|
+
// --- 执行模式(API/后台/定时场景扩展,前台对话不填) ---
|
|
88
|
+
/** 谁触发的:user=用户前台输入 api=外部API调用 localhost=本机调用 scheduled_run=定时任务运行 */
|
|
89
|
+
triggerType?: "user" | "api" | "localhost" | "scheduled_run";
|
|
90
|
+
/** foreground=用户等结果(流式) background=后台静默执行 */
|
|
91
|
+
executionMode?: "foreground" | "background";
|
|
92
|
+
/** 仅 background/scheduled 场景有意义 */
|
|
93
|
+
status?: "pending" | "running" | "done" | "failed" | "cancelled";
|
|
94
|
+
scheduledAt?: number; // 定时任务预定执行时间戳
|
|
95
|
+
startedAt?: number;
|
|
96
|
+
finishedAt?: number;
|
|
97
|
+
durationMs?: number;
|
|
98
|
+
toolCallCount?: number;
|
|
99
|
+
totalCost?: number;
|
|
100
|
+
cliSessionId?: string;
|
|
101
|
+
/** multi-agent: 当前 dialog 由哪个父 dialog 发起 */
|
|
102
|
+
parentDialogId?: string;
|
|
103
|
+
/** multi-agent: 这棵 dialog 执行树的根 dialog,便于查询 fanout */
|
|
104
|
+
rootDialogId?: string;
|
|
105
|
+
/** 当前 dialog 关联的业务对象;保持行业中立,不只服务任务表 */
|
|
106
|
+
subjectRefs?: DialogSubjectRef[];
|
|
107
|
+
/** 定时任务运行产生的对话归属的任务 key */
|
|
108
|
+
parentTaskKey?: string;
|
|
109
|
+
/** 定时任务去重 key */
|
|
110
|
+
idempotencyKey?: string;
|
|
111
|
+
/** cron 表达式,用于重复执行,如 "0 2 * * *" */
|
|
112
|
+
schedule?: string;
|
|
113
|
+
/** 定时任务执行的指令(不同于对话内容,是固定的任务描述) */
|
|
114
|
+
taskPrompt?: string;
|
|
115
|
+
policyState?: DialogPolicyState;
|
|
116
|
+
runtimeBinding?: DialogRuntimeBinding;
|
|
117
|
+
goal?: DialogGoalState;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export interface ScheduledTaskConfig {
|
|
121
|
+
id: string;
|
|
122
|
+
dbKey: string;
|
|
123
|
+
type: DataType.TASK;
|
|
124
|
+
title: string;
|
|
125
|
+
agentKey: string;
|
|
126
|
+
cybots: string[];
|
|
127
|
+
createdBy: string;
|
|
128
|
+
createdAt: string;
|
|
129
|
+
updatedAt: string;
|
|
130
|
+
spaceId?: string;
|
|
131
|
+
status: "active" | "paused" | "cancelled";
|
|
132
|
+
runStatus?: "idle" | "running" | "done" | "failed";
|
|
133
|
+
schedule: string;
|
|
134
|
+
taskPrompt: string;
|
|
135
|
+
nextRunAt: number;
|
|
136
|
+
lastRunAt?: number;
|
|
137
|
+
lastRunDialogKey?: string;
|
|
138
|
+
lastRunError?: string;
|
|
139
|
+
runDialogKeys?: string[];
|
|
140
|
+
}
|
|
141
|
+
export type ReferenceItem = {
|
|
142
|
+
dbKey: string;
|
|
143
|
+
title: string;
|
|
144
|
+
type: "knowledge" | "instruction";
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
export interface AgentGreetingMenuItem extends UiOption {
|
|
149
|
+
/** 以后如果想在 UI 上做分组,可以用 group;现在先不实现 UI */
|
|
150
|
+
group?: string;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Agent 的富 greeting:
|
|
156
|
+
* - text: 打招呼文案(markdown)
|
|
157
|
+
* - menu: 初始菜单项(会显示成第一条消息下方的按钮)
|
|
158
|
+
*/
|
|
159
|
+
export interface AgentGreetingConfig {
|
|
160
|
+
text?: string;
|
|
161
|
+
menu?: AgentGreetingMenuItem[];
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
export type PublicImageAgentMode = "generate" | "edit" | "continuous";
|
|
167
|
+
|
|
168
|
+
export interface Agent {
|
|
169
|
+
/**
|
|
170
|
+
* Image workflow mode for this agent.
|
|
171
|
+
* - generate: text-to-image
|
|
172
|
+
* - edit: image editing
|
|
173
|
+
* - continuous: multi-step/interactive image workflows
|
|
174
|
+
*/
|
|
175
|
+
imageWorkflow?: PublicImageAgentMode;
|
|
176
|
+
// --- 你已有的所有字段 ---
|
|
177
|
+
provider: string;
|
|
178
|
+
model: string;
|
|
179
|
+
imageModel?: string;
|
|
180
|
+
/** 执行来源:platform=平台API custom=自定义API/本地 cli=命令行工具 */
|
|
181
|
+
apiSource?: "platform" | "custom" | "cli";
|
|
182
|
+
/** cli 时指定使用哪个 CLI 工具。CLI 可复用 prompt/model/最近文本历史,但不走本地 tool 协议。 */
|
|
183
|
+
cliProvider?: "copilot" | "gemini" | "codex" | "claude" | "agy";
|
|
184
|
+
prompt?: string;
|
|
185
|
+
name?: string;
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
tools?: string[];
|
|
188
|
+
userId: string;
|
|
189
|
+
useServerProxy: boolean;
|
|
190
|
+
apiKey?: string;
|
|
191
|
+
apiKeyFromAgentKey?: string;
|
|
192
|
+
customProviderUrl?: string;
|
|
193
|
+
temperature?: number;
|
|
194
|
+
top_p?: number;
|
|
195
|
+
frequency_penalty?: number;
|
|
196
|
+
presence_penalty?: number;
|
|
197
|
+
max_tokens?: number;
|
|
198
|
+
reasoning_effort?: string;
|
|
199
|
+
enableThinking?: boolean;
|
|
200
|
+
thinkingBudget?: number;
|
|
201
|
+
updatedAt: string;
|
|
202
|
+
createdAt: number;
|
|
203
|
+
categoryId?: string;
|
|
204
|
+
spaceId?: string;
|
|
205
|
+
references?: ReferenceItem[];
|
|
206
|
+
tags?: string[];
|
|
207
|
+
tokenCount?: number;
|
|
208
|
+
messageCount?: number;
|
|
209
|
+
dialogCount?: number;
|
|
210
|
+
outputPrice?: number;
|
|
211
|
+
inputPrice?: number;
|
|
212
|
+
introduction?: string;
|
|
213
|
+
cover?: string;
|
|
214
|
+
greeting?: string | AgentGreetingConfig; // ✅ 这里改成联合类型
|
|
215
|
+
isPublic: boolean;
|
|
216
|
+
endpointKey?: string;
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
imageConfig?: {
|
|
220
|
+
enabled?: boolean;
|
|
221
|
+
aspectRatio?:
|
|
222
|
+
| "1:1"
|
|
223
|
+
| "2:3"
|
|
224
|
+
| "3:2"
|
|
225
|
+
| "3:4"
|
|
226
|
+
| "4:3"
|
|
227
|
+
| "4:5"
|
|
228
|
+
| "5:4"
|
|
229
|
+
| "9:16"
|
|
230
|
+
| "16:9"
|
|
231
|
+
| "21:9";
|
|
232
|
+
imageSize?: "1K" | "2K" | "4K";
|
|
233
|
+
forceModalities?: Array<"text" | "image">;
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
whitelist?: string[];
|
|
237
|
+
|
|
238
|
+
// Cross-Space Context: 关联的其他 Space ID 列表
|
|
239
|
+
// Agent 可以访问这些 Space 的内容作为粗略上下文
|
|
240
|
+
linkedSpaces?: string[];
|
|
241
|
+
basePolicy?: AgentBasePolicy;
|
|
242
|
+
runtimeBinding?: AgentRuntimeBinding | null;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
// --- 内容相关 (核心修改处) ---
|
|
248
|
+
|
|
249
|
+
export interface SpaceContent {
|
|
250
|
+
title: string;
|
|
251
|
+
type: ContentType;
|
|
252
|
+
contentKey: string; // 唯一标识符 (通常是 dbKey)
|
|
253
|
+
fileCategory?: FileCategory;
|
|
254
|
+
mimeType?: string;
|
|
255
|
+
fileSize?: number;
|
|
256
|
+
originalName?: string;
|
|
257
|
+
|
|
258
|
+
// --- 修改: categoryId 变为可选 ---
|
|
259
|
+
categoryId?: string; // 属性不存在或值为 undefined 代表未分类
|
|
260
|
+
|
|
261
|
+
pinned: boolean;
|
|
262
|
+
createdAt: number; // 时间戳 (number)
|
|
263
|
+
updatedAt: number; // 时间戳 (number)
|
|
264
|
+
order?: number; // 分类内排序
|
|
265
|
+
tags?: string[]; // 保留 tags 字段
|
|
266
|
+
triggerType?: string;
|
|
267
|
+
skillSummary?: {
|
|
268
|
+
isSkill: true;
|
|
269
|
+
skillId?: string;
|
|
270
|
+
name?: string;
|
|
271
|
+
description?: string;
|
|
272
|
+
toolNames?: string[];
|
|
273
|
+
triggerMode?: "explicit" | "required" | "recommended";
|
|
274
|
+
} | null;
|
|
275
|
+
} // --- 主数据结构 (SpaceData 保持不变) ---
|
|
276
|
+
|
|
277
|
+
export interface SpaceData {
|
|
278
|
+
id: ULID;
|
|
279
|
+
name: string;
|
|
280
|
+
description: string;
|
|
281
|
+
ownerId: string;
|
|
282
|
+
visibility: SpaceVisibility;
|
|
283
|
+
members: string[]; // userId 列表
|
|
284
|
+
categories: Categories;
|
|
285
|
+
contents: Contents;
|
|
286
|
+
createdAt: number;
|
|
287
|
+
updatedAt: number;
|
|
288
|
+
}
|
|
289
|
+
export enum ContentType {
|
|
290
|
+
DIALOG = "dialog",
|
|
291
|
+
DOC = "page",
|
|
292
|
+
FILE = "file",
|
|
293
|
+
IMAGE = "image",
|
|
294
|
+
AGENT = "agent",
|
|
295
|
+
APP = "app",
|
|
296
|
+
TASK = "task",
|
|
297
|
+
} // --- 枚举 (保持不变) ---
|
|
298
|
+
export type FileCategory =
|
|
299
|
+
| "image"
|
|
300
|
+
| "document"
|
|
301
|
+
| "video"
|
|
302
|
+
| "audio"
|
|
303
|
+
| "other";
|
|
304
|
+
export enum SpaceVisibility {
|
|
305
|
+
PRIVATE = "private",
|
|
306
|
+
PUBLIC = "public",
|
|
307
|
+
}
|
|
308
|
+
export enum MemberRole {
|
|
309
|
+
OWNER = "owner",
|
|
310
|
+
ADMIN = "admin",
|
|
311
|
+
MEMBER = "member",
|
|
312
|
+
GUEST = "guest",
|
|
313
|
+
}
|
|
314
|
+
export type Categories = Record<string, Category | null>; // --- 分类相关 (Category, Categories 保持不变) ---
|
|
315
|
+
export interface Category {
|
|
316
|
+
name: string;
|
|
317
|
+
order: number;
|
|
318
|
+
updatedAt: number;
|
|
319
|
+
} // --- 成员相关 (SpaceMember, SpaceMemberWithSpaceInfo 保持不变) ---
|
|
320
|
+
|
|
321
|
+
export interface SpaceMember {
|
|
322
|
+
role: MemberRole;
|
|
323
|
+
joinedAt: number;
|
|
324
|
+
updatedAt?: number;
|
|
325
|
+
userId: string;
|
|
326
|
+
spaceId: string;
|
|
327
|
+
} // Contents 类型保持不变 (Record<string, SpaceContent | null>)
|
|
328
|
+
export type Contents = Record<string, SpaceContent | null>;
|
|
329
|
+
export interface SpaceMemberWithSpaceInfo {
|
|
330
|
+
role: MemberRole;
|
|
331
|
+
joinedAt: number;
|
|
332
|
+
memberUpdatedAt?: number;
|
|
333
|
+
spaceId: string;
|
|
334
|
+
spaceName: string;
|
|
335
|
+
ownerId: string;
|
|
336
|
+
visibility: SpaceVisibility;
|
|
337
|
+
spaceCreatedAt: number;
|
|
338
|
+
spaceUpdatedAt: number;
|
|
339
|
+
type?: DataType;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
type MessageContentPartText = { type: "text"; text: string };
|
|
343
|
+
type MessageContentPartImageUrl = OpenAIImageContent;
|
|
344
|
+
|
|
345
|
+
type MessageContentPart = MessageContentPartText | MessageContentPartImageUrl;
|
|
346
|
+
|
|
347
|
+
export interface Message {
|
|
348
|
+
id?: string;
|
|
349
|
+
role: "user" | "assistant" | "system" | "tool" | "developer";
|
|
350
|
+
content: string | MessageContentPart[];
|
|
351
|
+
name?: string;
|
|
352
|
+
tool_calls?: any;
|
|
353
|
+
tool_call_id?: string;
|
|
354
|
+
userId?: string;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
// Share types re-exported from share/types
|
|
358
|
+
export type { ShareType, SharedObject, ShareMeta, ShareSummary } from "../share/types";
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export const APP_ROUTE_KEY_PREFIX = "app-";
|
|
2
|
+
|
|
3
|
+
const normalizeSegment = (value?: string | null): string | null => {
|
|
4
|
+
if (typeof value !== "string") return null;
|
|
5
|
+
const trimmed = value.trim();
|
|
6
|
+
return trimmed ? trimmed : null;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const buildUserAppKey = (userId: string, appId: string): string =>
|
|
10
|
+
`${APP_ROUTE_KEY_PREFIX}${userId}-${appId}`;
|
|
11
|
+
|
|
12
|
+
export const buildOwnerScopedAppKey = (params: {
|
|
13
|
+
userId: string;
|
|
14
|
+
appId: string;
|
|
15
|
+
spaceId?: string | null;
|
|
16
|
+
}): string => buildUserAppKey(params.userId, params.appId);
|
|
17
|
+
|
|
18
|
+
export const buildLegacyAppRouteKey = (appId: string): string =>
|
|
19
|
+
`${APP_ROUTE_KEY_PREFIX}${appId}`;
|
|
20
|
+
|
|
21
|
+
export const isAppRouteKey = (value?: string | null): value is string =>
|
|
22
|
+
typeof value === "string" && value.startsWith(APP_ROUTE_KEY_PREFIX);
|
|
23
|
+
|
|
24
|
+
export const resolveAppRouteKey = (
|
|
25
|
+
appKey?: string | null,
|
|
26
|
+
appId?: string | null
|
|
27
|
+
): string | null => {
|
|
28
|
+
const normalizedAppKey = normalizeSegment(appKey);
|
|
29
|
+
if (normalizedAppKey) return normalizedAppKey;
|
|
30
|
+
const normalizedAppId = normalizeSegment(appId);
|
|
31
|
+
if (!normalizedAppId) return null;
|
|
32
|
+
return isAppRouteKey(normalizedAppId)
|
|
33
|
+
? normalizedAppId
|
|
34
|
+
: buildLegacyAppRouteKey(normalizedAppId);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export const deriveAppIdFromRouteKey = (
|
|
38
|
+
appKey?: string | null,
|
|
39
|
+
userId?: string | null
|
|
40
|
+
): string | undefined => {
|
|
41
|
+
const normalizedAppKey = normalizeSegment(appKey);
|
|
42
|
+
if (!normalizedAppKey || !isAppRouteKey(normalizedAppKey)) return undefined;
|
|
43
|
+
|
|
44
|
+
const normalizedUserId = normalizeSegment(userId);
|
|
45
|
+
if (normalizedUserId) {
|
|
46
|
+
const scopedPrefix = `${APP_ROUTE_KEY_PREFIX}${normalizedUserId}-`;
|
|
47
|
+
if (normalizedAppKey.startsWith(scopedPrefix)) {
|
|
48
|
+
const appId = normalizedAppKey.slice(scopedPrefix.length).trim();
|
|
49
|
+
return appId || undefined;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const legacyAppId = normalizedAppKey.slice(APP_ROUTE_KEY_PREFIX.length).trim();
|
|
54
|
+
return legacyAppId || undefined;
|
|
55
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// 文件路径: app/utils/async.ts
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* ==================================================================
|
|
5
|
+
* /app/utils/async.ts
|
|
6
|
+
* ==================================================================
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
const isAbortError = (err: unknown, signal?: AbortSignal) =>
|
|
10
|
+
(err as any)?.name === "AbortError" ||
|
|
11
|
+
(typeof signal !== "undefined" && !!signal?.aborted);
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* 吞掉非 abort 错误,保留 AbortError。
|
|
15
|
+
*/
|
|
16
|
+
export function swallowNonAbortError<T>(
|
|
17
|
+
promise: Promise<T>,
|
|
18
|
+
fallback: T,
|
|
19
|
+
signal?: AbortSignal
|
|
20
|
+
): Promise<T> {
|
|
21
|
+
return promise.catch((err) => {
|
|
22
|
+
if (isAbortError(err, signal)) {
|
|
23
|
+
throw err;
|
|
24
|
+
}
|
|
25
|
+
console.error("Non-abort error in async op:", err);
|
|
26
|
+
return fallback;
|
|
27
|
+
});
|
|
28
|
+
}
|