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,213 @@
|
|
|
1
|
+
// 文件路径: packages/ai/tools/writeFileTool.ts
|
|
2
|
+
|
|
3
|
+
import { bumpDevReloadSuppressIfSelfEditing } from "./devReloadUtils";
|
|
4
|
+
import { buildToolRequestHeaders, getToolBaseUrl } from "./toolApiClient";
|
|
5
|
+
|
|
6
|
+
// ---- Types ----
|
|
7
|
+
|
|
8
|
+
export type WriteFileArgs = {
|
|
9
|
+
/**
|
|
10
|
+
* 目标文件相对项目根目录(bun-nolo)的路径,例如:
|
|
11
|
+
* - packages/chat/src/messages/web/NewComponent.tsx
|
|
12
|
+
* - packages/server/some-script.ts
|
|
13
|
+
*/
|
|
14
|
+
filePath: string;
|
|
15
|
+
/**
|
|
16
|
+
* 要写入文件的完整内容。
|
|
17
|
+
* - 如果文件不存在:将创建新文件,并写入该内容;
|
|
18
|
+
* - 如果文件已存在:
|
|
19
|
+
* - overwrite = true:覆盖原有内容;
|
|
20
|
+
* - overwrite 未设置或为 false:请求会失败。
|
|
21
|
+
*/
|
|
22
|
+
content: string;
|
|
23
|
+
overwrite?: boolean;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
// ---- 工具 Schema,供 LLM 调用 ----
|
|
27
|
+
|
|
28
|
+
export const writeFileFunctionSchema = {
|
|
29
|
+
name: "writeFile",
|
|
30
|
+
description: [
|
|
31
|
+
"在后端服务器上写入一个完整文件的内容,可用于新建文件或覆盖已有文件。",
|
|
32
|
+
"",
|
|
33
|
+
"适用场景:",
|
|
34
|
+
"- 新建一个全新的代码文件(例如新组件、新工具函数、配置文件等)",
|
|
35
|
+
"- 覆盖一个文件的全部内容(当你需要重写整个文件时)",
|
|
36
|
+
"",
|
|
37
|
+
"行为约定:",
|
|
38
|
+
"- 当目标文件不存在:直接创建新文件并写入 content。",
|
|
39
|
+
"- 当目标文件已存在:",
|
|
40
|
+
" - 如果 overwrite=true,则覆盖原文件内容;",
|
|
41
|
+
" - 否则请求会失败,以避免意外覆盖。",
|
|
42
|
+
"",
|
|
43
|
+
"返回数据约定(rawData.response 中):",
|
|
44
|
+
"- created / overwritten:指示本次操作是新建还是覆盖。",
|
|
45
|
+
"- newContent:写入后的完整文件内容(统一使用 \\n 作为换行符),用于 UI 中的代码预览。",
|
|
46
|
+
"- diff:如果文件原本存在,则返回基于旧内容与 newContent 的行级 diff(diffLines 结果),用于 UI 中的 Diff 视图。",
|
|
47
|
+
"",
|
|
48
|
+
"注意:",
|
|
49
|
+
"- filePath 必须是相对项目根目录(bun-nolo)的相对路径,且不能越出项目根目录。",
|
|
50
|
+
"- 建议只在“新建文件/全量重写”时使用本工具;修改部分内容时优先使用 applyEdit。",
|
|
51
|
+
"- 如果用户给了 URL 或网页资料来驱动本次改动,先抓取网页并核对字段,再决定是否需要整文件覆盖。",
|
|
52
|
+
].join("\n"),
|
|
53
|
+
parameters: {
|
|
54
|
+
type: "object",
|
|
55
|
+
properties: {
|
|
56
|
+
filePath: {
|
|
57
|
+
type: "string",
|
|
58
|
+
description:
|
|
59
|
+
"目标文件相对项目根目录(bun-nolo)的路径,例如: packages/chat/src/messages/web/NewComponent.tsx",
|
|
60
|
+
},
|
|
61
|
+
content: {
|
|
62
|
+
type: "string",
|
|
63
|
+
description:
|
|
64
|
+
"要写入文件的完整内容。对于新建文件,就是文件的全部内容;对于覆盖已有文件,会用该内容替换原内容。",
|
|
65
|
+
},
|
|
66
|
+
overwrite: {
|
|
67
|
+
type: "boolean",
|
|
68
|
+
description:
|
|
69
|
+
"是否允许覆盖已存在的文件。缺省或为 false 时,如果文件已存在将报错;true 时允许覆盖。",
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
required: ["filePath", "content"],
|
|
73
|
+
},
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
// ---- 预览执行:不写文件,只展示信息 ----
|
|
77
|
+
|
|
78
|
+
export async function writeFilePreviewFunc(
|
|
79
|
+
args: WriteFileArgs,
|
|
80
|
+
_thunkApi: any
|
|
81
|
+
): Promise<{ rawData: any; displayData?: string }> {
|
|
82
|
+
const { filePath, content, overwrite } = args;
|
|
83
|
+
|
|
84
|
+
if (!filePath || typeof filePath !== "string") {
|
|
85
|
+
throw new Error("writeFile 预览失败:必须提供有效的 filePath 字符串。");
|
|
86
|
+
}
|
|
87
|
+
if (typeof content !== "string") {
|
|
88
|
+
throw new Error("writeFile 预览失败:content 必须是字符串。");
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const mode = overwrite ? "允许覆盖(已存在则覆盖)" : "仅新建(已存在则报错)";
|
|
92
|
+
const lengthInfo = `内容长度: ${content.length} 个字符`;
|
|
93
|
+
|
|
94
|
+
return {
|
|
95
|
+
rawData: {
|
|
96
|
+
previewOnly: true,
|
|
97
|
+
filePath,
|
|
98
|
+
overwrite: !!overwrite,
|
|
99
|
+
content,
|
|
100
|
+
},
|
|
101
|
+
displayData: `⏸️ 文件写入预览: ${filePath}(模式: ${mode},${lengthInfo})`,
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// ---- 真正执行:POST 到后端 /api/write-file ----
|
|
106
|
+
|
|
107
|
+
export async function writeFileFunc(
|
|
108
|
+
args: WriteFileArgs,
|
|
109
|
+
thunkApi: any,
|
|
110
|
+
context?: { parentMessageId?: string; signal?: AbortSignal; agentKey?: string }
|
|
111
|
+
): Promise<{ rawData: any; displayData?: string }> {
|
|
112
|
+
const { filePath, content, overwrite } = args;
|
|
113
|
+
|
|
114
|
+
if (!filePath || typeof filePath !== "string") {
|
|
115
|
+
throw new Error("写入文件失败:必须提供有效的 filePath 字符串。");
|
|
116
|
+
}
|
|
117
|
+
if (typeof content !== "string") {
|
|
118
|
+
throw new Error("写入文件失败:content 必须是字符串。");
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
try {
|
|
122
|
+
const baseUrl = getToolBaseUrl(thunkApi);
|
|
123
|
+
|
|
124
|
+
if (!baseUrl) {
|
|
125
|
+
throw new Error("写入文件失败:无法获取 writeFile 服务器地址。");
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const apiUrl = `${baseUrl.replace(/\/+$/, "")}/api/write-file`;
|
|
129
|
+
|
|
130
|
+
// 自举写入前增加 reload 抑制
|
|
131
|
+
bumpDevReloadSuppressIfSelfEditing(filePath);
|
|
132
|
+
|
|
133
|
+
const response = await fetch(apiUrl, {
|
|
134
|
+
method: "POST",
|
|
135
|
+
headers: buildToolRequestHeaders(thunkApi, {
|
|
136
|
+
withAuth: true,
|
|
137
|
+
agentKey: context?.agentKey,
|
|
138
|
+
}),
|
|
139
|
+
signal: context?.signal,
|
|
140
|
+
body: JSON.stringify({ filePath, content, overwrite }),
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
const status = response.status;
|
|
144
|
+
const textBody = await response.text();
|
|
145
|
+
let data: any = {};
|
|
146
|
+
try {
|
|
147
|
+
data = textBody ? JSON.parse(textBody) : {};
|
|
148
|
+
} catch {
|
|
149
|
+
// 非 JSON 的情况忽略解析错误
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// 409:文件已存在但未允许覆盖 → 视为“写入冲突”,不抛异常
|
|
153
|
+
if (status === 409) {
|
|
154
|
+
const serverMsg =
|
|
155
|
+
data?.error ||
|
|
156
|
+
"写入文件失败:目标文件已存在,且 overwrite 未设置为 true。";
|
|
157
|
+
|
|
158
|
+
return {
|
|
159
|
+
rawData: {
|
|
160
|
+
applied: false,
|
|
161
|
+
conflict: true,
|
|
162
|
+
fileExists: true,
|
|
163
|
+
filePath,
|
|
164
|
+
overwrite: !!overwrite,
|
|
165
|
+
serverMessage: serverMsg,
|
|
166
|
+
},
|
|
167
|
+
displayData: [
|
|
168
|
+
"⏸️ 检测到目标文件已存在,暂未写入。",
|
|
169
|
+
`- filePath: ${filePath}`,
|
|
170
|
+
`- 服务器消息: ${serverMsg}`,
|
|
171
|
+
"",
|
|
172
|
+
"如需覆盖,请在下一次调用 writeFile 时显式设置 overwrite: true。",
|
|
173
|
+
].join("\n"),
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
if (!response.ok || data?.error) {
|
|
178
|
+
const errMsg =
|
|
179
|
+
data?.error ||
|
|
180
|
+
`writeFile API 请求失败,状态码: ${status}. 响应: ${textBody}`;
|
|
181
|
+
console.error("writeFile API Error:", errMsg);
|
|
182
|
+
throw new Error(errMsg);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
const created: boolean | undefined = data?.created;
|
|
186
|
+
const overwrittenFlag: boolean | undefined = data?.overwritten;
|
|
187
|
+
|
|
188
|
+
let actionDesc = "写入";
|
|
189
|
+
if (created === true) {
|
|
190
|
+
actionDesc = "新建";
|
|
191
|
+
} else if (overwrittenFlag === true) {
|
|
192
|
+
actionDesc = "覆盖";
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
return {
|
|
196
|
+
rawData: {
|
|
197
|
+
applied: true,
|
|
198
|
+
filePath,
|
|
199
|
+
overwrite: !!overwrite,
|
|
200
|
+
// 把这次写入的原始内容也附带上,方便调试
|
|
201
|
+
content,
|
|
202
|
+
// 服务端返回的详细结果(包括 newContent / diff 等)
|
|
203
|
+
response: data,
|
|
204
|
+
},
|
|
205
|
+
displayData: `✅ 已成功${actionDesc}文件: ${filePath}`,
|
|
206
|
+
};
|
|
207
|
+
} catch (error: any) {
|
|
208
|
+
console.error("执行 writeFile 时发生错误:", error);
|
|
209
|
+
throw new Error(
|
|
210
|
+
`写入文件 (${filePath}) 失败:${error?.message || String(error)}`
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// /ai/tools/youtubeScraperTool.ts
|
|
2
|
+
|
|
3
|
+
import { callApifyActor } from "./apifyActorClient";
|
|
4
|
+
|
|
5
|
+
export const youtubeScraperFunctionSchema = {
|
|
6
|
+
name: "youtubeScraper",
|
|
7
|
+
description:
|
|
8
|
+
"使用 Apify 的 YouTube Scraper 抓取 YouTube 视频、频道、播放列表等信息。支持 Direct URLs 或搜索关键词。",
|
|
9
|
+
parameters: {
|
|
10
|
+
type: "object",
|
|
11
|
+
properties: {
|
|
12
|
+
directUrls: {
|
|
13
|
+
type: "array",
|
|
14
|
+
description:
|
|
15
|
+
"可选。视频/频道/播放列表等 URL 列表,将映射到 startUrls。",
|
|
16
|
+
items: { type: "string" },
|
|
17
|
+
},
|
|
18
|
+
searchQueries: {
|
|
19
|
+
type: "array",
|
|
20
|
+
description: "可选。搜索关键词数组,将映射到 searchQueries。",
|
|
21
|
+
items: { type: "string" },
|
|
22
|
+
},
|
|
23
|
+
maxResults: { type: "integer", minimum: 0 },
|
|
24
|
+
maxResultsShorts: { type: "integer", minimum: 0 },
|
|
25
|
+
maxResultStreams: { type: "integer", minimum: 0 },
|
|
26
|
+
downloadSubtitles: { type: "boolean" },
|
|
27
|
+
subtitlesLanguage: {
|
|
28
|
+
type: "string",
|
|
29
|
+
enum: [
|
|
30
|
+
"any",
|
|
31
|
+
"en",
|
|
32
|
+
"de",
|
|
33
|
+
"es",
|
|
34
|
+
"fr",
|
|
35
|
+
"it",
|
|
36
|
+
"ja",
|
|
37
|
+
"ko",
|
|
38
|
+
"nl",
|
|
39
|
+
"pt",
|
|
40
|
+
"ru",
|
|
41
|
+
],
|
|
42
|
+
},
|
|
43
|
+
subtitlesFormat: {
|
|
44
|
+
type: "string",
|
|
45
|
+
enum: ["srt", "vtt", "xml", "plaintext"],
|
|
46
|
+
},
|
|
47
|
+
extraInput: {
|
|
48
|
+
type: "object",
|
|
49
|
+
description: "可选。直接透传给 Apify 的额外 input 字段,方便扩展。",
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
required: [],
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export async function youtubeScraperFunc(
|
|
57
|
+
args: {
|
|
58
|
+
directUrls?: string[];
|
|
59
|
+
searchQueries?: string[];
|
|
60
|
+
maxResults?: number;
|
|
61
|
+
maxResultsShorts?: number;
|
|
62
|
+
maxResultStreams?: number;
|
|
63
|
+
downloadSubtitles?: boolean;
|
|
64
|
+
subtitlesLanguage?: string;
|
|
65
|
+
subtitlesFormat?: string;
|
|
66
|
+
extraInput?: Record<string, any>;
|
|
67
|
+
},
|
|
68
|
+
thunkApi: any
|
|
69
|
+
) {
|
|
70
|
+
const {
|
|
71
|
+
directUrls,
|
|
72
|
+
searchQueries,
|
|
73
|
+
maxResults,
|
|
74
|
+
maxResultsShorts,
|
|
75
|
+
maxResultStreams,
|
|
76
|
+
downloadSubtitles,
|
|
77
|
+
subtitlesLanguage,
|
|
78
|
+
subtitlesFormat,
|
|
79
|
+
extraInput = {},
|
|
80
|
+
} = args;
|
|
81
|
+
|
|
82
|
+
if (
|
|
83
|
+
(!directUrls || directUrls.length === 0) &&
|
|
84
|
+
(!searchQueries || searchQueries.length === 0)
|
|
85
|
+
) {
|
|
86
|
+
throw new Error(
|
|
87
|
+
"YouTube 抓取:至少提供 directUrls 或 searchQueries 之一。"
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const input: any = {
|
|
92
|
+
...extraInput,
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
if (searchQueries?.length) input.searchQueries = searchQueries;
|
|
96
|
+
if (directUrls?.length) input.startUrls = directUrls.map((url) => ({ url }));
|
|
97
|
+
|
|
98
|
+
if (typeof maxResults === "number") input.maxResults = maxResults;
|
|
99
|
+
if (typeof maxResultsShorts === "number")
|
|
100
|
+
input.maxResultsShorts = maxResultsShorts;
|
|
101
|
+
if (typeof maxResultStreams === "number")
|
|
102
|
+
input.maxResultStreams = maxResultStreams;
|
|
103
|
+
if (typeof downloadSubtitles === "boolean")
|
|
104
|
+
input.downloadSubtitles = downloadSubtitles;
|
|
105
|
+
if (typeof subtitlesLanguage === "string")
|
|
106
|
+
input.subtitlesLanguage = subtitlesLanguage;
|
|
107
|
+
if (typeof subtitlesFormat === "string")
|
|
108
|
+
input.subtitlesFormat = subtitlesFormat;
|
|
109
|
+
|
|
110
|
+
return callApifyActor(thunkApi, {
|
|
111
|
+
actorId: "streamers~youtube-scraper",
|
|
112
|
+
input,
|
|
113
|
+
resultType: "datasetItems",
|
|
114
|
+
displayName: "YouTube Scraper",
|
|
115
|
+
});
|
|
116
|
+
}
|