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
package/database/keys.ts
ADDED
|
@@ -0,0 +1,767 @@
|
|
|
1
|
+
// 文件: database/keys.ts
|
|
2
|
+
|
|
3
|
+
/* ===========================================================================
|
|
4
|
+
* keys.ts —— 统一的 Key 辅助函数集合
|
|
5
|
+
* 1) 通用存储键(row / idx / dir / meta / view /
|
|
6
|
+
* 2) 现有业务键(user / tx / token / dialog / page / cybot …)
|
|
7
|
+
* 3) 收藏(favorite)相关键(区分 id / key)
|
|
8
|
+
* =========================================================================*/
|
|
9
|
+
|
|
10
|
+
import { ulid } from "./utils/ulid";
|
|
11
|
+
import { curry } from "rambda";
|
|
12
|
+
import { DataType } from "../create/types"; // 枚举:DIALOG / PAGE / CYBOT …
|
|
13
|
+
|
|
14
|
+
/* --------------------------------------------------------------------------
|
|
15
|
+
* 基础工具
|
|
16
|
+
* ------------------------------------------------------------------------*/
|
|
17
|
+
|
|
18
|
+
export const SEPARATOR = "-";
|
|
19
|
+
|
|
20
|
+
export const createKey = (...parts: (string | number)[]) =>
|
|
21
|
+
parts.join(SEPARATOR);
|
|
22
|
+
|
|
23
|
+
export const splitKey = (key: string) => key.split(SEPARATOR);
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 判断一个 dbKey 是否是「表定义(TableMeta)」的 key
|
|
27
|
+
* 形如:meta-{tenantId}-{tableId}
|
|
28
|
+
*/
|
|
29
|
+
export const isTableMetaKey = (key: string): boolean => {
|
|
30
|
+
const parts = splitKey(key);
|
|
31
|
+
return parts.length >= 3 && parts[0] === "meta";
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* 判断一个 dbKey 是否是 Page 的 key
|
|
36
|
+
* 形如:PAGE-{userId}-{pageId}
|
|
37
|
+
*/
|
|
38
|
+
export const isPageKey = (key: string): boolean => {
|
|
39
|
+
const parts = splitKey(key);
|
|
40
|
+
return parts.length >= 3 && parts[0] === DataType.DOC;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* 判断一个 dbKey 是否是 Dialog 的 key
|
|
45
|
+
* 形如:DIALOG-{userId}-{dialogId}
|
|
46
|
+
*/
|
|
47
|
+
export const isDialogKey = (key: string): boolean => {
|
|
48
|
+
const parts = splitKey(key);
|
|
49
|
+
return parts.length >= 3 && parts[0] === DataType.DIALOG;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const isTaskKey = (key: string): boolean => {
|
|
53
|
+
const parts = splitKey(key);
|
|
54
|
+
return parts.length >= 3 && parts[0] === DataType.TASK;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* 判断一个 dbKey 是否是 File/Image 的 key
|
|
59
|
+
* 形如:file-{userId}-{fileId} 或 image-{userId}-{imageId}
|
|
60
|
+
*/
|
|
61
|
+
export const isFileKey = (key: string): boolean => {
|
|
62
|
+
const parts = splitKey(key);
|
|
63
|
+
return (
|
|
64
|
+
parts.length >= 3 &&
|
|
65
|
+
(parts[0] === DataType.FILE || parts[0] === DataType.IMAGE)
|
|
66
|
+
);
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* 判断一个 dbKey 是否是 Agent/Cybot 的 key
|
|
71
|
+
* 形如:agent-{userId}-{agentId} 或 cybot-{userId}-{agentId}
|
|
72
|
+
*/
|
|
73
|
+
export const isAgentKey = (key: string): boolean => {
|
|
74
|
+
const parts = splitKey(key);
|
|
75
|
+
return (
|
|
76
|
+
parts.length >= 3 &&
|
|
77
|
+
(parts[0] === DataType.AGENT || parts[0] === DataType.CYBOT)
|
|
78
|
+
);
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* 判断一个 dbKey 是否是 App 的 key
|
|
83
|
+
* 形如:app-{userId}-{appId}
|
|
84
|
+
*/
|
|
85
|
+
export const isAppKey = (key: string): boolean => {
|
|
86
|
+
const parts = splitKey(key);
|
|
87
|
+
return parts.length >= 2 && parts[0] === DataType.APP;
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* 判断一个 dbKey 是否是 Email 的 key
|
|
92
|
+
* 形如:email-{ownerId}-{emailId}
|
|
93
|
+
*/
|
|
94
|
+
export const isEmailKey = (key: string): boolean => {
|
|
95
|
+
const parts = splitKey(key);
|
|
96
|
+
return parts.length >= 3 && parts[0] === DataType.EMAIL;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
/* --------------------------------------------------------------------------
|
|
101
|
+
* 1. 通用存储键 —— 行 / 索引 / 目录 / 元数据 / 视图 / 触发器
|
|
102
|
+
* ------------------------------------------------------------------------*/
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* 行主键(表行)
|
|
106
|
+
*
|
|
107
|
+
* 形如:
|
|
108
|
+
* row-{tenantId}-{tableId}-{rowId}
|
|
109
|
+
*
|
|
110
|
+
* 设计原则:
|
|
111
|
+
* - 统一以 "row" 前缀标识实体类型,便于全库扫描时按前缀过滤
|
|
112
|
+
* - 以 tenantId 在前、tableId 在后,便于:
|
|
113
|
+
* - 按租户导出/删除:row-{tenantId}-
|
|
114
|
+
* - 按 (tenantId, tableId) 扫描整张表:row-{tenantId}-{tableId}-
|
|
115
|
+
*/
|
|
116
|
+
export const rowKey = {
|
|
117
|
+
/** 生成新行主键 + rowId */
|
|
118
|
+
create: (tenantId: string, tableId: string) => {
|
|
119
|
+
const rowId = ulid();
|
|
120
|
+
return { dbKey: createKey("row", tenantId, tableId, rowId), rowId };
|
|
121
|
+
},
|
|
122
|
+
|
|
123
|
+
/** 单行键 */
|
|
124
|
+
single: (tenantId: string, tableId: string, rowId: string) =>
|
|
125
|
+
createKey("row", tenantId, tableId, rowId),
|
|
126
|
+
|
|
127
|
+
/** 整张表的范围(gte / lte)—— 供批量操作使用 */
|
|
128
|
+
range: (tenantId: string, tableId: string) => {
|
|
129
|
+
const start = createKey("row", tenantId, tableId, "");
|
|
130
|
+
return {
|
|
131
|
+
gte: start,
|
|
132
|
+
lte: start + "\uffff",
|
|
133
|
+
};
|
|
134
|
+
},
|
|
135
|
+
|
|
136
|
+
/** 旧接口(start / end)—— 与早期代码兼容 */
|
|
137
|
+
rangeOfTable: (tenantId: string, tableId: string) => {
|
|
138
|
+
const start = createKey("row", tenantId, tableId, "");
|
|
139
|
+
return {
|
|
140
|
+
start,
|
|
141
|
+
end: start + "\uffff",
|
|
142
|
+
};
|
|
143
|
+
},
|
|
144
|
+
|
|
145
|
+
/** 某个租户的所有行范围 */
|
|
146
|
+
rangeOfTenant: (tenantId: string) => {
|
|
147
|
+
const start = createKey("row", tenantId, "");
|
|
148
|
+
return {
|
|
149
|
+
start,
|
|
150
|
+
end: start + "\uffff",
|
|
151
|
+
};
|
|
152
|
+
},
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* 二级索引键(表行索引用)
|
|
157
|
+
*
|
|
158
|
+
* 形如:
|
|
159
|
+
* idx-{tenantId}-{tableId}-{indexName}-{indexKey}-{rowId}
|
|
160
|
+
*
|
|
161
|
+
* 说明:
|
|
162
|
+
* - 与 rowKey 一致,tenantId 在前、tableId 在后
|
|
163
|
+
* - 某表所有索引:
|
|
164
|
+
* prefix: idx-{tenantId}-{tableId}-
|
|
165
|
+
* - 某索引名前缀:
|
|
166
|
+
* idx-{tenantId}-{tableId}-{indexName}-{indexKeyPrefix}
|
|
167
|
+
*/
|
|
168
|
+
export const idxKey = {
|
|
169
|
+
/** 写入单条索引 */
|
|
170
|
+
put: (
|
|
171
|
+
tenantId: string,
|
|
172
|
+
tableId: string,
|
|
173
|
+
indexName: string,
|
|
174
|
+
indexKey: string,
|
|
175
|
+
rowId: string
|
|
176
|
+
) => createKey("idx", tenantId, tableId, indexName, indexKey, rowId),
|
|
177
|
+
|
|
178
|
+
/** 某一索引名前缀的范围(start / end)—— 供前缀扫描 */
|
|
179
|
+
range: (
|
|
180
|
+
tenantId: string,
|
|
181
|
+
tableId: string,
|
|
182
|
+
indexName: string,
|
|
183
|
+
indexKeyPrefix = ""
|
|
184
|
+
) => {
|
|
185
|
+
const start = createKey(
|
|
186
|
+
"idx",
|
|
187
|
+
tenantId,
|
|
188
|
+
tableId,
|
|
189
|
+
indexName,
|
|
190
|
+
indexKeyPrefix
|
|
191
|
+
);
|
|
192
|
+
return { start, end: start + "\uffff" };
|
|
193
|
+
},
|
|
194
|
+
|
|
195
|
+
/** 整张表所有索引的范围(gte / lte)—— 供整表删除 */
|
|
196
|
+
prefix: (tenantId: string, tableId: string) => {
|
|
197
|
+
const start = createKey("idx", tenantId, tableId, "");
|
|
198
|
+
return {
|
|
199
|
+
gte: start,
|
|
200
|
+
lte: start + "\uffff",
|
|
201
|
+
};
|
|
202
|
+
},
|
|
203
|
+
|
|
204
|
+
/** 某个租户的所有索引范围 */
|
|
205
|
+
rangeOfTenant: (tenantId: string) => {
|
|
206
|
+
const start = createKey("idx", tenantId, "");
|
|
207
|
+
return {
|
|
208
|
+
start,
|
|
209
|
+
end: start + "\uffff",
|
|
210
|
+
};
|
|
211
|
+
},
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* 元数据键(表定义 TableMeta)
|
|
216
|
+
*
|
|
217
|
+
* 形如:
|
|
218
|
+
* meta-{tenantId}-{tableId}
|
|
219
|
+
*/
|
|
220
|
+
export const metaKey = Object.assign(
|
|
221
|
+
(tenantId: string, tableId: string) => createKey("meta", tenantId, tableId),
|
|
222
|
+
{
|
|
223
|
+
/** 某个租户的所有表定义范围 */
|
|
224
|
+
rangeOfTenant: (tenantId: string) => {
|
|
225
|
+
const start = createKey("meta", tenantId, "");
|
|
226
|
+
return {
|
|
227
|
+
start,
|
|
228
|
+
end: start + "\uffff",
|
|
229
|
+
};
|
|
230
|
+
},
|
|
231
|
+
}
|
|
232
|
+
);
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* 视图键(TableView)
|
|
236
|
+
*
|
|
237
|
+
* 形如:
|
|
238
|
+
* view-{tenantId}-{tableId}-{viewId}
|
|
239
|
+
*
|
|
240
|
+
* 用途:
|
|
241
|
+
* - 为某张表定义多个视图(grid / kanban / calendar 等)
|
|
242
|
+
* - 视图本身作为独立实体存储,便于按表/租户管理
|
|
243
|
+
*/
|
|
244
|
+
export const viewKey = {
|
|
245
|
+
/** 创建一个新视图 key + viewId(由调用方生成或传入) */
|
|
246
|
+
create: (tenantId: string, tableId: string, viewId?: string) => {
|
|
247
|
+
const id = viewId || ulid();
|
|
248
|
+
const dbKey = createKey("view", tenantId, tableId, id);
|
|
249
|
+
return { dbKey, id };
|
|
250
|
+
},
|
|
251
|
+
|
|
252
|
+
/** 某一视图的单键 */
|
|
253
|
+
single: (tenantId: string, tableId: string, viewId: string) =>
|
|
254
|
+
createKey("view", tenantId, tableId, viewId),
|
|
255
|
+
|
|
256
|
+
/** 某张表下面的所有视图范围 */
|
|
257
|
+
rangeOfTable: (tenantId: string, tableId: string) => {
|
|
258
|
+
const start = createKey("view", tenantId, tableId, "");
|
|
259
|
+
return {
|
|
260
|
+
start,
|
|
261
|
+
end: start + "\uffff",
|
|
262
|
+
};
|
|
263
|
+
},
|
|
264
|
+
|
|
265
|
+
/** 某个租户的所有视图范围 */
|
|
266
|
+
rangeOfTenant: (tenantId: string) => {
|
|
267
|
+
const start = createKey("view", tenantId, "");
|
|
268
|
+
return {
|
|
269
|
+
start,
|
|
270
|
+
end: start + "\uffff",
|
|
271
|
+
};
|
|
272
|
+
},
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
/* --------------------------------------------------------------------------
|
|
278
|
+
* 2. 业务侧原有键(保持完全兼容)
|
|
279
|
+
* ------------------------------------------------------------------------*/
|
|
280
|
+
|
|
281
|
+
export const DB_PREFIX = {
|
|
282
|
+
USER: "user:",
|
|
283
|
+
} as const;
|
|
284
|
+
|
|
285
|
+
/* ---- User ---- */
|
|
286
|
+
// TODO(keys): 目前 user 相关 key 没有统一的前缀(如 "user-settings-"),
|
|
287
|
+
// 将来如果需要按实体类型/租户范围扫描,可以考虑加前缀做一次轻量重构。
|
|
288
|
+
export const createUserKey = {
|
|
289
|
+
settings: (userId: string) => createKey(userId, "settings"),
|
|
290
|
+
profile: (userId: string) => createKey(userId, "profile"),
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* 用户级“寄存器 / 指针”key。
|
|
295
|
+
*
|
|
296
|
+
* 用于存放跨服务器 sticky 的小型决策状态(如默认 space 指针),
|
|
297
|
+
* 避免把这类高价值字段长期埋在整份 settings blob 里做粗粒度 LWW。
|
|
298
|
+
*/
|
|
299
|
+
export const createUserPreferenceKey = {
|
|
300
|
+
single: (userId: string, preferenceName: string) =>
|
|
301
|
+
createKey("user", "pref", userId, preferenceName),
|
|
302
|
+
authorityHome: (userId: string) =>
|
|
303
|
+
createKey("user", "pref", userId, "authority_home"),
|
|
304
|
+
defaultSpace: (userId: string) =>
|
|
305
|
+
createKey("user", "pref", userId, "space_default"),
|
|
306
|
+
defaultAgent: (userId: string) =>
|
|
307
|
+
createKey("user", "pref", userId, "agent_default"),
|
|
308
|
+
rangeOfUser: (userId: string) => ({
|
|
309
|
+
start: createKey("user", "pref", userId, ""),
|
|
310
|
+
end: createKey("user", "pref", userId, "\uffff"),
|
|
311
|
+
}),
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
/* ---- Memory ---- */
|
|
315
|
+
export const createMemoryKey = (
|
|
316
|
+
ownerType: "user" | "space" | "system",
|
|
317
|
+
ownerId: string,
|
|
318
|
+
memoryId: string
|
|
319
|
+
) => createKey("mem", ownerType, ownerId, memoryId);
|
|
320
|
+
|
|
321
|
+
export const createMemoryOwnerIndexKey = (
|
|
322
|
+
ownerType: "user" | "space" | "system",
|
|
323
|
+
ownerId: string,
|
|
324
|
+
createdAt: string,
|
|
325
|
+
memoryId: string
|
|
326
|
+
) => createKey("memidx", "owner", ownerType, ownerId, createdAt, memoryId);
|
|
327
|
+
|
|
328
|
+
export const createMemorySubjectKindIndexKey = (
|
|
329
|
+
subjectType: "user" | "agent" | "space" | "project" | "system",
|
|
330
|
+
subjectId: string,
|
|
331
|
+
kind: "episodic" | "semantic" | "procedural",
|
|
332
|
+
createdAt: string,
|
|
333
|
+
memoryId: string
|
|
334
|
+
) =>
|
|
335
|
+
createKey(
|
|
336
|
+
"memidx",
|
|
337
|
+
"subject",
|
|
338
|
+
subjectType,
|
|
339
|
+
subjectId,
|
|
340
|
+
kind,
|
|
341
|
+
createdAt,
|
|
342
|
+
memoryId
|
|
343
|
+
);
|
|
344
|
+
|
|
345
|
+
export const isMemoryKey = (key: string): boolean => {
|
|
346
|
+
const parts = splitKey(key);
|
|
347
|
+
return parts.length >= 4 && parts[0] === "mem";
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
export const memoryOwnerRange = (
|
|
351
|
+
ownerType: "user" | "space" | "system",
|
|
352
|
+
ownerId: string
|
|
353
|
+
) => ({
|
|
354
|
+
start: createKey("memidx", "owner", ownerType, ownerId, ""),
|
|
355
|
+
end: createKey("memidx", "owner", ownerType, ownerId, "\uffff"),
|
|
356
|
+
});
|
|
357
|
+
|
|
358
|
+
export const memorySubjectKindRange = (
|
|
359
|
+
subjectType: "user" | "agent" | "space" | "project" | "system",
|
|
360
|
+
subjectId: string,
|
|
361
|
+
kind: "episodic" | "semantic" | "procedural"
|
|
362
|
+
) => ({
|
|
363
|
+
start: createKey("memidx", "subject", subjectType, subjectId, kind, ""),
|
|
364
|
+
end: createKey("memidx", "subject", subjectType, subjectId, kind, "\uffff"),
|
|
365
|
+
});
|
|
366
|
+
|
|
367
|
+
/* ---- Transaction ---- */
|
|
368
|
+
// TODO(keys): tx 相关 key 目前前缀为 "tx",结构为 tx-{userId}-{txId},
|
|
369
|
+
// 与表 row/idx/meta 的租户在前原则基本一致,可以后续统一文档说明。
|
|
370
|
+
export const createTransactionKey = {
|
|
371
|
+
record: curry((userId: string, txId: string) =>
|
|
372
|
+
createKey("tx", userId, txId)
|
|
373
|
+
),
|
|
374
|
+
index: (txId: string) => createKey("tx", "index", txId),
|
|
375
|
+
range: (userId: string) => ({
|
|
376
|
+
start: createKey("tx", userId, ""),
|
|
377
|
+
end: createKey("tx", userId, "\uffff"),
|
|
378
|
+
}),
|
|
379
|
+
};
|
|
380
|
+
|
|
381
|
+
/* ---- Token ---- */
|
|
382
|
+
// TODO(keys): token 统计相关 key 已经带有 "token" 前缀,整体结构还算统一,
|
|
383
|
+
// 将来如果需要按 tenant 维度聚合,再考虑是否引入 tenantId 作为前缀第二位。
|
|
384
|
+
export const createTokenKey = {
|
|
385
|
+
record: curry((userId: string, timestamp: number) =>
|
|
386
|
+
createKey("token", userId, timestamp.toString())
|
|
387
|
+
),
|
|
388
|
+
range: (userId: string, timestamp: number) => ({
|
|
389
|
+
start: createKey("token", userId, timestamp.toString()),
|
|
390
|
+
end: createKey("token", userId, (timestamp + 86_400_000).toString()),
|
|
391
|
+
}),
|
|
392
|
+
/** 某个用户的所有 Token 记录范围 */
|
|
393
|
+
rangeOfUser: (userId: string) => ({
|
|
394
|
+
start: createKey("token", userId, ""),
|
|
395
|
+
end: createKey("token", userId, "\uffff"),
|
|
396
|
+
}),
|
|
397
|
+
};
|
|
398
|
+
|
|
399
|
+
/* ---- Token Stats ---- */
|
|
400
|
+
export const createTokenStatsKey = Object.assign(
|
|
401
|
+
(userId: string, dateKey: string) =>
|
|
402
|
+
createKey("token", "stats", "day", "user", userId, dateKey),
|
|
403
|
+
{
|
|
404
|
+
/** 某个用户的所有统计记录范围 */
|
|
405
|
+
rangeOfUser: (userId: string) => ({
|
|
406
|
+
start: createKey("token", "stats", "day", "user", userId, ""),
|
|
407
|
+
end: createKey("token", "stats", "day", "user", userId, "\uffff"),
|
|
408
|
+
}),
|
|
409
|
+
}
|
|
410
|
+
);
|
|
411
|
+
|
|
412
|
+
/* ---- Dialog ---- */
|
|
413
|
+
// TODO(keys): Dialog 相关 key 使用 DataType.DIALOG 前缀,结构为
|
|
414
|
+
// DIALOG-{userId}-{dialogId} / DIALOG-{dialogId}-msg-{messageId},
|
|
415
|
+
// 已经与其它实体类型的前缀策略对齐,可以保持。
|
|
416
|
+
export const createDialogKey = Object.assign(
|
|
417
|
+
(userId: string) => createKey(DataType.DIALOG, userId, ulid()),
|
|
418
|
+
{
|
|
419
|
+
rangeOfUser: (userId: string) => ({
|
|
420
|
+
start: createKey(DataType.DIALOG, userId, ""),
|
|
421
|
+
end: createKey(DataType.DIALOG, userId, "\uffff"),
|
|
422
|
+
}),
|
|
423
|
+
}
|
|
424
|
+
);
|
|
425
|
+
|
|
426
|
+
export const createTaskKey = Object.assign(
|
|
427
|
+
(userId: string) => createKey(DataType.TASK, userId, ulid()),
|
|
428
|
+
{
|
|
429
|
+
rangeOfUser: (userId: string) => ({
|
|
430
|
+
start: createKey(DataType.TASK, userId, ""),
|
|
431
|
+
end: createKey(DataType.TASK, userId, "\uffff"),
|
|
432
|
+
}),
|
|
433
|
+
}
|
|
434
|
+
);
|
|
435
|
+
|
|
436
|
+
/* ---- Notification ---- */
|
|
437
|
+
export const createNotificationKey = {
|
|
438
|
+
single: (userId: string, notificationId: string) =>
|
|
439
|
+
createKey(DataType.NOTIFICATION, userId, notificationId),
|
|
440
|
+
rangeOfUser: (userId: string) => ({
|
|
441
|
+
start: createKey(DataType.NOTIFICATION, userId, ""),
|
|
442
|
+
end: createKey(DataType.NOTIFICATION, userId, "\uffff"),
|
|
443
|
+
}),
|
|
444
|
+
};
|
|
445
|
+
|
|
446
|
+
export const emailKey = {
|
|
447
|
+
create: (ownerId: string) => {
|
|
448
|
+
const emailId = ulid();
|
|
449
|
+
return { dbKey: createKey(DataType.EMAIL, ownerId, emailId), emailId };
|
|
450
|
+
},
|
|
451
|
+
single: (ownerId: string, emailId: string) =>
|
|
452
|
+
createKey(DataType.EMAIL, ownerId, emailId),
|
|
453
|
+
rangeOfOwner: (ownerId: string) => ({
|
|
454
|
+
start: createKey(DataType.EMAIL, ownerId, ""),
|
|
455
|
+
end: createKey(DataType.EMAIL, ownerId, "\uffff"),
|
|
456
|
+
}),
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
export const createDialogMessageKeyAndId = (
|
|
460
|
+
dialogId: string,
|
|
461
|
+
ulidFn: () => string = ulid
|
|
462
|
+
): { key: string; messageId: string } => {
|
|
463
|
+
const messageId = ulidFn();
|
|
464
|
+
const key = createKey(DataType.DIALOG, dialogId, "msg", messageId);
|
|
465
|
+
return { key, messageId };
|
|
466
|
+
};
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* 某个对话下所有消息的 key 范围
|
|
470
|
+
* 形如:DIALOG-{dialogId}-msg-{messageId}
|
|
471
|
+
*/
|
|
472
|
+
export const dialogMessageRange = (dialogId: string) => ({
|
|
473
|
+
start: createKey(DataType.DIALOG, dialogId, "msg", ""),
|
|
474
|
+
end: createKey(DataType.DIALOG, dialogId, "msg", "\uffff"),
|
|
475
|
+
});
|
|
476
|
+
|
|
477
|
+
/* ---- Page ---- */
|
|
478
|
+
// TODO(keys): Page key 目前为 PAGE-{userId}-{pageId},与 Dialog 一致,
|
|
479
|
+
// 后续如果有“空间 Space 维度”的独立前缀,可以评估是否要引入 spaceId。
|
|
480
|
+
export const createPageKey = {
|
|
481
|
+
create: (userId: string) => {
|
|
482
|
+
const id = ulid();
|
|
483
|
+
return { dbKey: createKey(DataType.DOC, userId, id), id };
|
|
484
|
+
},
|
|
485
|
+
rangeOfUser: (userId: string) => ({
|
|
486
|
+
start: createKey(DataType.DOC, userId, ""),
|
|
487
|
+
end: createKey(DataType.DOC, userId, "\uffff"),
|
|
488
|
+
}),
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
/* ---- Cybot / Agent ---- */
|
|
492
|
+
// TODO(keys): Agent/Cybot 已采用 DataType.CYBOT 前缀 + userId/cybotId,
|
|
493
|
+
// 后续如果引入多租户组织层,可以考虑把 orgId 作为第二位前缀。
|
|
494
|
+
export const createCybotKey = {
|
|
495
|
+
private: curry((userId: string, cybotId: string) =>
|
|
496
|
+
createKey(DataType.CYBOT, userId, cybotId)
|
|
497
|
+
),
|
|
498
|
+
public: (cybotId: string) => createKey(DataType.CYBOT, "pub", cybotId),
|
|
499
|
+
rangeOfUser: (userId: string) => ({
|
|
500
|
+
start: createKey(DataType.CYBOT, userId, ""),
|
|
501
|
+
end: createKey(DataType.CYBOT, userId, "\uffff"),
|
|
502
|
+
}),
|
|
503
|
+
};
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* 推荐使用:新的 Agent Key 系列
|
|
507
|
+
* 使用 DataType.AGENT ("agent") 前缀
|
|
508
|
+
*/
|
|
509
|
+
export const createAgentKey = {
|
|
510
|
+
private: curry((userId: string, agentId: string) =>
|
|
511
|
+
createKey(DataType.AGENT, userId, agentId)
|
|
512
|
+
),
|
|
513
|
+
public: (agentId: string) => createKey(DataType.AGENT, "pub", agentId),
|
|
514
|
+
rangeOfUser: (userId: string) => ({
|
|
515
|
+
start: createKey(DataType.AGENT, userId, ""),
|
|
516
|
+
end: createKey(DataType.AGENT, userId, "\uffff"),
|
|
517
|
+
}),
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* 公开 Agent 列表范围(现有)
|
|
522
|
+
* CYBOT-pub-{id}
|
|
523
|
+
*/
|
|
524
|
+
export const pubAgentKeys = {
|
|
525
|
+
single: (cybotId: string) => createKey(DataType.CYBOT, "pub", cybotId),
|
|
526
|
+
list: () => ({
|
|
527
|
+
start: createKey(DataType.CYBOT, "pub", ""),
|
|
528
|
+
end: createKey(DataType.CYBOT, "pub", "\uffff"),
|
|
529
|
+
}),
|
|
530
|
+
/** 同时获取 cybot-pub 和 agent-pub 两个前缀的范围 */
|
|
531
|
+
allPublicRanges: () => [
|
|
532
|
+
{
|
|
533
|
+
start: createKey(DataType.CYBOT, "pub", ""),
|
|
534
|
+
end: createKey(DataType.CYBOT, "pub", "\uffff"),
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
start: createKey(DataType.AGENT, "pub", ""),
|
|
538
|
+
end: createKey(DataType.AGENT, "pub", "\uffff"),
|
|
539
|
+
},
|
|
540
|
+
],
|
|
541
|
+
};
|
|
542
|
+
|
|
543
|
+
/* ---- Share (re-exported from share/keys) ---- */
|
|
544
|
+
export { shareKey } from "../share/keys";
|
|
545
|
+
|
|
546
|
+
/* --------------------------------------------------------------------------
|
|
547
|
+
* 3. 收藏(Favorite)相关键 —— 显式区分 id / key
|
|
548
|
+
* ------------------------------------------------------------------------*/
|
|
549
|
+
|
|
550
|
+
const FAV_PREFIX = "fav";
|
|
551
|
+
|
|
552
|
+
// 类型区分:AgentId 是“逻辑 ID”(比如 cybotId),AgentKey 是“存储键 / dbKey”
|
|
553
|
+
export type AgentId = string;
|
|
554
|
+
export type AgentKey = string;
|
|
555
|
+
// TODO(keys): 将来如果 Page/File 也有单独逻辑 ID,可以在这里增加 PageId/FileId 类型。
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* 收藏关系:
|
|
559
|
+
*
|
|
560
|
+
* 当前实际使用的是「按 agentKey 存」的版本(byKey):
|
|
561
|
+
* - Agent:fav-agent-key-{userId}-{agentKey}
|
|
562
|
+
* - Page :fav-page-key-{userId}-{pageKey}
|
|
563
|
+
*
|
|
564
|
+
* 预留了一套「按逻辑 ID 存」的前缀(byId),将来如果有更抽象的逻辑 ID,可以切换到该版本。
|
|
565
|
+
*/
|
|
566
|
+
export const createFavoriteKey = {
|
|
567
|
+
/* ---------- Agent 收藏(按 agentKey 存,当前使用) ---------- */
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* 某个用户收藏了某个 Agent 实例(用完整的 agentKey/dbKey)
|
|
571
|
+
* key: fav-agent-key-{userId}-{agentKey}
|
|
572
|
+
*/
|
|
573
|
+
agentByKey: (userId: string, agentKey: AgentKey) =>
|
|
574
|
+
createKey(FAV_PREFIX, "agent", "key", userId, agentKey),
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* 查询某用户收藏的所有 Agent(基于 agentKey 版本)
|
|
578
|
+
* 范围: [fav-agent-key-{userId}-, fav-agent-key-{userId}-\uffff]
|
|
579
|
+
*/
|
|
580
|
+
agentKeyRangeOfUser: (userId: string) => ({
|
|
581
|
+
start: createKey(FAV_PREFIX, "agent", "key", userId, ""),
|
|
582
|
+
end: createKey(FAV_PREFIX, "agent", "key", userId, "\uffff"),
|
|
583
|
+
}),
|
|
584
|
+
|
|
585
|
+
userRangeOfAgentKey: (agentKey: AgentKey) => ({
|
|
586
|
+
start: createKey(FAV_PREFIX, "agent", "key", "by-agent", agentKey, ""),
|
|
587
|
+
end: createKey(FAV_PREFIX, "agent", "key", "by-agent", agentKey, "\uffff"),
|
|
588
|
+
}),
|
|
589
|
+
agentByKeyReverse: (agentKey: AgentKey, userId: string) =>
|
|
590
|
+
createKey(FAV_PREFIX, "agent", "key", "by-agent", agentKey, userId),
|
|
591
|
+
|
|
592
|
+
/* ---------- Agent 收藏(按 agentId 存,预留,将来可用) ---------- */
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* 某个用户收藏了某个逻辑 AgentId(当前未使用,预留)
|
|
596
|
+
* key: fav-agent-id-{userId}-{agentId}
|
|
597
|
+
*/
|
|
598
|
+
agentById: (userId: string, agentId: AgentId) =>
|
|
599
|
+
createKey(FAV_PREFIX, "agent", "id", userId, agentId),
|
|
600
|
+
|
|
601
|
+
/** 查询某用户收藏的所有 AgentId(预留) */
|
|
602
|
+
agentIdRangeOfUser: (userId: string) => ({
|
|
603
|
+
start: createKey(FAV_PREFIX, "agent", "id", userId, ""),
|
|
604
|
+
end: createKey(FAV_PREFIX, "agent", "id", userId, "\uffff"),
|
|
605
|
+
}),
|
|
606
|
+
|
|
607
|
+
userRangeOfAgentId: (agentId: AgentId) => ({
|
|
608
|
+
start: createKey(FAV_PREFIX, "agent", "id", "by-agent", agentId, ""),
|
|
609
|
+
end: createKey(FAV_PREFIX, "agent", "id", "by-agent", agentId, "\uffff"),
|
|
610
|
+
}),
|
|
611
|
+
agentByIdReverse: (agentId: AgentId, userId: string) =>
|
|
612
|
+
createKey(FAV_PREFIX, "agent", "id", "by-agent", agentId, userId),
|
|
613
|
+
|
|
614
|
+
/* ---------- Page 收藏(同样区分 key / id,当前可以只用 byKey) ---------- */
|
|
615
|
+
|
|
616
|
+
// Page byKey: fav-page-key-{userId}-{pageKey}
|
|
617
|
+
pageByKey: (userId: string, pageKey: string) =>
|
|
618
|
+
createKey(FAV_PREFIX, "page", "key", userId, pageKey),
|
|
619
|
+
|
|
620
|
+
pageKeyRangeOfUser: (userId: string) => ({
|
|
621
|
+
start: createKey(FAV_PREFIX, "page", "key", userId, ""),
|
|
622
|
+
end: createKey(FAV_PREFIX, "page", "key", userId, "\uffff"),
|
|
623
|
+
}),
|
|
624
|
+
|
|
625
|
+
userRangeOfPageKey: (pageKey: string) => ({
|
|
626
|
+
start: createKey(FAV_PREFIX, "page", "key", "by-page", pageKey, ""),
|
|
627
|
+
end: createKey(FAV_PREFIX, "page", "key", "by-page", pageKey, "\uffff"),
|
|
628
|
+
}),
|
|
629
|
+
pageByKeyReverse: (pageKey: string, userId: string) =>
|
|
630
|
+
createKey(FAV_PREFIX, "page", "key", "by-page", pageKey, userId),
|
|
631
|
+
|
|
632
|
+
// Page byId(预留)
|
|
633
|
+
pageById: (userId: string, pageId: string) =>
|
|
634
|
+
createKey(FAV_PREFIX, "page", "id", userId, pageId),
|
|
635
|
+
|
|
636
|
+
pageIdRangeOfUser: (userId: string) => ({
|
|
637
|
+
start: createKey(FAV_PREFIX, "page", "id", userId, ""),
|
|
638
|
+
end: createKey(FAV_PREFIX, "page", "id", userId, "\uffff"),
|
|
639
|
+
}),
|
|
640
|
+
|
|
641
|
+
userRangeOfPageId: (pageId: string) => ({
|
|
642
|
+
start: createKey(FAV_PREFIX, "page", "id", "by-page", pageId, ""),
|
|
643
|
+
end: createKey(FAV_PREFIX, "page", "id", "by-page", pageId, "\uffff"),
|
|
644
|
+
}),
|
|
645
|
+
|
|
646
|
+
pageByIdReverse: (pageId: string, userId: string) =>
|
|
647
|
+
createKey(FAV_PREFIX, "page", "id", "by-page", pageId, userId),
|
|
648
|
+
|
|
649
|
+
/** 从 dbKey 中解析出目标标识符 (agentKey/agentId/pageKey/pageId) */
|
|
650
|
+
getIdentifierFromKey: (key: string) => {
|
|
651
|
+
const parts = key.split(SEPARATOR);
|
|
652
|
+
// 结构: fav-{type}-{mode}-{userId}-{targetIdentifier...}
|
|
653
|
+
return parts.slice(4).join(SEPARATOR);
|
|
654
|
+
},
|
|
655
|
+
};
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* 收藏统计:
|
|
659
|
+
* - Agent byKey:fav-agent-count-key-{agentKey}(当前实际使用)
|
|
660
|
+
* - Agent byId :fav-agent-count-id-{agentId}(预留)
|
|
661
|
+
* - Page 同理
|
|
662
|
+
*/
|
|
663
|
+
export const createFavoriteStatsKey = {
|
|
664
|
+
// 被多少人收藏的 Agent(按 agentKey 统计,当前实际使用)
|
|
665
|
+
agentByKey: (agentKey: AgentKey) =>
|
|
666
|
+
createKey(FAV_PREFIX, "agent-count", "key", agentKey),
|
|
667
|
+
|
|
668
|
+
// 预留:按逻辑 AgentId 统计
|
|
669
|
+
agentById: (agentId: AgentId) =>
|
|
670
|
+
createKey(FAV_PREFIX, "agent-count", "id", agentId),
|
|
671
|
+
|
|
672
|
+
// Page:按 pageKey 统计(预留)
|
|
673
|
+
pageByKey: (pageKey: string) =>
|
|
674
|
+
createKey(FAV_PREFIX, "page-count", "key", pageKey),
|
|
675
|
+
|
|
676
|
+
pageById: (pageId: string) =>
|
|
677
|
+
createKey(FAV_PREFIX, "page-count", "id", pageId),
|
|
678
|
+
};
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
export const jobKey = {
|
|
682
|
+
create: (tenantId: string, jobId?: string) => {
|
|
683
|
+
const id = jobId || ulid();
|
|
684
|
+
const dbKey = createKey("job", tenantId, id);
|
|
685
|
+
return { dbKey, id };
|
|
686
|
+
},
|
|
687
|
+
single: (tenantId: string, jobId: string) =>
|
|
688
|
+
createKey("job", tenantId, jobId),
|
|
689
|
+
rangeOfTenant: (tenantId: string) => {
|
|
690
|
+
const start = createKey("job", tenantId, "");
|
|
691
|
+
return { start, end: start + "\uffff" };
|
|
692
|
+
},
|
|
693
|
+
};
|
|
694
|
+
|
|
695
|
+
/* --------------------------------------------------------------------------
|
|
696
|
+
* 4. 文件(Blob / File / Stats)相关 key
|
|
697
|
+
* ------------------------------------------------------------------------*/
|
|
698
|
+
|
|
699
|
+
/**
|
|
700
|
+
* Blob 主记录:
|
|
701
|
+
* blob-{sha256}
|
|
702
|
+
*
|
|
703
|
+
* 说明:
|
|
704
|
+
* - 以 sha256 唯一标识物理内容
|
|
705
|
+
* - 用于查重和 refCount 管理
|
|
706
|
+
*/
|
|
707
|
+
export const blobKey = (sha256: string): string => createKey("blob", sha256);
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* File 主记录:
|
|
711
|
+
* file-{tenantId}-{fileId}
|
|
712
|
+
*
|
|
713
|
+
* 说明:
|
|
714
|
+
* - tenantId 在前,便于按租户范围扫描 / 清理
|
|
715
|
+
* - fileId 通常为 ulid
|
|
716
|
+
*/
|
|
717
|
+
export const fileKey = {
|
|
718
|
+
single: (tenantId: string, fileId: string): string =>
|
|
719
|
+
createKey("file", tenantId, fileId),
|
|
720
|
+
|
|
721
|
+
rangeOfTenant: (tenantId: string): { start: string; end: string } => {
|
|
722
|
+
const start = createKey("file", tenantId, "");
|
|
723
|
+
return {
|
|
724
|
+
start,
|
|
725
|
+
end: start + "\uffff",
|
|
726
|
+
};
|
|
727
|
+
},
|
|
728
|
+
};
|
|
729
|
+
|
|
730
|
+
/**
|
|
731
|
+
* File 反查索引:
|
|
732
|
+
* file-id-{fileId} -> { tenantId, fileId }
|
|
733
|
+
*
|
|
734
|
+
* 说明:
|
|
735
|
+
* - 便于通过 fileId(URL 里只有这个)快速找到 tenant 维度的主记录
|
|
736
|
+
* - 避免通过全库扫描来反查 tenantId
|
|
737
|
+
*/
|
|
738
|
+
export const fileIdIndexKey = (fileId: string): string =>
|
|
739
|
+
createKey("file", "id", fileId);
|
|
740
|
+
|
|
741
|
+
/** 从 fileKey 中解析出 fileId */
|
|
742
|
+
export const getFileIdFromKey = (key: string) => {
|
|
743
|
+
const parts = key.split(SEPARATOR);
|
|
744
|
+
return parts[2]; // file-{userId}-{fileId}
|
|
745
|
+
};
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* 文件统计:
|
|
750
|
+
*
|
|
751
|
+
* - 按租户 + 日:
|
|
752
|
+
* file-stat-tenant-{tenantId}-{dateKey}
|
|
753
|
+
*
|
|
754
|
+
* - 按模型 + 日(AI 生成):
|
|
755
|
+
* file-stat-model-{modelName}-{dateKey}
|
|
756
|
+
*
|
|
757
|
+
* 说明:
|
|
758
|
+
* - 仅存聚合数字,不重复存 metadata
|
|
759
|
+
* - dateKey 建议使用 "YYYYMMDD"
|
|
760
|
+
*/
|
|
761
|
+
export const fileStatKey = {
|
|
762
|
+
tenantPerDay: (tenantId: string, dateKey: string): string =>
|
|
763
|
+
createKey("file", "stat", "tenant", tenantId, dateKey),
|
|
764
|
+
|
|
765
|
+
modelPerDay: (modelName: string, dateKey: string): string =>
|
|
766
|
+
createKey("file", "stat", "model", modelName, dateKey),
|
|
767
|
+
};
|