nolo-cli 0.1.13 → 0.1.15

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