nolo-cli 0.1.40 → 0.1.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (482) hide show
  1. package/README.md +27 -12
  2. package/agent-runtime/agentThread.ts +222 -0
  3. package/agent-runtime/agentThreadAdmission.ts +74 -0
  4. package/agent-runtime/dialogWritePlan.ts +42 -0
  5. package/agent-runtime/hostAdapter.ts +1 -0
  6. package/agent-runtime/hybridRecordStore.ts +5 -3
  7. package/agent-runtime/index.ts +43 -0
  8. package/agent-runtime/localLoop.ts +31 -2
  9. package/agent-runtime/localToolPolicy.ts +1 -0
  10. package/agent-runtime/localWorkspaceTools.ts +1258 -78
  11. package/agent-runtime/noloWorkspaceTools.ts +20 -1
  12. package/agent-runtime/runtimeToolPolicy.ts +1 -5
  13. package/agent-runtime/runtimeToolSurface.ts +1 -0
  14. package/agentAliases.ts +29 -9
  15. package/agentInternalCommandEntries.ts +11 -3
  16. package/agentMachineCommands.ts +1 -0
  17. package/agentRecordCommands.ts +2 -2
  18. package/agentRecordHelpers.ts +59 -6
  19. package/agentRunCommand.ts +84 -19
  20. package/ai/agent/_executeModel.ts +146 -0
  21. package/ai/agent/agentSlice.ts +556 -1
  22. package/ai/agent/appWorkingMemory.ts +126 -0
  23. package/ai/agent/buildEditingContext.ts +378 -0
  24. package/ai/agent/buildSystemPrompt.ts +599 -0
  25. package/ai/agent/canvasEditingContext.ts +49 -0
  26. package/ai/agent/cleanAgentMessages.ts +140 -0
  27. package/ai/agent/cliChatClient.ts +153 -0
  28. package/ai/agent/cliExecutor.ts +264 -46
  29. package/ai/agent/contextCompiler.ts +107 -0
  30. package/ai/agent/contextLayerContract.ts +44 -0
  31. package/ai/agent/createAgentSchema.ts +272 -0
  32. package/ai/agent/currentTimeContext.ts +65 -0
  33. package/ai/agent/executeToolCall.ts +58 -0
  34. package/ai/agent/fetchAgentContexts.ts +42 -0
  35. package/ai/agent/generatePrompt.ts +3 -0
  36. package/ai/agent/getFullChatContextKeys.ts +168 -0
  37. package/ai/agent/guidedCreation/capabilities.ts +84 -0
  38. package/ai/agent/guidedCreation/types.ts +38 -0
  39. package/ai/agent/isLiveAudioOnlyAgent.ts +26 -0
  40. package/ai/agent/liveAudioModel.ts +2 -0
  41. package/ai/agent/pageBuilderHandoffRules.ts +75 -0
  42. package/ai/agent/persistMessageWithFixedId.ts +37 -0
  43. package/ai/agent/planSlice.ts +259 -0
  44. package/ai/agent/referenceUtils.ts +229 -0
  45. package/ai/agent/runAgentBackground.ts +310 -0
  46. package/ai/agent/runAgentClientLoop.ts +164 -0
  47. package/ai/agent/runtimeGuidance.ts +116 -0
  48. package/ai/agent/serverOrigin.ts +7 -0
  49. package/ai/agent/startParallelAgentStreams.ts +424 -0
  50. package/ai/agent/startupProtocol.ts +53 -0
  51. package/ai/agent/streamAgentChatTurn.ts +2135 -0
  52. package/ai/agent/streamAgentChatTurnUtils.ts +923 -0
  53. package/ai/agent/toolFailureGuard.ts +99 -0
  54. package/ai/agent/types.ts +73 -0
  55. package/ai/agent/utils/imageOutput.ts +37 -0
  56. package/ai/agent/utils/publicImageAgentMode.ts +26 -0
  57. package/ai/ai.locale.ts +1165 -0
  58. package/ai/chat/accumulateToolCallChunks.ts +126 -0
  59. package/ai/chat/fetchUtils.ts +143 -0
  60. package/ai/chat/inlineImageUrlsForCustomProvider.ts +122 -0
  61. package/ai/chat/parseApiError.ts +67 -0
  62. package/ai/chat/parseMultilineSSE.ts +95 -0
  63. package/ai/chat/sendOpenAICompletionsRequest.ts +921 -0
  64. package/ai/chat/sendOpenAIResponseRequest.ts +720 -0
  65. package/ai/chat/serverProxyRetry.ts +102 -0
  66. package/ai/chat/shouldUseServerProxy.ts +18 -0
  67. package/ai/chat/streamRetry.ts +46 -0
  68. package/ai/chat/updateTotalUsage.ts +89 -0
  69. package/ai/context/buildReferenceContext.ts +437 -0
  70. package/ai/context/retention.ts +165 -0
  71. package/ai/context/tokenUtils.ts +78 -0
  72. package/ai/llm/agentCapabilities.ts +74 -0
  73. package/ai/llm/deepinfra.ts +79 -0
  74. package/ai/llm/fireworks.ts +68 -0
  75. package/ai/llm/generateRequestBody.ts +165 -0
  76. package/ai/llm/getModelContextWindow.ts +93 -0
  77. package/ai/llm/getPricing.ts +252 -0
  78. package/ai/llm/imagePricing.ts +66 -0
  79. package/ai/llm/isResponseAPIModel.ts +13 -0
  80. package/ai/llm/kimi.ts +22 -0
  81. package/ai/llm/mimo.ts +99 -0
  82. package/ai/llm/mistral.ts +21 -0
  83. package/ai/llm/models.ts +45 -0
  84. package/ai/llm/openrouterModels.ts +31 -0
  85. package/ai/llm/providers.ts +313 -0
  86. package/ai/llm/reasoningModels.ts +27 -0
  87. package/ai/llm/types.ts +82 -0
  88. package/ai/llm/usageRequestOptions.ts +59 -0
  89. package/ai/memory/policy.ts +49 -0
  90. package/ai/memory/queryShared.ts +167 -0
  91. package/ai/memory/recentRelationshipRecap.ts +251 -0
  92. package/ai/memory/remember.ts +111 -0
  93. package/ai/memory/scope.ts +74 -0
  94. package/ai/memory/store.ts +20 -0
  95. package/ai/memory/storeShared.ts +76 -0
  96. package/ai/memory/types.ts +52 -0
  97. package/ai/memory/understanding.ts +341 -0
  98. package/ai/memory/understandingGreeting.ts +264 -0
  99. package/ai/policy/personalizationDialog.ts +333 -0
  100. package/ai/policy/runtimePolicy.ts +526 -0
  101. package/ai/policy/selfUpdateFields.ts +48 -0
  102. package/ai/policy/types.ts +64 -0
  103. package/ai/skills/referenceRuntime.ts +274 -0
  104. package/ai/skills/skillDiagnostics.ts +251 -0
  105. package/ai/skills/skillDocBuilder.ts +139 -0
  106. package/ai/skills/skillSummaryMarker.ts +26 -0
  107. package/ai/token/calculatePrice.ts +576 -0
  108. package/ai/token/missingUsageEstimate.ts +42 -0
  109. package/ai/token/normalizeUsage.ts +124 -0
  110. package/ai/token/openaiImageGenerationUsage.ts +56 -0
  111. package/ai/token/prepareTokenUsageData.ts +93 -0
  112. package/ai/token/resolveBillingTarget.ts +52 -0
  113. package/ai/token/saveTokenRecord.ts +53 -0
  114. package/ai/token/types.ts +103 -0
  115. package/ai/tools/agent/agentTools.ts +214 -0
  116. package/ai/tools/agent/agentUpdateShared.ts +311 -0
  117. package/ai/tools/agent/callAgentTool.ts +139 -0
  118. package/ai/tools/agent/createAgentTool.ts +512 -0
  119. package/ai/tools/agent/createDialogTool.ts +69 -0
  120. package/ai/tools/agent/createSkillAgentTool.ts +62 -0
  121. package/ai/tools/agent/parallelBudget.ts +221 -0
  122. package/ai/tools/agent/prepareAgentDraftTool.ts +159 -0
  123. package/ai/tools/agent/presets/appBuilderPreset.ts +154 -0
  124. package/ai/tools/agent/runLlmTool.ts +96 -0
  125. package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
  126. package/ai/tools/agent/skillAgentArgs.ts +106 -0
  127. package/ai/tools/agent/startAgentDialogTool.ts +54 -0
  128. package/ai/tools/agent/streamParallelAgentsTool.ts +123 -0
  129. package/ai/tools/agent/updateAgentTool.ts +96 -0
  130. package/ai/tools/agent/updateSelfTool.ts +113 -0
  131. package/ai/tools/amazonProductScraperTool.ts +86 -0
  132. package/ai/tools/apifyActorClient.ts +45 -0
  133. package/ai/tools/appEditGuard.ts +372 -0
  134. package/ai/tools/appReadSnapshot.ts +153 -0
  135. package/ai/tools/appTools.ts +1549 -0
  136. package/ai/tools/applyEditTool.ts +259 -0
  137. package/ai/tools/applyLineEditsTool.ts +315 -0
  138. package/ai/tools/browserTools/click.ts +33 -0
  139. package/ai/tools/browserTools/closeSession.ts +29 -0
  140. package/ai/tools/browserTools/common.ts +27 -0
  141. package/ai/tools/browserTools/openSession.ts +48 -0
  142. package/ai/tools/browserTools/readContent.ts +38 -0
  143. package/ai/tools/browserTools/selectOption.ts +46 -0
  144. package/ai/tools/browserTools/typeText.ts +42 -0
  145. package/ai/tools/category/createCategoryTool.ts +66 -0
  146. package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
  147. package/ai/tools/category/updateContentCategoryTool.ts +75 -0
  148. package/ai/tools/cfBrowserTools.ts +319 -0
  149. package/ai/tools/cfSpeechToTextTool.ts +49 -0
  150. package/ai/tools/checkEnvTool.ts +102 -0
  151. package/ai/tools/cloudflareCrawlTool.ts +289 -0
  152. package/ai/tools/codeSearchTool.ts +123 -0
  153. package/ai/tools/codeTools.ts +101 -0
  154. package/ai/tools/convertMarxistsBookTool.ts +103 -0
  155. package/ai/tools/createDocTool.ts +132 -0
  156. package/ai/tools/createSkillDocTool.ts +155 -0
  157. package/ai/tools/createWorkflowTool.ts +154 -0
  158. package/ai/tools/delayTool.ts +31 -0
  159. package/ai/tools/deleteSpacesTool.ts +325 -0
  160. package/ai/tools/deleteSpacesToolModel.ts +159 -0
  161. package/ai/tools/devReloadUtils.ts +29 -0
  162. package/ai/tools/dialogMessageSearch.ts +137 -0
  163. package/ai/tools/doctorSkillTool.ts +72 -0
  164. package/ai/tools/ecommerceScraperTool.ts +86 -0
  165. package/ai/tools/emailTools.ts +549 -0
  166. package/ai/tools/evalSkillTool.ts +92 -0
  167. package/ai/tools/exaSearchTool.ts +63 -0
  168. package/ai/tools/execShellTool.ts +266 -0
  169. package/ai/tools/executeSqlTool.ts +192 -0
  170. package/ai/tools/fetchWebpageSupport.ts +333 -0
  171. package/ai/tools/fetchWebpageTool.ts +97 -0
  172. package/ai/tools/geminiImagePreviewTool.ts +386 -0
  173. package/ai/tools/generateDocxTool.ts +215 -0
  174. package/ai/tools/googleSearchScraperTool.ts +106 -0
  175. package/ai/tools/importDataTool.ts +133 -0
  176. package/ai/tools/importSkillTool.ts +162 -0
  177. package/ai/tools/index.ts +2290 -0
  178. package/ai/tools/jdProductScraperTool.ts +821 -0
  179. package/ai/tools/listUserSpacesTool.ts +113 -0
  180. package/ai/tools/localFilesTool.ts +276 -0
  181. package/ai/tools/marxistsOfflineBook.ts +253 -0
  182. package/ai/tools/modelUsageTools.ts +206 -0
  183. package/ai/tools/noloWorkspaceReadTools.ts +467 -0
  184. package/ai/tools/olmOcrTool.ts +33 -0
  185. package/ai/tools/openaiImageTool.ts +267 -0
  186. package/ai/tools/prepareTools.ts +193 -0
  187. package/ai/tools/readDocTool.ts +88 -0
  188. package/ai/tools/readFileTool.ts +214 -0
  189. package/ai/tools/readTool.ts +194 -0
  190. package/ai/tools/readXPostTool.ts +229 -0
  191. package/ai/tools/readXhsProfileTool.ts +638 -0
  192. package/ai/tools/rememberMemoryTool.ts +84 -0
  193. package/ai/tools/remotionVideoTool.ts +151 -0
  194. package/ai/tools/searchDialogMessagesTool.ts +222 -0
  195. package/ai/tools/searchWorkspaceTool.ts +259 -0
  196. package/ai/tools/skillFollowup.ts +86 -0
  197. package/ai/tools/surfWeatherTool.ts +169 -0
  198. package/ai/tools/table/addTableRowTool.ts +217 -0
  199. package/ai/tools/table/createTableTool.ts +326 -0
  200. package/ai/tools/table/rowTools.ts +386 -0
  201. package/ai/tools/table/schemaTools.ts +244 -0
  202. package/ai/tools/table/shareTableTool.ts +148 -0
  203. package/ai/tools/table/toolShared.ts +129 -0
  204. package/ai/tools/taobaoTmallProductScraperTool.ts +49 -0
  205. package/ai/tools/toolApiClient.ts +279 -0
  206. package/ai/tools/toolPacks.ts +19 -0
  207. package/ai/tools/toolResultError.ts +42 -0
  208. package/ai/tools/toolRunSlice.ts +303 -0
  209. package/ai/tools/toolSchemaCompatibility.ts +53 -0
  210. package/ai/tools/uiAskChoiceTool.ts +104 -0
  211. package/ai/tools/updateContentTitleTool.ts +84 -0
  212. package/ai/tools/updateDocTool.ts +105 -0
  213. package/ai/tools/updateUserPreferenceProfileTool.ts +153 -0
  214. package/ai/tools/wereadGatewayTool.ts +152 -0
  215. package/ai/tools/whisperTool.ts +76 -0
  216. package/ai/tools/writeFileTool.ts +213 -0
  217. package/ai/tools/youtubeScraperTool.ts +116 -0
  218. package/ai/tools/ziweiChartTool.ts +678 -0
  219. package/ai/types.ts +58 -0
  220. package/ai/workflow/workflowExecutor.ts +323 -0
  221. package/ai/workflow/workflowSlice.ts +73 -0
  222. package/ai/workflow/workflowTypes.ts +106 -0
  223. package/app/actions/syncAppRecord.ts +73 -0
  224. package/app/constants/animationSets.ts +21 -0
  225. package/app/constants/appEditor.ts +99 -0
  226. package/app/favorite/deletedFavoriteProjection.ts +31 -0
  227. package/app/favorite/favoriteSlice.ts +690 -0
  228. package/app/favorite/type.ts +43 -0
  229. package/app/hooks/deleteDbKey.ts +254 -0
  230. package/app/i18n/client.ts +13 -0
  231. package/app/i18n/i18n.base.ts +14 -0
  232. package/app/i18n/i18n.config.ts +77 -0
  233. package/app/i18n/index.ts +15 -0
  234. package/app/i18n/mapLanguage.ts +11 -0
  235. package/app/i18n/translations/appBuilder.locale.ts +453 -0
  236. package/app/i18n/translations/error.locale.ts +246 -0
  237. package/app/i18n/translations/interface.locale.ts +2206 -0
  238. package/app/i18n/translations/pricing.locale.ts +397 -0
  239. package/app/i18n/translations/privacy.locale.ts +168 -0
  240. package/app/i18n/translations/seo.locale.ts +129 -0
  241. package/app/i18n/translations/terms.locale.ts +124 -0
  242. package/app/i18n/types.ts +6 -0
  243. package/app/notifications/model.ts +77 -0
  244. package/app/notifications/notificationSlice.ts +141 -0
  245. package/app/reducer.ts +36 -0
  246. package/app/settings/dbActionThunks.ts +34 -0
  247. package/app/settings/defaultSpacePreference.ts +87 -0
  248. package/app/settings/settingSlice.tsx +1212 -0
  249. package/app/settings/settingsRecord.ts +8 -0
  250. package/app/stateViews/runtime.ts +90 -0
  251. package/app/store.ts +55 -0
  252. package/app/theme/colors.ts +280 -0
  253. package/app/theme/fontPreference.ts +77 -0
  254. package/app/theme/theme.config.ts +120 -0
  255. package/app/theme/themeModeBootstrap.ts +123 -0
  256. package/app/types/appSummary.ts +118 -0
  257. package/app/types.ts +358 -0
  258. package/app/utils/appKeys.ts +55 -0
  259. package/app/utils/async.ts +28 -0
  260. package/app/utils/desktopAgentRuntimeTurnClient.ts +75 -0
  261. package/app/utils/env.ts +17 -0
  262. package/app/utils/fileUtils.ts +229 -0
  263. package/app/utils/imageUtils.ts +274 -0
  264. package/app/utils/myContentItems.ts +289 -0
  265. package/app/utils/retryAfter.ts +36 -0
  266. package/app/utils/retryFetch.ts +61 -0
  267. package/app/utils/toast.ts +3 -0
  268. package/auth/action/signUpAction.ts +227 -0
  269. package/auth/adminPermissions.ts +78 -0
  270. package/auth/authSlice.ts +531 -0
  271. package/auth/client/loginRequest.ts +14 -0
  272. package/auth/resetAuthScopedClientState.ts +27 -0
  273. package/auth/routes.ts +183 -0
  274. package/auth/token.ts +63 -0
  275. package/auth/types.ts +40 -0
  276. package/chat/chat.locale.ts +817 -0
  277. package/chat/dialog/actions/addCybotAction.ts +52 -0
  278. package/chat/dialog/actions/addReferenceKeysAction.ts +62 -0
  279. package/chat/dialog/actions/builtinDialogLlm.ts +35 -0
  280. package/chat/dialog/actions/cleanupCliSession.ts +40 -0
  281. package/chat/dialog/actions/createDialogAction.ts +379 -0
  282. package/chat/dialog/actions/createScheduledTaskAction.ts +78 -0
  283. package/chat/dialog/actions/handleSendMessageAction.ts +202 -0
  284. package/chat/dialog/actions/handleSendMessageResolver.ts +27 -0
  285. package/chat/dialog/actions/removeCybotAction.ts +6 -0
  286. package/chat/dialog/actions/removeDialogAgentAction.ts +44 -0
  287. package/chat/dialog/actions/replacePrimaryCybotAction.ts +6 -0
  288. package/chat/dialog/actions/setPrimaryDialogAgentAction.ts +52 -0
  289. package/chat/dialog/actions/updateDialogSummaryAction.ts +430 -0
  290. package/chat/dialog/actions/updateDialogTitleAction.ts +151 -0
  291. package/chat/dialog/actions/updateDialogTitlePolicy.ts +30 -0
  292. package/chat/dialog/actions/updateTokensAction.ts +233 -0
  293. package/chat/dialog/dialogAgents.ts +72 -0
  294. package/chat/dialog/dialogAttachmentCleanup.ts +135 -0
  295. package/chat/dialog/dialogSlice.ts +985 -0
  296. package/chat/dialog/dialogTitle.ts +81 -0
  297. package/chat/dialog/dialogTokenStats.ts +12 -0
  298. package/chat/dialog/dialogUrl.ts +6 -0
  299. package/chat/dialog/goal.ts +108 -0
  300. package/chat/dialog/objectAssistantRegistry.ts +286 -0
  301. package/chat/dialog/schedule.ts +17 -0
  302. package/chat/messages/activityCompletion.ts +97 -0
  303. package/chat/messages/fetchAndCacheMessages.ts +119 -0
  304. package/chat/messages/fetchConvMsgs.ts +51 -0
  305. package/chat/messages/fileUrl.ts +13 -0
  306. package/chat/messages/imagePayloadPersistence.ts +22 -0
  307. package/chat/messages/messageAgent.ts +8 -0
  308. package/chat/messages/messageContent.ts +203 -0
  309. package/chat/messages/messageContract.ts +88 -0
  310. package/chat/messages/messageSlice.ts +1386 -0
  311. package/chat/messages/toolThunks.ts +646 -0
  312. package/chat/messages/types.ts +8 -1
  313. package/chat/messages/web/toolDisplayName.ts +686 -0
  314. package/cli/agentAliases.ts +29 -9
  315. package/cli/agentInternalCommandEntries.ts +11 -3
  316. package/cli/agentMachineCommands.ts +1 -0
  317. package/cli/agentRecordCommands.ts +2 -2
  318. package/cli/agentRecordHelpers.ts +59 -6
  319. package/cli/agentRunCommand.ts +84 -19
  320. package/cli/client/agentRun.ts +92 -261
  321. package/cli/client/localRuntimeAdapter.ts +292 -50
  322. package/cli/commandRegistry.ts +7 -4
  323. package/cli/dialogAttachmentCleanup.ts +151 -0
  324. package/cli/dialogCommands.ts +163 -61
  325. package/cli/dialogInternalCommandEntries.ts +1 -1
  326. package/cli/docCreateCommands.ts +345 -0
  327. package/cli/docInternalCommandEntries.ts +11 -0
  328. package/cli/docPageHelpers.ts +80 -0
  329. package/cli/docSkillHelpers.ts +67 -0
  330. package/cli/docSpaceHelpers.ts +46 -0
  331. package/cli/internalCommandEntries.ts +4 -0
  332. package/cli/machineCommands.ts +18 -34
  333. package/cli/memoryCommands.ts +253 -0
  334. package/cli/memoryInternalCommandEntries.ts +9 -0
  335. package/cli/qoderUsageProbe.ts +252 -0
  336. package/cli/scriptCommandEntries.ts +0 -3
  337. package/cli/secretScan.ts +31 -0
  338. package/cli/tableCommands.ts +248 -13
  339. package/cli/workflowInternalCommandEntries.ts +2 -3
  340. package/client/agentRun.test.ts +119 -83
  341. package/client/agentRun.ts +92 -261
  342. package/client/localRuntimeAdapter.test.ts +894 -32
  343. package/client/localRuntimeAdapter.ts +292 -50
  344. package/commandRegistry.ts +7 -4
  345. package/connector-experimental/capabilities.ts +10 -9
  346. package/core/builtinAgents.ts +209 -0
  347. package/core/config.ts +15 -0
  348. package/core/crypto.ts +51 -0
  349. package/core/generateKeyPairFromSeedV1.ts +15 -0
  350. package/core/generateMainKey.ts +22 -0
  351. package/core/init.ts +41 -0
  352. package/core/localOrigins.ts +8 -0
  353. package/core/password.ts +13 -0
  354. package/core/prefix.ts +23 -0
  355. package/create/editor/transforms/fromMarkdown/index.ts +260 -0
  356. package/create/editor/transforms/fromMarkdown/inline.ts +285 -0
  357. package/create/editor/transforms/fromMarkdown/table.ts +130 -0
  358. package/create/editor/transforms/markdownToSlate.ts +24 -0
  359. package/create/editor/transforms/slateToRenderMarkdown.ts +218 -0
  360. package/create/editor/transforms/slateToSimplifiedMarkdown.ts +224 -0
  361. package/create/editor/transforms/slateToText.ts +33 -0
  362. package/create/editor/utils/slateUtils.ts +233 -0
  363. package/create/space/addSpaceAction.ts +193 -0
  364. package/create/space/category/categoryActions.ts +427 -0
  365. package/create/space/changeSpaceAction.ts +36 -0
  366. package/create/space/constants.ts +8 -0
  367. package/create/space/content/addContentAction.ts +116 -0
  368. package/create/space/content/contentThunks.ts +90 -0
  369. package/create/space/content/deleteContentFromSpaceAction.ts +187 -0
  370. package/create/space/content/deleteMultipleContentAction.ts +112 -0
  371. package/create/space/content/moveContentAction.ts +285 -0
  372. package/create/space/content/updateContentCategoryAction.ts +154 -0
  373. package/create/space/content/updateContentTitleAction.ts +151 -0
  374. package/create/space/content/uploadAndAddFileToSpaceAction.ts +98 -0
  375. package/create/space/contentKeyUtils.ts +117 -0
  376. package/create/space/deleteSpaceAction.ts +276 -0
  377. package/create/space/fetchSpaceAction.ts +70 -0
  378. package/create/space/fetchSpaceSidebarStateAction.ts +26 -0
  379. package/create/space/loadDefaultSpaceAction.ts +57 -0
  380. package/create/space/member/addMemberAction.ts +79 -0
  381. package/create/space/member/fetchUserSpaceMembershipsAction.ts +386 -0
  382. package/create/space/member/memberThunks.ts +47 -0
  383. package/create/space/member/removeMemberAction.ts +67 -0
  384. package/create/space/resolvePreferredSpaceId.ts +113 -0
  385. package/create/space/sidebarVisibleTypes.ts +260 -0
  386. package/create/space/space.locale.ts +1087 -0
  387. package/create/space/spaceAccess.ts +182 -0
  388. package/create/space/spaceCollapsedState.ts +54 -0
  389. package/create/space/spaceKeys.ts +65 -0
  390. package/create/space/spaceSlice.ts +328 -0
  391. package/create/space/spaceThunks.ts +410 -0
  392. package/create/space/types.ts +27 -0
  393. package/create/space/updateSpaceAction.ts +107 -0
  394. package/create/space/utils/permissions.ts +47 -0
  395. package/create/types.ts +21 -0
  396. package/database/actions/agentReadResolution.ts +33 -0
  397. package/database/actions/common.ts +243 -0
  398. package/database/actions/deleteFile.ts +40 -0
  399. package/database/actions/fileContent.ts +125 -0
  400. package/database/actions/patch.ts +155 -0
  401. package/database/actions/read.ts +358 -0
  402. package/database/actions/readAndWait.ts +260 -0
  403. package/database/actions/readRequestManager.ts +120 -0
  404. package/database/actions/readResolution.ts +125 -0
  405. package/database/actions/remove.ts +94 -0
  406. package/database/actions/replication.ts +477 -0
  407. package/database/actions/upload.ts +186 -0
  408. package/database/actions/upsert.ts +56 -0
  409. package/database/actions/write.ts +146 -0
  410. package/database/authority/ownerKey.ts +80 -0
  411. package/database/authority/recordAuthority.ts +67 -0
  412. package/database/authority/userAuthorityRegistry.ts +54 -0
  413. package/database/client/fetchUserData.ts +61 -0
  414. package/database/dbActionThunks.ts +1 -0
  415. package/database/dbSlice.ts +149 -0
  416. package/database/fileRing.ts +51 -0
  417. package/database/fileStorage.ts +232 -0
  418. package/database/fileUrl.ts +34 -0
  419. package/database/keys.ts +767 -0
  420. package/database/queryPrefixes.ts +14 -0
  421. package/database/requests.ts +443 -0
  422. package/database/runtimeServerContext.ts +54 -0
  423. package/database/tenantPlacement.ts +57 -0
  424. package/database/userPreferenceRegister.ts +131 -0
  425. package/database/utils/ulid.ts +1 -0
  426. package/dialogAttachmentCleanup.ts +151 -0
  427. package/dialogCommands.ts +163 -61
  428. package/dialogInternalCommandEntries.ts +1 -1
  429. package/docCreateCommands.ts +345 -0
  430. package/docInternalCommandEntries.ts +11 -0
  431. package/docPageHelpers.ts +80 -0
  432. package/docSkillHelpers.ts +67 -0
  433. package/docSpaceHelpers.ts +46 -0
  434. package/integrations/anthropic/anthropicModels.ts +47 -0
  435. package/integrations/deepseek/models.ts +37 -0
  436. package/integrations/google/models.ts +341 -0
  437. package/integrations/openai/chatCompletionStreamMode.ts +10 -0
  438. package/integrations/openai/filterAndCleanMessages.ts +284 -0
  439. package/integrations/openai/flexTier.ts +102 -0
  440. package/integrations/openai/generateOpenAIRequestBody.ts +271 -0
  441. package/integrations/openai/generateResponseRequestBody.ts +77 -0
  442. package/integrations/openai/models.ts +271 -0
  443. package/integrations/openai/providerBodyCompatibility.ts +23 -0
  444. package/integrations/openai/responsesHelpers.ts +297 -0
  445. package/integrations/x-reader/types.ts +109 -0
  446. package/integrations/xai/models.ts +13 -0
  447. package/integrations/xhs-reader/redaction.ts +68 -0
  448. package/integrations/xhs-reader/types.ts +277 -0
  449. package/integrations/xhs-reader/url.ts +80 -0
  450. package/internalCommandEntries.ts +4 -0
  451. package/machineCommands.ts +18 -34
  452. package/memoryCommands.ts +253 -0
  453. package/memoryInternalCommandEntries.ts +9 -0
  454. package/package.json +454 -9
  455. package/qoderUsageProbe.ts +252 -0
  456. package/render/contentIcon/types.ts +167 -0
  457. package/render/page/createPageAction.ts +183 -0
  458. package/render/page/docSlice.ts +495 -0
  459. package/render/page/types.ts +19 -0
  460. package/render/table/createTableAction.ts +274 -0
  461. package/render/table/deleteTableAction.ts +193 -0
  462. package/render/table/fetchAndCacheTableRows.ts +174 -0
  463. package/render/table/tableSlice.ts +1167 -0
  464. package/render/table/toolValueUtils.ts +363 -0
  465. package/render/table/types.ts +262 -0
  466. package/render/table/utils/tableSerialization.ts +50 -0
  467. package/scriptCommandEntries.ts +0 -3
  468. package/secretScan.ts +31 -0
  469. package/server/handlers/agentRun/types.ts +105 -0
  470. package/share/action.ts +225 -0
  471. package/share/helpers.ts +302 -0
  472. package/share/keys.ts +243 -0
  473. package/share/publicSharePolicy.ts +27 -0
  474. package/share/shareSlice.ts +53 -0
  475. package/share/types.ts +100 -0
  476. package/tableCommands.ts +248 -13
  477. package/workflowInternalCommandEntries.ts +2 -3
  478. package/ai/tools/agent/taskRunTool.ts +0 -112
  479. package/cli/client/taskRunPrompt.ts +0 -27
  480. package/cli/taskRunCommand.ts +0 -265
  481. package/client/taskRunPrompt.ts +0 -27
  482. package/taskRunCommand.ts +0 -265
@@ -0,0 +1,289 @@
1
+ import type { AppSummary, AppSummaryRecord } from "../types/appSummary";
2
+ import { toAppSummary } from "../types/appSummary";
3
+ import { isAppRouteKey, resolveAppRouteKey } from "../utils/appKeys";
4
+ import { normalizeAppRouteId } from "../../create/space/contentKeyUtils";
5
+ import { DataType } from "../../create/types";
6
+ import { ContentType } from "../types";
7
+
8
+ export type ContentTab =
9
+ | "all"
10
+ | "app"
11
+ | "agent"
12
+ | "dialog"
13
+ | "page"
14
+ | "image"
15
+ | "document"
16
+ | "video"
17
+ | "audio"
18
+ | "table"
19
+ | "file";
20
+
21
+ export type OwnedAppContentItem = {
22
+ source: "owned-app";
23
+ title: string;
24
+ type: ContentType.APP;
25
+ contentKey: string;
26
+ pinned: false;
27
+ createdAt: string | number;
28
+ updatedAt: string | number;
29
+ spaceId: string | null;
30
+ spaceName: string;
31
+ serverOrigin?: string;
32
+ app: AppSummary;
33
+ };
34
+
35
+ export type QueriedContentItem = {
36
+ source: "user-data";
37
+ title: string;
38
+ type: string;
39
+ fileCategory?: "image" | "document" | "video" | "audio" | "other";
40
+ mimeType?: string;
41
+ fileSize?: number;
42
+ originalName?: string;
43
+ contentKey: string;
44
+ pinned: boolean;
45
+ createdAt: string | number;
46
+ updatedAt: string | number;
47
+ spaceId: string | null;
48
+ spaceName: string;
49
+ serverOrigin?: string;
50
+ };
51
+
52
+ export type MyContentListItem = QueriedContentItem | OwnedAppContentItem;
53
+
54
+ export const MY_CONTENT_USER_DATA_TYPES: DataType[] = [
55
+ DataType.APP,
56
+ DataType.DOC,
57
+ DataType.DIALOG,
58
+ DataType.IMAGE,
59
+ DataType.FILE,
60
+ DataType.TABLE,
61
+ DataType.AGENT,
62
+ DataType.CYBOT,
63
+ ];
64
+
65
+ type UserContentRecord = Partial<AppSummaryRecord> & {
66
+ dbKey?: string;
67
+ contentKey?: string;
68
+ type?: string;
69
+ fileCategory?: "image" | "document" | "video" | "audio" | "other";
70
+ mimeType?: string;
71
+ fileSize?: number;
72
+ originalName?: string;
73
+ title?: string;
74
+ displayName?: string;
75
+ createdAt?: string | number;
76
+ updatedAt?: string | number;
77
+ created?: string | number;
78
+ updated_at?: string | number;
79
+ pinned?: boolean;
80
+ spaceId?: string | null;
81
+ serverOrigin?: string;
82
+ };
83
+
84
+ const normalizeText = (value: unknown): string =>
85
+ typeof value === "string" ? value.trim() : "";
86
+
87
+ export const resolveUserContentRecordKey = (record: UserContentRecord): string => {
88
+ const contentKey = normalizeText(record.contentKey);
89
+ if (contentKey) return contentKey;
90
+ const dbKey = normalizeText(record.dbKey);
91
+ if (dbKey) return dbKey;
92
+ const appKey = normalizeText(record.appKey);
93
+ if (appKey) return appKey;
94
+ return resolveAppRouteKey(undefined, normalizeText(record.appId)) ?? "";
95
+ };
96
+
97
+ export const isUserContentAppRecord = (record: UserContentRecord): boolean => {
98
+ const normalizedType = normalizeText(record.type).toLowerCase();
99
+ const canonicalKey = resolveUserContentRecordKey(record);
100
+ return normalizedType === ContentType.APP || isAppRouteKey(canonicalKey);
101
+ };
102
+
103
+ export const resolveMyContentTab = (
104
+ item: Pick<MyContentListItem, "type" | "contentKey"> & {
105
+ fileCategory?: QueriedContentItem["fileCategory"];
106
+ }
107
+ ): ContentTab => {
108
+ const normalizedType = item.type?.toLowerCase();
109
+ const contentKey = item.contentKey;
110
+
111
+ if (normalizedType === ContentType.APP || contentKey.startsWith("app-")) return "app";
112
+ if (
113
+ normalizedType === ContentType.AGENT ||
114
+ normalizedType === "cybot" ||
115
+ contentKey.startsWith("agent-") ||
116
+ contentKey.startsWith("cybot-")
117
+ ) {
118
+ return "agent";
119
+ }
120
+ if (normalizedType === ContentType.DIALOG || contentKey.startsWith("dialog-")) return "dialog";
121
+ if (normalizedType === ContentType.DOC || contentKey.startsWith("page-")) return "page";
122
+ if (
123
+ normalizedType === ContentType.IMAGE ||
124
+ contentKey.startsWith("image-") ||
125
+ (normalizedType === ContentType.FILE && item.fileCategory === "image")
126
+ ) {
127
+ return "image";
128
+ }
129
+ if (normalizedType === ContentType.FILE && item.fileCategory === "document") {
130
+ return "document";
131
+ }
132
+ if (normalizedType === ContentType.FILE && item.fileCategory === "video") {
133
+ return "video";
134
+ }
135
+ if (normalizedType === ContentType.FILE && item.fileCategory === "audio") {
136
+ return "audio";
137
+ }
138
+ if (normalizedType === "table" || contentKey.startsWith("meta-")) return "table";
139
+ return "file";
140
+ };
141
+
142
+ const toTimestamp = (value: string | number) =>
143
+ typeof value === "number" ? value : Date.parse(value) || 0;
144
+
145
+ const normalizeSpaceId = (spaceId: unknown): string | null => {
146
+ return typeof spaceId === "string" && spaceId.trim().length > 0 ? spaceId : null;
147
+ };
148
+
149
+ const resolveRecordTimestamp = (record: UserContentRecord): string | number =>
150
+ record.updatedAt ??
151
+ record.updated_at ??
152
+ record.createdAt ??
153
+ record.created ??
154
+ 0;
155
+
156
+ export function buildMyContentItemsFromUserData(
157
+ records: UserContentRecord[],
158
+ currentServer: string,
159
+ spaceNameById: Map<string, string>,
160
+ myAppsLabel: string,
161
+ fallbackSpaceLabel: string
162
+ ): MyContentListItem[] {
163
+ const items = records.flatMap((record): MyContentListItem[] => {
164
+ const contentKey = resolveUserContentRecordKey(record);
165
+ const normalizedType = normalizeText(record.type).toLowerCase();
166
+ const isAppRecord = isUserContentAppRecord(record);
167
+ const contentType = isAppRecord ? ContentType.APP : normalizedType;
168
+ const timestamp = resolveRecordTimestamp(record);
169
+ const spaceId = normalizeSpaceId(record.spaceId);
170
+ const spaceName = spaceId
171
+ ? spaceNameById.get(spaceId) ?? spaceId
172
+ : isAppRecord
173
+ ? myAppsLabel
174
+ : fallbackSpaceLabel;
175
+
176
+ if (isAppRecord) {
177
+ const app = toAppSummary(
178
+ {
179
+ ...record,
180
+ appKey:
181
+ typeof record.appKey === "string" && record.appKey.trim().length > 0
182
+ ? record.appKey
183
+ : contentKey,
184
+ dbKey: contentKey,
185
+ },
186
+ currentServer
187
+ );
188
+ if (!app || !(app.appKey || app.appId)) return [];
189
+ return [
190
+ {
191
+ source: "owned-app",
192
+ title: typeof app.name === "string" && app.name.trim() ? app.name : contentKey,
193
+ type: ContentType.APP,
194
+ contentKey: app.appKey ?? normalizeAppRouteId(app.appId ?? ""),
195
+ pinned: false,
196
+ createdAt: timestamp,
197
+ updatedAt: timestamp,
198
+ spaceId,
199
+ spaceName,
200
+ serverOrigin: app.serverOrigin,
201
+ app,
202
+ },
203
+ ];
204
+ }
205
+
206
+ if (!contentKey || !contentType) return [];
207
+
208
+ const title = normalizeText(record.title) ||
209
+ normalizeText(record.displayName) ||
210
+ normalizeText(record.name) ||
211
+ contentKey;
212
+
213
+ return [
214
+ {
215
+ source: "user-data",
216
+ title,
217
+ type: contentType,
218
+ fileCategory: record.fileCategory,
219
+ mimeType: typeof record.mimeType === "string" ? record.mimeType : undefined,
220
+ fileSize: typeof record.fileSize === "number" ? record.fileSize : undefined,
221
+ originalName:
222
+ typeof record.originalName === "string" && record.originalName.trim().length > 0
223
+ ? record.originalName
224
+ : undefined,
225
+ contentKey,
226
+ pinned: Boolean(record.pinned),
227
+ createdAt: record.createdAt ?? record.created ?? 0,
228
+ updatedAt: timestamp,
229
+ spaceId,
230
+ spaceName,
231
+ serverOrigin:
232
+ typeof record.serverOrigin === "string" && record.serverOrigin.trim().length > 0
233
+ ? record.serverOrigin
234
+ : undefined,
235
+ },
236
+ ];
237
+ });
238
+
239
+ return items.sort(
240
+ (left, right) => toTimestamp(right.updatedAt) - toTimestamp(left.updatedAt)
241
+ );
242
+ }
243
+
244
+ const previewItemKey = (item: MyContentListItem): string =>
245
+ `${item.source}:${item.contentKey}:${item.spaceId ?? "none"}`;
246
+
247
+ export function buildMyContentPreviewItems(
248
+ items: MyContentListItem[],
249
+ limit?: number,
250
+ activeTab: ContentTab = "all"
251
+ ): MyContentListItem[] {
252
+ if (typeof limit !== "number") return items;
253
+ if (activeTab !== "all") return items.slice(0, limit);
254
+
255
+ const previewPriority: ContentTab[] = [
256
+ "app",
257
+ "agent",
258
+ "dialog",
259
+ "page",
260
+ "table",
261
+ "image",
262
+ "document",
263
+ "video",
264
+ "audio",
265
+ "file",
266
+ ];
267
+ const selected: MyContentListItem[] = [];
268
+ const selectedKeys = new Set<string>();
269
+
270
+ const pushIfNeeded = (item: MyContentListItem | undefined) => {
271
+ if (!item || selected.length >= limit) return;
272
+ const key = previewItemKey(item);
273
+ if (selectedKeys.has(key)) return;
274
+ selected.push(item);
275
+ selectedKeys.add(key);
276
+ };
277
+
278
+ for (const tab of previewPriority) {
279
+ pushIfNeeded(items.find((item) => resolveMyContentTab(item) === tab));
280
+ if (selected.length >= limit) return selected;
281
+ }
282
+
283
+ for (const item of items) {
284
+ pushIfNeeded(item);
285
+ if (selected.length >= limit) break;
286
+ }
287
+
288
+ return selected;
289
+ }
@@ -0,0 +1,36 @@
1
+ type HeaderLike = Pick<Headers, "get"> | null | undefined;
2
+
3
+ const normalizePositiveMs = (value: unknown, fallbackMs: number) => {
4
+ const parsed = Number(value);
5
+ return Number.isFinite(parsed) && parsed >= 0 ? Math.round(parsed) : fallbackMs;
6
+ };
7
+
8
+ export const parseRetryAfterHeaderMs = (
9
+ value: string | null | undefined,
10
+ nowMs = Date.now()
11
+ ) => {
12
+ if (typeof value !== "string" || !value.trim()) return null;
13
+
14
+ const trimmed = value.trim();
15
+ const seconds = Number(trimmed);
16
+ if (Number.isFinite(seconds) && seconds >= 0) {
17
+ return Math.round(seconds * 1_000);
18
+ }
19
+
20
+ const parsedDateMs = Date.parse(trimmed);
21
+ if (Number.isFinite(parsedDateMs)) {
22
+ return Math.max(0, parsedDateMs - nowMs);
23
+ }
24
+
25
+ return null;
26
+ };
27
+
28
+ export const resolveRetryAfterMs = (
29
+ headers: HeaderLike,
30
+ fallbackMs: number,
31
+ bodyRetryAfterMs?: unknown
32
+ ) => {
33
+ const headerDelayMs = parseRetryAfterHeaderMs(headers?.get("Retry-After"));
34
+ if (headerDelayMs !== null) return headerDelayMs;
35
+ return normalizePositiveMs(bodyRetryAfterMs, fallbackMs);
36
+ };
@@ -0,0 +1,61 @@
1
+ export const TRANSIENT_READ_RETRY_STATUSES = new Set([502, 503, 504]);
2
+
3
+ type RetryFetchOptions = {
4
+ delaysMs?: number[];
5
+ fetchImpl?: typeof fetch;
6
+ retryStatuses?: Set<number>;
7
+ sleep?: (ms: number) => Promise<void>;
8
+ };
9
+
10
+ const DEFAULT_RETRY_DELAYS_MS = [300, 1000];
11
+
12
+ const sleep = (ms: number): Promise<void> =>
13
+ new Promise((resolve) => {
14
+ setTimeout(resolve, ms);
15
+ });
16
+
17
+ const getRequestMethod = (input: RequestInfo | URL, init?: RequestInit): string => {
18
+ if (init?.method) return init.method.toUpperCase();
19
+ if (typeof Request !== "undefined" && input instanceof Request) {
20
+ return input.method.toUpperCase();
21
+ }
22
+ return "GET";
23
+ };
24
+
25
+ const isRetryableReadMethod = (method: string): boolean =>
26
+ method === "GET" || method === "HEAD";
27
+
28
+ const isAbortError = (error: unknown): boolean =>
29
+ error instanceof DOMException
30
+ ? error.name === "AbortError"
31
+ : error instanceof Error && error.name === "AbortError";
32
+
33
+ export const fetchWithTransientReadRetry = async (
34
+ input: RequestInfo | URL,
35
+ init?: RequestInit,
36
+ options: RetryFetchOptions = {}
37
+ ): Promise<Response> => {
38
+ const method = getRequestMethod(input, init);
39
+ const canRetry = isRetryableReadMethod(method);
40
+ const delaysMs = options.delaysMs ?? DEFAULT_RETRY_DELAYS_MS;
41
+ const retryStatuses = options.retryStatuses ?? TRANSIENT_READ_RETRY_STATUSES;
42
+ const fetchImpl = options.fetchImpl ?? fetch;
43
+ const wait = options.sleep ?? sleep;
44
+
45
+ for (let attempt = 0; ; attempt += 1) {
46
+ try {
47
+ const response = await fetchImpl(input, init);
48
+ const shouldRetry =
49
+ canRetry &&
50
+ retryStatuses.has(response.status) &&
51
+ attempt < delaysMs.length;
52
+
53
+ if (!shouldRetry) return response;
54
+ } catch (error) {
55
+ const shouldRetry = canRetry && !isAbortError(error) && attempt < delaysMs.length;
56
+ if (!shouldRetry) throw error;
57
+ }
58
+
59
+ await wait(delaysMs[attempt]);
60
+ }
61
+ };
@@ -0,0 +1,3 @@
1
+ import { toast as hotToast } from "react-hot-toast";
2
+ export const toast = hotToast;
3
+ export default hotToast;
@@ -0,0 +1,227 @@
1
+ // 文件路径: authSlice.ts(只包含与 signUpAction 相关部分)
2
+
3
+ import {
4
+ selectRemoteServer,
5
+ selectRemoteSyncServers,
6
+ } from "../../app/settings/settingSlice";
7
+ import { resetAuthScopedClientState } from "../resetAuthScopedClientState";
8
+
9
+ import { verifySignedMessage } from "../../core/crypto";
10
+ import { generateUserIdV1 } from "../../core/generateMainKey";
11
+ import { buildPersistentAuthTokenPayload, signToken, parseToken } from "../token";
12
+ import { API_VERSION } from "../../database/config";
13
+ import { hashPasswordV1 } from "../../core/password";
14
+ import { generateKeyPairFromSeedV1 } from "../../core/generateKeyPairFromSeedV1";
15
+ import { getAllServers } from "../../database/actions/common";
16
+
17
+ const TIMEOUT = 5000;
18
+
19
+ type SignUpSendData = {
20
+ username: string;
21
+ publicKey: string;
22
+ locale: string;
23
+ email?: string;
24
+ inviterId?: string;
25
+ clientIp?: string | null;
26
+ };
27
+
28
+ const getSignUpErrorMessage = async (response: Response): Promise<string> => {
29
+ try {
30
+ const payload = await response.clone().json();
31
+ if (typeof payload?.error === "string" && payload.error.trim()) {
32
+ return payload.error;
33
+ }
34
+ if (typeof payload?.message === "string" && payload.message.trim()) {
35
+ return payload.message;
36
+ }
37
+ } catch {
38
+ // Fall back to plain text below.
39
+ }
40
+
41
+ try {
42
+ const text = (await response.text()).trim();
43
+ if (text) return text;
44
+ } catch {
45
+ // Ignore text parsing errors and use the status fallback.
46
+ }
47
+
48
+ return `注册失败,服务器响应状态码:${response.status}`;
49
+ };
50
+
51
+ // 获取客户端公网 IP(失败时返回 null,不阻塞注册流程)
52
+ const getPublicIp = async (): Promise<string | null> => {
53
+ try {
54
+ const controller = new AbortController();
55
+ const timer = setTimeout(() => controller.abort(), 1500);
56
+
57
+ const res = await fetch("https://api.ipify.org?format=json", {
58
+ signal: controller.signal,
59
+ });
60
+
61
+ clearTimeout(timer);
62
+
63
+ if (!res.ok) return null;
64
+
65
+ const data = await res.json();
66
+ return data?.ip || null;
67
+ } catch {
68
+ return null;
69
+ }
70
+ };
71
+
72
+ const signUpToServer = async (
73
+ server: string,
74
+ sendData: SignUpSendData,
75
+ nolotusPubKey: string,
76
+ signal?: AbortSignal
77
+ ) => {
78
+ const response = await fetch(`${server}${API_VERSION}/users/signup`, {
79
+ method: "POST",
80
+ headers: {
81
+ "Content-Type": "application/json",
82
+ ...(sendData?.clientIp
83
+ ? { "X-Client-IP": String(sendData.clientIp) }
84
+ : {}),
85
+ },
86
+ body: JSON.stringify(sendData),
87
+ signal,
88
+ });
89
+
90
+ if (!response.ok) {
91
+ throw new Error(await getSignUpErrorMessage(response));
92
+ }
93
+
94
+ const { encryptedData } = await response.json();
95
+ const decryptedData = await verifySignedMessage(
96
+ encryptedData,
97
+ nolotusPubKey
98
+ );
99
+ const result = JSON.parse(decryptedData);
100
+ return result;
101
+ };
102
+
103
+ const signUpToBackupServers = (
104
+ servers: string[],
105
+ sendData: SignUpSendData,
106
+ nolotusPubKey: string
107
+ ) => {
108
+ servers.forEach((server) => {
109
+ const abortController = new AbortController();
110
+ const timeoutId = setTimeout(
111
+ () => abortController.abort(),
112
+ TIMEOUT
113
+ );
114
+
115
+ signUpToServer(server, sendData, nolotusPubKey, abortController.signal)
116
+ .then((result) => {
117
+ clearTimeout(timeoutId);
118
+ if (!result) {
119
+ // 备份注册失败时,此处可按需记录日志或上报
120
+ }
121
+ })
122
+ .catch(() => {
123
+ clearTimeout(timeoutId);
124
+ });
125
+ });
126
+ };
127
+
128
+ export const signUpAction = async (user: any, thunkAPI: any) => {
129
+ const { username, locale, password, email, inviterId } = user;
130
+ const state = thunkAPI.getState();
131
+ const tokenManager = thunkAPI.extra.tokenManager;
132
+
133
+ // 1) 本地生成密钥对
134
+ const encryptionKey = await hashPasswordV1(password);
135
+ const { publicKey, secretKey } = generateKeyPairFromSeedV1(
136
+ username + encryptionKey + locale
137
+ );
138
+
139
+ // 2) 获取客户端公网 IP(失败则为 null)
140
+ const clientIp = await getPublicIp();
141
+
142
+ const sendData: SignUpSendData = {
143
+ username,
144
+ publicKey,
145
+ locale,
146
+ email,
147
+ inviterId,
148
+ clientIp,
149
+ };
150
+
151
+ const nolotusPubKey = "pqjbGua2Rp-wkh3Vip1EBV6p4ggZWtWvGyNC37kKPus";
152
+
153
+ const currentServer = selectRemoteServer(state);
154
+ const configuredSyncServers = selectRemoteSyncServers(state) ?? [];
155
+
156
+ // 3) 先在当前 server 上完成主注册
157
+ // 使用 getAllServers 只传当前服务器,做一次规范化 + 在线判断
158
+ const mainServers = getAllServers(currentServer, []);
159
+ const mainServer = mainServers[0];
160
+
161
+ if (!mainServer) {
162
+ throw new Error("No available server for sign up (possibly offline).");
163
+ }
164
+
165
+ const mainAbortController = new AbortController();
166
+ const mainTimeoutId = setTimeout(() => mainAbortController.abort(), TIMEOUT);
167
+ let remoteData: any;
168
+ try {
169
+ remoteData = await signUpToServer(
170
+ mainServer,
171
+ sendData,
172
+ nolotusPubKey,
173
+ mainAbortController.signal
174
+ );
175
+ } finally {
176
+ clearTimeout(mainTimeoutId);
177
+ }
178
+
179
+ if (!remoteData) {
180
+ throw new Error("Failed to register on current server");
181
+ }
182
+
183
+ // 4) 本地重新计算 userId,校验服务端回包一致性
184
+ const localUserId = generateUserIdV1(publicKey, username, locale);
185
+ const isValid =
186
+ remoteData.publicKey === publicKey &&
187
+ remoteData.username === username &&
188
+ remoteData.userId === localUserId;
189
+
190
+ if (!isValid) {
191
+ throw new Error("Server data does not match local data");
192
+ }
193
+
194
+ // 5) 异步向备份服务器同步注册
195
+ // - 仅使用 settings.syncServers(去掉 currentServer)
196
+ // - 使用 getAllServers(undefined, syncServers) 做去重和 URL 规范化
197
+ const backupCandidates = getAllServers(undefined, configuredSyncServers);
198
+ const backupServers = backupCandidates.filter((s) => s !== mainServer);
199
+
200
+ if (backupServers.length > 0) {
201
+ Promise.resolve().then(() => {
202
+ signUpToBackupServers(backupServers, sendData, nolotusPubKey);
203
+ });
204
+ }
205
+
206
+ // 6) 生成本地登录 token
207
+ const nowSec = Math.floor(Date.now() / 1000);
208
+ const token = signToken(
209
+ buildPersistentAuthTokenPayload(
210
+ {
211
+ userId: localUserId,
212
+ username,
213
+ publicKey,
214
+ tokenVersion: Number.isFinite(remoteData.tokenVersion)
215
+ ? Math.max(0, Math.floor(remoteData.tokenVersion))
216
+ : 0,
217
+ },
218
+ nowSec
219
+ ),
220
+ secretKey
221
+ );
222
+ await resetAuthScopedClientState(thunkAPI.dispatch);
223
+ await tokenManager.storeToken(token);
224
+ const parsedUser = parseToken(token);
225
+
226
+ return { user: parsedUser, token };
227
+ };
@@ -0,0 +1,78 @@
1
+ export const ADMIN_PERMISSION_DEFINITIONS = [
2
+ {
3
+ key: "usageManagement",
4
+ label: "用量管理",
5
+ shortLabel: "用量",
6
+ description: "查看用量报表、模型与提供商用量相关数据",
7
+ },
8
+ {
9
+ key: "growthStats",
10
+ label: "增长统计",
11
+ shortLabel: "增长",
12
+ description: "查看 7 天/30 天活跃、新增用户与增长趋势",
13
+ },
14
+ ] as const;
15
+
16
+ export type AdminPermissionKey = (typeof ADMIN_PERMISSION_DEFINITIONS)[number]["key"];
17
+
18
+ export type AdminPermissions = Partial<Record<AdminPermissionKey, boolean>>;
19
+
20
+ const ADMIN_PERMISSION_KEYS = new Set<AdminPermissionKey>(
21
+ ADMIN_PERMISSION_DEFINITIONS.map((definition) => definition.key)
22
+ );
23
+
24
+ export const isAdminPermissionKey = (value: string): value is AdminPermissionKey =>
25
+ ADMIN_PERMISSION_KEYS.has(value as AdminPermissionKey);
26
+
27
+ export const hasUsageManagementPermission = (value: unknown): boolean => {
28
+ return hasAdminPermission(value, "usageManagement");
29
+ };
30
+
31
+ export const hasGrowthStatsPermission = (value: unknown): boolean => {
32
+ return hasAdminPermission(value, "growthStats");
33
+ };
34
+
35
+ export const hasAdminPermission = (
36
+ value: unknown,
37
+ permissionKey: AdminPermissionKey
38
+ ): boolean => {
39
+ if (!value || typeof value !== "object") return false;
40
+ const permissions = (value as { adminPermissions?: AdminPermissions | null })
41
+ .adminPermissions;
42
+ return permissions?.[permissionKey] === true;
43
+ };
44
+
45
+ export const mergeAdminPermissions = (
46
+ current: unknown,
47
+ patch: Partial<AdminPermissions>
48
+ ): AdminPermissions => ({
49
+ ...(current && typeof current === "object" ? (current as AdminPermissions) : {}),
50
+ ...patch,
51
+ });
52
+
53
+ export const parseAdminPermissionsPatch = (
54
+ value: unknown
55
+ ):
56
+ | { ok: true; patch: Partial<AdminPermissions> }
57
+ | { ok: false; error: string } => {
58
+ if (!value || typeof value !== "object" || Array.isArray(value)) {
59
+ return { ok: false, error: "admin permissions patch must be an object" };
60
+ }
61
+
62
+ const patch: Partial<AdminPermissions> = {};
63
+ for (const [key, rawValue] of Object.entries(value)) {
64
+ if (!isAdminPermissionKey(key)) {
65
+ return { ok: false, error: `Unsupported admin permission: ${key}` };
66
+ }
67
+ if (typeof rawValue !== "boolean") {
68
+ return { ok: false, error: `${key} must be boolean` };
69
+ }
70
+ patch[key] = rawValue;
71
+ }
72
+
73
+ if (Object.keys(patch).length === 0) {
74
+ return { ok: false, error: "admin permissions patch cannot be empty" };
75
+ }
76
+
77
+ return { ok: true, patch };
78
+ };