nolo-cli 0.1.39 → 0.1.41
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 +4 -4
- package/agent-runtime/dialogWritePlan.ts +39 -0
- package/agent-runtime/hostAdapter.ts +4 -0
- package/agent-runtime/hybridRecordStore.ts +5 -3
- package/agent-runtime/index.ts +15 -0
- package/agent-runtime/localLoop.ts +87 -7
- package/agent-runtime/localToolPolicy.ts +2 -13
- package/agent-runtime/localWorkspaceTools.ts +42 -110
- package/agent-runtime/runtimeToolPolicy.ts +2 -11
- package/agent-runtime/runtimeToolSurface.ts +198 -0
- package/agent-runtime/types.ts +1 -0
- package/agentAliases.ts +2 -1
- package/agentRunCommand.ts +10 -32
- package/agentRuntimeLocal.ts +1 -0
- 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 +585 -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 +314 -40
- 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 +2001 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +860 -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 +1095 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +117 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +897 -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 +23 -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 +6 -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/queryShared.ts +161 -0
- package/ai/memory/recentRelationshipRecap.ts +247 -0
- package/ai/memory/remember.ts +167 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +46 -0
- package/ai/memory/understanding.ts +349 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +454 -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 +235 -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 +53 -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 +2308 -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 +23 -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 +627 -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 +315 -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/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 +55 -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/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +233 -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 +2174 -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 +114 -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 +73 -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 +18 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +178 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +813 -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 +197 -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/dialogSlice.ts +872 -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/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +199 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1367 -0
- package/chat/messages/toolThunks.ts +625 -0
- package/cli/agentAliases.ts +2 -1
- package/cli/agentRunCommand.ts +10 -32
- package/cli/agentRuntimeLocal.ts +1 -0
- package/cli/client/agentRun.ts +67 -95
- package/cli/client/localRuntimeAdapter.ts +323 -54
- package/cli/commandRegistry.ts +2 -2
- package/cli/machineWsRunDispatch.ts +51 -6
- package/cli/offlineMarxistsAgentCommand.ts +6 -4
- package/client/agentConfigResolver.test.ts +2 -2
- package/client/agentRun.test.ts +175 -57
- package/client/agentRun.ts +67 -95
- package/client/localRuntimeAdapter.test.ts +682 -37
- package/client/localRuntimeAdapter.ts +323 -54
- package/client/localRuntimeDryRun.test.ts +23 -9
- package/client/localToolPolicy.test.ts +4 -4
- package/commandRegistry.ts +2 -2
- 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 +241 -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/server/levelAuthorityStore.ts +20 -1
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -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 +274 -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/analyze/profileAnalyzer.ts +205 -0
- package/integrations/xhs-reader/backends/playwrightProfileCollector.ts +624 -0
- package/integrations/xhs-reader/bridge/readXhsProfileWithBridge.ts +227 -0
- package/integrations/xhs-reader/client/xhsWebApiClient.ts +229 -0
- package/integrations/xhs-reader/normalize.ts +390 -0
- package/integrations/xhs-reader/orchestrator.ts +178 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +244 -0
- package/integrations/xhs-reader/url.ts +57 -0
- package/machineWsRunDispatch.ts +51 -6
- package/offlineMarxistsAgentCommand.ts +6 -4
- package/package.json +430 -3
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +468 -0
- package/render/page/types.ts +17 -0
- package/render/table/createTableAction.ts +270 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1106 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +252 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/server/handlers/agentRun/types.ts +104 -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
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
const DEFAULT_MISS_COOLDOWN_MS = 2000;
|
|
2
|
+
const DEFAULT_LOCAL_HIT_REVALIDATE_COOLDOWN_MS = 1500;
|
|
3
|
+
const DEFAULT_MISS_CACHE_MAX_SIZE = 1000;
|
|
4
|
+
|
|
5
|
+
export class ReadRequestManager {
|
|
6
|
+
private readonly inFlightReads = new Map<string, Promise<any>>();
|
|
7
|
+
private readonly recentMisses = new Map<string, number>();
|
|
8
|
+
private readonly recentLocalHitRevalidations = new Map<string, number>();
|
|
9
|
+
|
|
10
|
+
constructor(
|
|
11
|
+
private readonly options: {
|
|
12
|
+
missCooldownMs?: number;
|
|
13
|
+
missCacheMaxSize?: number;
|
|
14
|
+
localHitRevalidateCooldownMs?: number;
|
|
15
|
+
} = {}
|
|
16
|
+
) {}
|
|
17
|
+
|
|
18
|
+
private get missCooldownMs() {
|
|
19
|
+
return this.options.missCooldownMs ?? DEFAULT_MISS_COOLDOWN_MS;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
private get missCacheMaxSize() {
|
|
23
|
+
return this.options.missCacheMaxSize ?? DEFAULT_MISS_CACHE_MAX_SIZE;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
private get localHitRevalidateCooldownMs() {
|
|
27
|
+
return (
|
|
28
|
+
this.options.localHitRevalidateCooldownMs ??
|
|
29
|
+
DEFAULT_LOCAL_HIT_REVALIDATE_COOLDOWN_MS
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
getInFlight(dbKey: string) {
|
|
34
|
+
return this.inFlightReads.get(dbKey);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
setInFlight(dbKey: string, promise: Promise<any>) {
|
|
38
|
+
this.inFlightReads.set(dbKey, promise);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
clearInFlight(dbKey: string, promise: Promise<any>) {
|
|
42
|
+
if (this.inFlightReads.get(dbKey) === promise) {
|
|
43
|
+
this.inFlightReads.delete(dbKey);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
clearMiss(dbKey: string) {
|
|
48
|
+
this.recentMisses.delete(dbKey);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
getRetryInMs(dbKey: string, now: number) {
|
|
52
|
+
const missUntil = this.recentMisses.get(dbKey);
|
|
53
|
+
if (typeof missUntil !== "number") return null;
|
|
54
|
+
if (missUntil <= now) {
|
|
55
|
+
this.recentMisses.delete(dbKey);
|
|
56
|
+
return null;
|
|
57
|
+
}
|
|
58
|
+
return missUntil - now;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
markMiss(dbKey: string, now: number, cooldownMs = this.missCooldownMs) {
|
|
62
|
+
this.recentMisses.set(dbKey, now + cooldownMs);
|
|
63
|
+
this.cleanupMisses(now);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
getLocalHitRevalidateInMs(dbKey: string, now: number) {
|
|
67
|
+
const nextAllowedAt = this.recentLocalHitRevalidations.get(dbKey);
|
|
68
|
+
if (typeof nextAllowedAt !== "number") return null;
|
|
69
|
+
if (nextAllowedAt <= now) {
|
|
70
|
+
this.recentLocalHitRevalidations.delete(dbKey);
|
|
71
|
+
return null;
|
|
72
|
+
}
|
|
73
|
+
return nextAllowedAt - now;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
markLocalHitRevalidated(
|
|
77
|
+
dbKey: string,
|
|
78
|
+
now: number,
|
|
79
|
+
cooldownMs = this.localHitRevalidateCooldownMs
|
|
80
|
+
) {
|
|
81
|
+
this.recentLocalHitRevalidations.set(dbKey, now + cooldownMs);
|
|
82
|
+
this.cleanupLocalHitRevalidations(now);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
private cleanupExpiringMap(map: Map<string, number>, now: number) {
|
|
86
|
+
for (const [key, expiresAt] of Array.from(map.entries())) {
|
|
87
|
+
if (expiresAt <= now) {
|
|
88
|
+
map.delete(key);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
if (map.size <= this.missCacheMaxSize) return;
|
|
93
|
+
const overflow = map.size - this.missCacheMaxSize;
|
|
94
|
+
const keys = Array.from(map.keys());
|
|
95
|
+
for (let i = 0; i < overflow; i += 1) {
|
|
96
|
+
const key = keys[i];
|
|
97
|
+
if (key) map.delete(key);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
cleanupMisses(now: number) {
|
|
102
|
+
this.cleanupExpiringMap(this.recentMisses, now);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
cleanupLocalHitRevalidations(now: number) {
|
|
106
|
+
this.cleanupExpiringMap(this.recentLocalHitRevalidations, now);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// test helper
|
|
110
|
+
getMissCacheSize() {
|
|
111
|
+
return this.recentMisses.size;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// test helper
|
|
115
|
+
getLocalHitRevalidationCacheSize() {
|
|
116
|
+
return this.recentLocalHitRevalidations.size;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export const readRequestManager = new ReadRequestManager();
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
const normalizeServerOrigin = (server: string): string =>
|
|
2
|
+
server.trim().replace(/\/+$/, "");
|
|
3
|
+
|
|
4
|
+
const toComparableTimestamp = (data: any): number => {
|
|
5
|
+
if (!data || typeof data !== "object") return 0;
|
|
6
|
+
|
|
7
|
+
const updatedAtMs = new Date(data.updatedAt).getTime();
|
|
8
|
+
if (Number.isFinite(updatedAtMs) && updatedAtMs > 0) return updatedAtMs;
|
|
9
|
+
|
|
10
|
+
const createdAtMs = new Date(data.createdAt).getTime();
|
|
11
|
+
if (Number.isFinite(createdAtMs) && createdAtMs > 0) return createdAtMs;
|
|
12
|
+
|
|
13
|
+
const metaCreatedAt = Number(data?.meta?.createdAt);
|
|
14
|
+
if (Number.isFinite(metaCreatedAt) && metaCreatedAt > 0) return metaCreatedAt;
|
|
15
|
+
|
|
16
|
+
return 0;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export const partitionReadServers = ({
|
|
20
|
+
allServers,
|
|
21
|
+
preferredServerOrigin,
|
|
22
|
+
}: {
|
|
23
|
+
allServers: string[];
|
|
24
|
+
preferredServerOrigin?: string | null;
|
|
25
|
+
}): {
|
|
26
|
+
preferredServer: string | null;
|
|
27
|
+
fallbackServers: string[];
|
|
28
|
+
orderedServersForLocalHit: string[];
|
|
29
|
+
} => {
|
|
30
|
+
const preferredServer =
|
|
31
|
+
typeof preferredServerOrigin === "string" &&
|
|
32
|
+
preferredServerOrigin.trim().length > 0
|
|
33
|
+
? normalizeServerOrigin(preferredServerOrigin)
|
|
34
|
+
: null;
|
|
35
|
+
|
|
36
|
+
const fallbackServers = preferredServer
|
|
37
|
+
? allServers.filter(
|
|
38
|
+
(server) => normalizeServerOrigin(server) !== preferredServer
|
|
39
|
+
)
|
|
40
|
+
: allServers;
|
|
41
|
+
|
|
42
|
+
return {
|
|
43
|
+
preferredServer,
|
|
44
|
+
fallbackServers,
|
|
45
|
+
orderedServersForLocalHit: preferredServer
|
|
46
|
+
? [preferredServer, ...fallbackServers]
|
|
47
|
+
: fallbackServers,
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export const compareRemoteRecordsByComparableTime = (
|
|
52
|
+
left: any,
|
|
53
|
+
right: any
|
|
54
|
+
): number => toComparableTimestamp(left) - toComparableTimestamp(right);
|
|
55
|
+
|
|
56
|
+
export const pickBestSettledRemoteRecord = ({
|
|
57
|
+
settledResults,
|
|
58
|
+
isBetterCandidate,
|
|
59
|
+
}: {
|
|
60
|
+
settledResults: PromiseSettledResult<any>[];
|
|
61
|
+
isBetterCandidate: (current: any, latest: any) => boolean;
|
|
62
|
+
}): { data: any; index: number } | null => {
|
|
63
|
+
const validResults = settledResults
|
|
64
|
+
.map((result, index) => ({
|
|
65
|
+
data: result.status === "fulfilled" ? result.value : null,
|
|
66
|
+
index,
|
|
67
|
+
}))
|
|
68
|
+
.filter((item) => item.data !== null && typeof item.data === "object");
|
|
69
|
+
|
|
70
|
+
if (validResults.length === 0) return null;
|
|
71
|
+
|
|
72
|
+
const latest = validResults.reduce((best, current) =>
|
|
73
|
+
isBetterCandidate(current.data, best.data) ? current : best
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
return { index: latest.index, data: latest.data };
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
export const shouldReplaceLocalWithRemoteRecord = ({
|
|
80
|
+
localData,
|
|
81
|
+
remoteData,
|
|
82
|
+
isRemoteNewer,
|
|
83
|
+
}: {
|
|
84
|
+
localData: any;
|
|
85
|
+
remoteData: any;
|
|
86
|
+
isRemoteNewer: (remoteData: any, localData: any) => boolean;
|
|
87
|
+
}): boolean => {
|
|
88
|
+
if (!remoteData || typeof remoteData !== "object") return false;
|
|
89
|
+
if (!localData || typeof localData !== "object") return true;
|
|
90
|
+
return isRemoteNewer(remoteData, localData);
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export const shouldReplicateLocalRecord = ({
|
|
94
|
+
localData,
|
|
95
|
+
remoteData,
|
|
96
|
+
remoteTargetCount,
|
|
97
|
+
}: {
|
|
98
|
+
localData: any;
|
|
99
|
+
remoteData: any;
|
|
100
|
+
remoteTargetCount: number;
|
|
101
|
+
}): boolean =>
|
|
102
|
+
!!localData && !remoteData && remoteTargetCount > 0;
|
|
103
|
+
|
|
104
|
+
const compactUniqueServers = (
|
|
105
|
+
servers: Array<string | null | undefined>
|
|
106
|
+
): string[] => {
|
|
107
|
+
const out: string[] = [];
|
|
108
|
+
for (const server of servers) {
|
|
109
|
+
if (typeof server !== "string" || server.trim().length === 0) continue;
|
|
110
|
+
const normalized = normalizeServerOrigin(server);
|
|
111
|
+
if (!out.includes(normalized)) out.push(normalized);
|
|
112
|
+
}
|
|
113
|
+
return out;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export const planAuthorityReadServers = ({
|
|
117
|
+
allServers,
|
|
118
|
+
authorityServer,
|
|
119
|
+
serverOrigin,
|
|
120
|
+
}: {
|
|
121
|
+
allServers: string[];
|
|
122
|
+
authorityServer?: string | null;
|
|
123
|
+
serverOrigin?: string | null;
|
|
124
|
+
}): string[] =>
|
|
125
|
+
compactUniqueServers([authorityServer, serverOrigin, ...allServers]);
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
// 文件路径: src/database/actions/delete.ts
|
|
2
|
+
|
|
3
|
+
import type { AppThunkApi } from "../../app/store";
|
|
4
|
+
import { getRuntimeServerContext } from "../runtimeServerContext";
|
|
5
|
+
|
|
6
|
+
import { fetchFromClientDb } from "./common";
|
|
7
|
+
import { deleteFileFromIndexedDb } from "../fileStorage";
|
|
8
|
+
import {
|
|
9
|
+
scheduleDeleteReplication,
|
|
10
|
+
} from "./replication";
|
|
11
|
+
import { buildTombstoneRecord } from "../tombstones";
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* removeAction:
|
|
15
|
+
* 1. 先删除本地 IndexedDB 中的记录(如果存在)
|
|
16
|
+
* 2. 再异步并行通知所有远程服务器删除该记录
|
|
17
|
+
*
|
|
18
|
+
* - 服务器列表来源:
|
|
19
|
+
* - 当前服务器:settings.currentServer
|
|
20
|
+
* - 备份服务器:settings.syncServers
|
|
21
|
+
* - getAllServers 负责去重 + 离线检测(offline 时返回 [])
|
|
22
|
+
*/
|
|
23
|
+
export const removeAction = async (
|
|
24
|
+
payload: string | { dbKey: string; preferredServerOrigin?: string | null },
|
|
25
|
+
thunkApi: AppThunkApi
|
|
26
|
+
): Promise<{ dbKey: string }> => {
|
|
27
|
+
const { db: clientDb } = thunkApi.extra;
|
|
28
|
+
const dbKey = typeof payload === "string" ? payload : payload.dbKey;
|
|
29
|
+
const preferredServerOrigin =
|
|
30
|
+
typeof payload === "string" ? undefined : payload.preferredServerOrigin;
|
|
31
|
+
|
|
32
|
+
if (!clientDb) {
|
|
33
|
+
throw new Error("Client database is undefined in removeAction");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const state = thunkApi.getState();
|
|
37
|
+
const { currentServer, syncServers } = getRuntimeServerContext(state);
|
|
38
|
+
|
|
39
|
+
console.log("[removeAction] START", {
|
|
40
|
+
dbKey,
|
|
41
|
+
preferredServerOrigin,
|
|
42
|
+
currentServer,
|
|
43
|
+
syncServers,
|
|
44
|
+
hasToken: Boolean(state?.auth?.currentToken),
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
// 1) 先查本地是否有这条数据
|
|
48
|
+
const localData = await fetchFromClientDb(clientDb, dbKey);
|
|
49
|
+
const hadLocalData = Boolean(localData);
|
|
50
|
+
|
|
51
|
+
// 2) local mutation 只依赖本地真相;远端删除由 replication helper 负责后台收敛。
|
|
52
|
+
console.log("[removeAction] replication inputs", {
|
|
53
|
+
currentServer,
|
|
54
|
+
syncServers,
|
|
55
|
+
preferredServerOrigin,
|
|
56
|
+
hadLocalData,
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
// 3) 如果本地存在,则先写 tombstone 到本地。
|
|
60
|
+
// Recent / My Content 是多源 merge,直接物理删除本地会丢失“删除胜出”证据,
|
|
61
|
+
// 老版本远端返回的活记录会在下一轮 merge 时再次回流。
|
|
62
|
+
const nowIso = new Date().toISOString();
|
|
63
|
+
if (localData) {
|
|
64
|
+
if (localData.id && typeof localData.id === "string") {
|
|
65
|
+
void deleteFileFromIndexedDb(localData.id).catch((err) => {
|
|
66
|
+
console.warn("[removeAction] Failed to delete associated file:", localData.id, err);
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
await clientDb.put(dbKey, buildTombstoneRecord(localData, nowIso));
|
|
70
|
+
} else {
|
|
71
|
+
// 本地无数据(仅存于远端),写最小 tombstone 防止远端记录在 merge 时回流
|
|
72
|
+
await clientDb.put(dbKey, buildTombstoneRecord({ dbKey }, nowIso));
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// 4) local-first 产品语义:本地 tombstone 立即成功,远端删除异步收敛。
|
|
76
|
+
// 这样离线/弱网时删除也能成立,UI 可立刻移除内容;远端复制后续自行收敛。
|
|
77
|
+
scheduleDeleteReplication({
|
|
78
|
+
currentServer,
|
|
79
|
+
syncServers,
|
|
80
|
+
preferredServerOrigin,
|
|
81
|
+
dbKey,
|
|
82
|
+
state,
|
|
83
|
+
onResult: (result) => {
|
|
84
|
+
if (result.failed.length > 0) {
|
|
85
|
+
console.warn("[removeAction] Server delete failures after local tombstone:", result.failed);
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
onError: (err) => {
|
|
89
|
+
console.warn("[removeAction] Background server delete error:", err);
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
return { dbKey };
|
|
94
|
+
};
|