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,86 @@
|
|
|
1
|
+
export type SkillReferenceChoice = {
|
|
2
|
+
dbKey: string;
|
|
3
|
+
title: string;
|
|
4
|
+
type: "instruction";
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export type SkillFollowupChoice = {
|
|
8
|
+
id: "save_only" | "use_existing_agent" | "create_agent";
|
|
9
|
+
label: string;
|
|
10
|
+
userMessage: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
type SkillFollowupInput = {
|
|
14
|
+
dbKey: string;
|
|
15
|
+
title: string;
|
|
16
|
+
skillId?: string;
|
|
17
|
+
spaceId?: string | null;
|
|
18
|
+
toolNames?: string[];
|
|
19
|
+
hasEvalConfig?: boolean;
|
|
20
|
+
importedFrom?: string | null;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export const buildSkillReferenceChoice = (
|
|
24
|
+
dbKey: string,
|
|
25
|
+
title: string
|
|
26
|
+
): SkillReferenceChoice => ({
|
|
27
|
+
dbKey,
|
|
28
|
+
title,
|
|
29
|
+
type: "instruction",
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
export const buildSkillFollowupChoices = (
|
|
33
|
+
reference: SkillReferenceChoice
|
|
34
|
+
): SkillFollowupChoice[] => [
|
|
35
|
+
{
|
|
36
|
+
id: "save_only",
|
|
37
|
+
label: "仅保存",
|
|
38
|
+
userMessage: `先只保存这个 skill 文档,不挂到任何 agent。skill dbKey 是 ${reference.dbKey}。`,
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
id: "use_existing_agent",
|
|
42
|
+
label: "挂到现有 Agent",
|
|
43
|
+
userMessage: `请把这个 skill 挂到我现有的 agent 上。skill dbKey 是 ${reference.dbKey}。`,
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: "create_agent",
|
|
47
|
+
label: "新建一个 Agent 来使用它",
|
|
48
|
+
userMessage: `请基于这个 skill 新建一个 agent 来使用它。skill dbKey 是 ${reference.dbKey}。`,
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
export const buildSkillFollowupResult = (input: SkillFollowupInput) => {
|
|
53
|
+
const reference = buildSkillReferenceChoice(input.dbKey, input.title);
|
|
54
|
+
const nextActions = buildSkillFollowupChoices(reference);
|
|
55
|
+
const lines = [
|
|
56
|
+
`Skill《${input.title}》已保存为本地文档。`,
|
|
57
|
+
`- dbKey: ${input.dbKey}`,
|
|
58
|
+
input.spaceId ? `- spaceId: ${input.spaceId}` : null,
|
|
59
|
+
input.skillId ? `- skillId: ${input.skillId}` : null,
|
|
60
|
+
input.importedFrom ? `- importedFrom: ${input.importedFrom}` : null,
|
|
61
|
+
Array.isArray(input.toolNames) && input.toolNames.length > 0
|
|
62
|
+
? `- tools: ${input.toolNames.join(", ")}`
|
|
63
|
+
: null,
|
|
64
|
+
typeof input.hasEvalConfig === "boolean"
|
|
65
|
+
? `- hasEvalConfig: ${input.hasEvalConfig ? "yes" : "no"}`
|
|
66
|
+
: null,
|
|
67
|
+
"下一步请优先询问用户:仅保存、挂到现有 Agent,还是新建一个 Agent 来使用它。",
|
|
68
|
+
].filter(Boolean);
|
|
69
|
+
|
|
70
|
+
return {
|
|
71
|
+
rawData: {
|
|
72
|
+
success: true,
|
|
73
|
+
id: input.dbKey,
|
|
74
|
+
dbKey: input.dbKey,
|
|
75
|
+
title: input.title,
|
|
76
|
+
skillId: input.skillId ?? null,
|
|
77
|
+
spaceId: input.spaceId ?? null,
|
|
78
|
+
toolNames: input.toolNames ?? [],
|
|
79
|
+
hasEvalConfig: input.hasEvalConfig ?? false,
|
|
80
|
+
importedFrom: input.importedFrom ?? null,
|
|
81
|
+
reference,
|
|
82
|
+
nextActions,
|
|
83
|
+
},
|
|
84
|
+
displayData: lines.join("\n"),
|
|
85
|
+
};
|
|
86
|
+
};
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
export interface SurfWeatherToolArgs {
|
|
2
|
+
latitude: number;
|
|
3
|
+
longitude: number;
|
|
4
|
+
location_name?: string;
|
|
5
|
+
forecast_days?: number;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const surfWeatherFunctionSchema = {
|
|
9
|
+
name: "surfWeather",
|
|
10
|
+
description: [
|
|
11
|
+
"获取指定海岸位置的冲浪天气预报,包括浪高、涌浪高度、浪周期、涌浪周期、浪向等关键指标。",
|
|
12
|
+
"数据来源:Open-Meteo Marine API(免费,无需 API Key)。",
|
|
13
|
+
"适用场景:查询某个冲浪点未来几天的海浪状况,判断是否适合冲浪。",
|
|
14
|
+
].join("\n"),
|
|
15
|
+
parameters: {
|
|
16
|
+
type: "object",
|
|
17
|
+
properties: {
|
|
18
|
+
latitude: {
|
|
19
|
+
type: "number",
|
|
20
|
+
description: "纬度,例如海南万宁为 18.8",
|
|
21
|
+
},
|
|
22
|
+
longitude: {
|
|
23
|
+
type: "number",
|
|
24
|
+
description: "经度,例如海南万宁为 110.4",
|
|
25
|
+
},
|
|
26
|
+
location_name: {
|
|
27
|
+
type: "string",
|
|
28
|
+
description: "地点名称(可选),仅用于展示,例如「海南万宁日月湾」",
|
|
29
|
+
},
|
|
30
|
+
forecast_days: {
|
|
31
|
+
type: "number",
|
|
32
|
+
description: "预报天数,1~7,默认 3",
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
required: ["latitude", "longitude"],
|
|
36
|
+
},
|
|
37
|
+
} as const;
|
|
38
|
+
|
|
39
|
+
interface HourlyData {
|
|
40
|
+
time: string[];
|
|
41
|
+
wave_height: number[];
|
|
42
|
+
wave_period: number[];
|
|
43
|
+
wave_direction: number[];
|
|
44
|
+
wind_wave_height: number[];
|
|
45
|
+
swell_wave_height: number[];
|
|
46
|
+
swell_wave_period: number[];
|
|
47
|
+
swell_wave_direction: number[];
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function getSurfRating(waveHeight: number, wavePeriod: number): string {
|
|
51
|
+
if (waveHeight < 0.3) return "⚫ 无浪";
|
|
52
|
+
if (waveHeight < 0.6 && wavePeriod < 6) return "🟤 极差";
|
|
53
|
+
if (waveHeight < 0.8) return "🔴 差";
|
|
54
|
+
if (waveHeight < 1.2 && wavePeriod >= 6) return "🟡 一般";
|
|
55
|
+
if (waveHeight < 2.0 && wavePeriod >= 8) return "🟢 较好";
|
|
56
|
+
if (waveHeight >= 2.0 && wavePeriod >= 10) return "🔵 优秀";
|
|
57
|
+
return "🟡 一般";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function getWindDirection(deg: number): string {
|
|
61
|
+
const dirs = ["北", "东北", "东", "东南", "南", "西南", "西", "西北"];
|
|
62
|
+
return dirs[Math.round(deg / 45) % 8];
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export async function surfWeatherFunc(
|
|
66
|
+
args: SurfWeatherToolArgs
|
|
67
|
+
): Promise<{ rawData: unknown; displayData: string }> {
|
|
68
|
+
const { latitude, longitude, location_name, forecast_days = 3 } = args;
|
|
69
|
+
|
|
70
|
+
const days = Math.min(Math.max(Math.round(forecast_days), 1), 7);
|
|
71
|
+
const params = [
|
|
72
|
+
"wave_height",
|
|
73
|
+
"wave_period",
|
|
74
|
+
"wave_direction",
|
|
75
|
+
"wind_wave_height",
|
|
76
|
+
"swell_wave_height",
|
|
77
|
+
"swell_wave_period",
|
|
78
|
+
"swell_wave_direction",
|
|
79
|
+
].join(",");
|
|
80
|
+
|
|
81
|
+
const url =
|
|
82
|
+
`https://marine-api.open-meteo.com/v1/marine` +
|
|
83
|
+
`?latitude=${latitude}&longitude=${longitude}` +
|
|
84
|
+
`&hourly=${params}` +
|
|
85
|
+
`&timezone=Asia/Shanghai` +
|
|
86
|
+
`&forecast_days=${days}`;
|
|
87
|
+
|
|
88
|
+
const res = await fetch(url);
|
|
89
|
+
if (!res.ok) {
|
|
90
|
+
throw new Error(`Open-Meteo API 请求失败: ${res.status} ${res.statusText}`);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
const data = (await res.json()) as {
|
|
94
|
+
latitude: number;
|
|
95
|
+
longitude: number;
|
|
96
|
+
hourly: HourlyData;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
const h = data.hourly;
|
|
100
|
+
const locationLabel = location_name || `${data.latitude}°N, ${data.longitude}°E`;
|
|
101
|
+
|
|
102
|
+
// 每天取最大浪高时段作为日摘要(取 08:00 - 20:00 峰值)
|
|
103
|
+
const dailySummaries: {
|
|
104
|
+
date: string;
|
|
105
|
+
maxWaveHeight: number;
|
|
106
|
+
wavePeriod: number;
|
|
107
|
+
swellHeight: number;
|
|
108
|
+
swellPeriod: number;
|
|
109
|
+
waveDirection: number;
|
|
110
|
+
rating: string;
|
|
111
|
+
}[] = [];
|
|
112
|
+
|
|
113
|
+
const totalHours = h.time.length;
|
|
114
|
+
for (let d = 0; d < days; d++) {
|
|
115
|
+
const start = d * 24;
|
|
116
|
+
const end = Math.min(start + 24, totalHours);
|
|
117
|
+
// 找当天最大浪高的小时
|
|
118
|
+
let bestIdx = start;
|
|
119
|
+
for (let i = start; i < end; i++) {
|
|
120
|
+
const hour = parseInt(h.time[i].slice(11, 13), 10);
|
|
121
|
+
if (hour < 8 || hour > 20) continue;
|
|
122
|
+
if (h.wave_height[i] > h.wave_height[bestIdx]) bestIdx = i;
|
|
123
|
+
}
|
|
124
|
+
const date = h.time[bestIdx].slice(0, 10);
|
|
125
|
+
const wh = h.wave_height[bestIdx];
|
|
126
|
+
const wp = h.wave_period[bestIdx];
|
|
127
|
+
const sh = h.swell_wave_height[bestIdx];
|
|
128
|
+
const sp = h.swell_wave_period[bestIdx];
|
|
129
|
+
const wd = h.wave_direction[bestIdx];
|
|
130
|
+
dailySummaries.push({
|
|
131
|
+
date,
|
|
132
|
+
maxWaveHeight: wh,
|
|
133
|
+
wavePeriod: wp,
|
|
134
|
+
swellHeight: sh,
|
|
135
|
+
swellPeriod: sp,
|
|
136
|
+
waveDirection: wd,
|
|
137
|
+
rating: getSurfRating(wh, wp),
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// 构建展示文本
|
|
142
|
+
const lines: string[] = [];
|
|
143
|
+
lines.push(`🏄 冲浪天气预报 — ${locationLabel}`);
|
|
144
|
+
lines.push(`数据来源:Open-Meteo Marine API\n`);
|
|
145
|
+
lines.push(`日期 评级 浪高 涌浪 周期 涌浪周期 浪向`);
|
|
146
|
+
lines.push("─".repeat(58));
|
|
147
|
+
|
|
148
|
+
for (const s of dailySummaries) {
|
|
149
|
+
lines.push(
|
|
150
|
+
`${s.date} ${s.rating} ${s.maxWaveHeight.toFixed(2)}m ${s.swellHeight.toFixed(2)}m ${s.wavePeriod.toFixed(1)}s ${s.swellPeriod.toFixed(1)}s ${getWindDirection(s.waveDirection)}`
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
lines.push("\n评级说明:🔵优秀 🟢较好 🟡一般 🔴差 🟤极差 ⚫无浪");
|
|
155
|
+
|
|
156
|
+
const displayData = lines.join("\n");
|
|
157
|
+
|
|
158
|
+
return {
|
|
159
|
+
rawData: {
|
|
160
|
+
location: locationLabel,
|
|
161
|
+
latitude: data.latitude,
|
|
162
|
+
longitude: data.longitude,
|
|
163
|
+
forecast_days: days,
|
|
164
|
+
daily: dailySummaries,
|
|
165
|
+
hourly: h,
|
|
166
|
+
},
|
|
167
|
+
displayData,
|
|
168
|
+
};
|
|
169
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
// 文件: ai/tools/table/addTableRowTool.ts
|
|
2
|
+
|
|
3
|
+
import type { RootState } from "../../../app/store";
|
|
4
|
+
import { addRow } from "../../../render/table/tableSlice";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* [Schema] addTableRow:在当前已打开的表中新增一行数据
|
|
8
|
+
*
|
|
9
|
+
* 设计要点:
|
|
10
|
+
* - 默认情况下,从当前 Redux 状态里的 tableSlice.currentTable 推断 tenantId / tableId
|
|
11
|
+
* - LLM 主要只需要关心 values(列名 -> 值)
|
|
12
|
+
* - 如果没有当前表,又没显式传 tenantId / tableId,则报错
|
|
13
|
+
*/
|
|
14
|
+
export const addTableRowFunctionSchema = {
|
|
15
|
+
name: "addTableRow",
|
|
16
|
+
description:
|
|
17
|
+
[
|
|
18
|
+
"在指定表中新增一行数据。",
|
|
19
|
+
"【重要】如果你是在对话(chat)中调用此函数(而非在表格页面的「页面助手」中),",
|
|
20
|
+
"则必须显式传入 tenantId 和 tableId。这两个值可从 createTable 的返回结果中获取。",
|
|
21
|
+
"如果你刚刚调用了 createTable,请务必将其返回的 tenantId 和 tableId 传入此函数。",
|
|
22
|
+
"只有在表格页面打开「页面助手」时,tenantId 和 tableId 才可以省略(会自动推断)。",
|
|
23
|
+
"【重要】表格字段必须放在 values 对象里,不要把 content、status 这类列名直接放在顶层。",
|
|
24
|
+
'完整示例:{"tenantId":"u1","tableId":"t1","values":{"content":"希望支持支付宝支付","status":"待处理"}}。',
|
|
25
|
+
].join("\n"),
|
|
26
|
+
parameters: {
|
|
27
|
+
type: "object",
|
|
28
|
+
properties: {
|
|
29
|
+
values: {
|
|
30
|
+
type: "object",
|
|
31
|
+
description:
|
|
32
|
+
[
|
|
33
|
+
"要写入新行的数据。key 必须是目标表已有的列名,多余字段会被忽略。",
|
|
34
|
+
'请根据用户的自然语言描述,为每个相关字段填上合理的值,而不是传入空对象 {}。',
|
|
35
|
+
'字段必须包在 values 中。示例:{"values": {"name": "张三", "desc": "测试任务", "date": "2025-01-01"}}。',
|
|
36
|
+
].join("\n"),
|
|
37
|
+
additionalProperties: {
|
|
38
|
+
description:
|
|
39
|
+
"单个字段的值;可以是字符串、数字、布尔值、null、对象或数组。",
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
tenantId: {
|
|
43
|
+
type: "string",
|
|
44
|
+
description:
|
|
45
|
+
"租户 ID。在对话(chat)中调用时必须显式传入,从 createTable 的返回结果获取。",
|
|
46
|
+
},
|
|
47
|
+
tableId: {
|
|
48
|
+
type: "string",
|
|
49
|
+
description:
|
|
50
|
+
"表 ID。在对话(chat)中调用时必须显式传入,从 createTable 的返回结果获取。",
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
required: ["values"],
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
type AddTableRowArgs = {
|
|
58
|
+
values?: Record<string, any>;
|
|
59
|
+
tenantId?: string;
|
|
60
|
+
tableId?: string;
|
|
61
|
+
} & Record<string, any>;
|
|
62
|
+
|
|
63
|
+
type AddTableRowResult = {
|
|
64
|
+
rawData: any;
|
|
65
|
+
displayData: string;
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const toPreviewJson = (value: unknown, maxLength = 400): string => {
|
|
69
|
+
try {
|
|
70
|
+
const json = JSON.stringify(value, null, 2);
|
|
71
|
+
if (json.length <= maxLength) return json;
|
|
72
|
+
return `${json.slice(0, maxLength)}\n…(已截断)…`;
|
|
73
|
+
} catch {
|
|
74
|
+
return "[无法序列化为 JSON]";
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
const RESERVED_ARG_KEYS = new Set(["tenantId", "tableId", "values"]);
|
|
79
|
+
|
|
80
|
+
const extractLegacyValues = (args: AddTableRowArgs | undefined): Record<string, any> => {
|
|
81
|
+
if (!args || typeof args !== "object" || Array.isArray(args)) {
|
|
82
|
+
return {};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return Object.fromEntries(
|
|
86
|
+
Object.entries(args).filter(
|
|
87
|
+
([key, value]) => !RESERVED_ARG_KEYS.has(key) && value !== undefined
|
|
88
|
+
)
|
|
89
|
+
);
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* [Executor] 在当前表中新增一行
|
|
94
|
+
*
|
|
95
|
+
* - 优先从 args.tenantId / args.tableId 取值
|
|
96
|
+
* - 否则使用 state.table.currentTable 的 tenantId / tableId
|
|
97
|
+
* - 如果当前表元数据可用,会自动过滤掉不存在的列名,并在 displayData 提示
|
|
98
|
+
*/
|
|
99
|
+
export async function addTableRowFunc(
|
|
100
|
+
args: AddTableRowArgs,
|
|
101
|
+
thunkApi: any
|
|
102
|
+
): Promise<AddTableRowResult> {
|
|
103
|
+
const state = thunkApi.getState() as RootState;
|
|
104
|
+
const tableState = state.table as RootState["table"];
|
|
105
|
+
|
|
106
|
+
const currentTable = tableState.currentTable;
|
|
107
|
+
|
|
108
|
+
const tenantId = args?.tenantId ?? currentTable?.tenantId;
|
|
109
|
+
const tableId = args?.tableId ?? currentTable?.tableId;
|
|
110
|
+
const normalizedValues =
|
|
111
|
+
args?.values !== undefined ? args.values : extractLegacyValues(args);
|
|
112
|
+
const values = (normalizedValues ?? {}) as Record<string, any>;
|
|
113
|
+
|
|
114
|
+
if (!tenantId || !tableId) {
|
|
115
|
+
throw new Error(
|
|
116
|
+
"addTableRow 只能在已打开某张表的页面中调用,或显式提供 tenantId 和 tableId。"
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
if (!values || typeof values !== "object" || Array.isArray(values)) {
|
|
121
|
+
throw new Error(
|
|
122
|
+
'addTableRow.values 必须是一个对象(列名到值的映射,例如 { "name": "张三", "desc": "测试任务" })。'
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// 兜底:禁止传空对象 {},要求至少提供一个字段
|
|
127
|
+
if (Object.keys(values).length === 0) {
|
|
128
|
+
const knownCols = currentTable
|
|
129
|
+
? currentTable.columns.map((c) => c.name).join(", ") || "(无列定义)"
|
|
130
|
+
: "(当前表字段未知)";
|
|
131
|
+
|
|
132
|
+
throw new Error(
|
|
133
|
+
`addTableRow.values 不能为空:你需要至少为一个字段提供值。\n` +
|
|
134
|
+
`请根据用户的输入,从以下字段中选择并填充值:${knownCols}`
|
|
135
|
+
);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
let sanitizedValues: Record<string, any> = values;
|
|
139
|
+
let ignoredColumns: string[] = [];
|
|
140
|
+
|
|
141
|
+
if (
|
|
142
|
+
currentTable &&
|
|
143
|
+
currentTable.tenantId === tenantId &&
|
|
144
|
+
currentTable.tableId === tableId
|
|
145
|
+
) {
|
|
146
|
+
const allowedColumns = new Set(currentTable.columns.map((c) => c.name));
|
|
147
|
+
|
|
148
|
+
sanitizedValues = {};
|
|
149
|
+
ignoredColumns = [];
|
|
150
|
+
|
|
151
|
+
for (const [key, val] of Object.entries(values)) {
|
|
152
|
+
if (allowedColumns.has(key)) {
|
|
153
|
+
sanitizedValues[key] = val;
|
|
154
|
+
} else {
|
|
155
|
+
ignoredColumns.push(key);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (
|
|
160
|
+
Object.keys(sanitizedValues).length === 0 &&
|
|
161
|
+
Object.keys(values).length > 0
|
|
162
|
+
) {
|
|
163
|
+
const knownCols =
|
|
164
|
+
currentTable.columns.map((c) => c.name).join(", ") || "(无列定义)";
|
|
165
|
+
|
|
166
|
+
throw new Error(
|
|
167
|
+
`addTableRow 失败:提供的字段名都不在当前表中。\n` +
|
|
168
|
+
`已知字段: ${knownCols}\n` +
|
|
169
|
+
`请仅使用这些字段名作为 key。`
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
try {
|
|
175
|
+
const actionResult = await thunkApi.dispatch(
|
|
176
|
+
addRow({ tenantId, tableId, values: sanitizedValues })
|
|
177
|
+
);
|
|
178
|
+
|
|
179
|
+
if (!addRow.fulfilled.match(actionResult)) {
|
|
180
|
+
const msg =
|
|
181
|
+
(actionResult.payload as string) ||
|
|
182
|
+
actionResult.error?.message ||
|
|
183
|
+
"新增表行失败";
|
|
184
|
+
throw new Error(msg);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
const createdRow = actionResult.payload as any;
|
|
188
|
+
|
|
189
|
+
const tableLabel =
|
|
190
|
+
currentTable?.displayName ||
|
|
191
|
+
currentTable?.tableId ||
|
|
192
|
+
tableId ||
|
|
193
|
+
"当前表";
|
|
194
|
+
|
|
195
|
+
const ignoredInfo =
|
|
196
|
+
ignoredColumns.length > 0
|
|
197
|
+
? `\n\n注意:以下字段在当前表中不存在,已被忽略:${ignoredColumns.join(
|
|
198
|
+
", "
|
|
199
|
+
)}`
|
|
200
|
+
: "";
|
|
201
|
+
|
|
202
|
+
return {
|
|
203
|
+
rawData: {
|
|
204
|
+
...createdRow,
|
|
205
|
+
values: sanitizedValues,
|
|
206
|
+
},
|
|
207
|
+
displayData:
|
|
208
|
+
`已在表「${tableLabel}」中新增一行数据。\n` +
|
|
209
|
+
`rowId: ${createdRow.rowId ?? "(无 rowId 字段)"}\n\n` +
|
|
210
|
+
`数据预览:\n${toPreviewJson(createdRow)}${ignoredInfo}`,
|
|
211
|
+
};
|
|
212
|
+
} catch (error: any) {
|
|
213
|
+
throw new Error(
|
|
214
|
+
`addTableRow 调用失败:${error?.message ?? "未知错误"}`
|
|
215
|
+
);
|
|
216
|
+
}
|
|
217
|
+
}
|