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,105 @@
1
+ import type { MemoryItem } from "./types";
2
+
3
+ const CJK_SEQUENCE_REGEX = /[\u3400-\u4dbf\u4e00-\u9fff]+/g;
4
+ const MEMORY_IDENTIFIER_REGEX = /\b(?:memory|noise)-[a-z0-9][a-z0-9-]*/gi;
5
+
6
+ const buildCjkTokens = (text: string): string[] => {
7
+ const sequences = text.match(CJK_SEQUENCE_REGEX) ?? [];
8
+ const tokens: string[] = [];
9
+
10
+ for (const sequence of sequences) {
11
+ if (sequence.length >= 2) {
12
+ tokens.push(sequence);
13
+ }
14
+ for (let index = 0; index < sequence.length - 1; index += 1) {
15
+ tokens.push(sequence.slice(index, index + 2));
16
+ }
17
+ }
18
+
19
+ return tokens;
20
+ };
21
+
22
+ const tokenize = (text: string): string[] => {
23
+ const normalized = text.toLowerCase();
24
+ const wordTokens = normalized
25
+ .split(/[\s,.;:!?()[\]{}"'`,。!?:;、]+/)
26
+ .map((token) => token.trim())
27
+ .filter((token) => token.length >= 2);
28
+
29
+ return [...wordTokens, ...buildCjkTokens(normalized)];
30
+ };
31
+
32
+ const keywordScore = (query: string, item: MemoryItem): number => {
33
+ const queryTokens = new Set(tokenize(query));
34
+ if (queryTokens.size === 0) return 0;
35
+ const haystack = new Set([
36
+ ...tokenize(item.content),
37
+ ...(item.tags ?? []).map((tag) => tag.toLowerCase()),
38
+ item.patternKey?.toLowerCase() ?? "",
39
+ ]);
40
+ let matches = 0;
41
+ for (const token of queryTokens) {
42
+ if (haystack.has(token)) matches += 1;
43
+ }
44
+ return Math.min(1, matches / Math.max(2, queryTokens.size));
45
+ };
46
+
47
+ const identifierScore = (query: string, item: MemoryItem): number => {
48
+ const identifiers = query.match(MEMORY_IDENTIFIER_REGEX) ?? [];
49
+ if (identifiers.length === 0) return 0;
50
+ const content = item.content.toLowerCase();
51
+ const matches = identifiers.filter((identifier) =>
52
+ content.includes(identifier.toLowerCase())
53
+ ).length;
54
+ return matches / identifiers.length;
55
+ };
56
+
57
+ const activationScore = (item: MemoryItem, nowMs: number): number => {
58
+ const lastActivatedMs = Date.parse(item.lastActivatedAt || item.createdAt);
59
+ const ageDays = Math.max(0, (nowMs - lastActivatedMs) / 86_400_000);
60
+ const recency = 1 / (1 + ageDays / 7);
61
+ const reinforcement = Math.min(1, Math.log1p(item.activationCount ?? 0) / 3);
62
+ return 0.7 * recency + 0.3 * reinforcement;
63
+ };
64
+
65
+ const typeFitScore = (item: MemoryItem): number => {
66
+ if (item.kind === "episodic") return 0.75;
67
+ if (item.kind === "semantic") return 0.9;
68
+ return 0.85;
69
+ };
70
+
71
+ const understandingScore = (item: MemoryItem): number => {
72
+ if (!item.tags?.includes("understanding-memory")) return 0;
73
+ if (item.facet === "unfinished") return 1;
74
+ if (item.facet === "tension") return 0.95;
75
+ if (item.facet === "preference") return 0.85;
76
+ if (item.facet === "style") return 0.75;
77
+ return 0.8;
78
+ };
79
+
80
+ export const scoreMemoryItem = (item: MemoryItem, query: string, nowMs = Date.now()): number => {
81
+ const queryMatch = keywordScore(query, item);
82
+ const identifierMatch = identifierScore(query, item);
83
+ const activation = activationScore(item, nowMs);
84
+ const importance = item.importance ?? 0;
85
+ const confidence = item.confidence ?? 0;
86
+ const typeFit = typeFitScore(item);
87
+ const understanding = understandingScore(item);
88
+ return (
89
+ 0.3 * queryMatch +
90
+ 0.25 * identifierMatch +
91
+ 0.15 * activation +
92
+ 0.15 * importance +
93
+ 0.1 * confidence +
94
+ 0.03 * typeFit +
95
+ 0.02 * understanding
96
+ );
97
+ };
98
+
99
+ export const rankMemoryCandidates = (
100
+ items: MemoryItem[],
101
+ query: string
102
+ ): MemoryItem[] =>
103
+ [...items].sort(
104
+ (a, b) => scoreMemoryItem(b, query) - scoreMemoryItem(a, query)
105
+ );
@@ -0,0 +1,247 @@
1
+ import { createDialogKey, dialogMessageRange } from "database/keys";
2
+ import { extractCustomId } from "core/prefix";
3
+
4
+ interface RecentDialogLike {
5
+ dbKey?: string;
6
+ cybots?: string[];
7
+ summary?: string;
8
+ title?: string;
9
+ updatedAt?: string;
10
+ createdAt?: string;
11
+ spaceId?: string;
12
+ inheritedFromDialogKey?: string;
13
+ }
14
+
15
+ interface DialogMessageLike {
16
+ role?: string;
17
+ authorRole?: string;
18
+ content?: unknown;
19
+ }
20
+
21
+ const MIN_RECAP_LENGTH = 12;
22
+ const MIN_RECAP_GAP_MS = 30 * 60 * 1000;
23
+
24
+ export interface RecentRelationshipRecapResolution {
25
+ recap: string | null;
26
+ reason:
27
+ | "no-db"
28
+ | "missing-input"
29
+ | "no-match"
30
+ | "too-recent"
31
+ | "low-quality"
32
+ | "selected";
33
+ sourceDialogKey?: string;
34
+ sourceUpdatedAt?: string;
35
+ }
36
+
37
+ export const shouldUseRecentRelationshipRecap = (input: {
38
+ userId?: string | null;
39
+ agentKey?: string | null;
40
+ cybotsCount?: number;
41
+ inheritFromDialogKey?: string | null;
42
+ skipGreeting?: boolean;
43
+ triggerType?: "user" | "api" | "localhost" | "scheduled_run";
44
+ }): boolean => {
45
+ if (!input.userId || !input.agentKey) return false;
46
+ if ((input.cybotsCount ?? 0) !== 1) return false;
47
+ if (input.inheritFromDialogKey) return false;
48
+ if (input.skipGreeting) return false;
49
+ if (input.triggerType && input.triggerType !== "user") return false;
50
+ return true;
51
+ };
52
+
53
+ const CONTINUATION_CUE_PATTERNS = [
54
+ "还没",
55
+ "还在",
56
+ "继续",
57
+ "接着",
58
+ "下一步",
59
+ "后面",
60
+ "之后",
61
+ "打算",
62
+ "准备",
63
+ "想",
64
+ "纠结",
65
+ "卡住",
66
+ "没想好",
67
+ "不确定",
68
+ "如何",
69
+ "怎么",
70
+ "?",
71
+ "?",
72
+ ];
73
+
74
+ const clip = (text: string, max = 140): string =>
75
+ text.length <= max ? text : `${text.slice(0, max - 1).trimEnd()}…`;
76
+
77
+ const normalizeText = (value: unknown): string =>
78
+ typeof value === "string" ? value.trim() : "";
79
+
80
+ const contentToText = (content: unknown): string => {
81
+ if (typeof content === "string") return content.trim();
82
+ if (Array.isArray(content)) {
83
+ return content
84
+ .map((part) =>
85
+ part && typeof part === "object" && "text" in part
86
+ ? normalizeText((part as { text?: unknown }).text)
87
+ : ""
88
+ )
89
+ .filter(Boolean)
90
+ .join("\n")
91
+ .trim();
92
+ }
93
+ return "";
94
+ };
95
+
96
+ const toTimestamp = (record: RecentDialogLike): number => {
97
+ const updated = Date.parse(normalizeText(record.updatedAt));
98
+ if (Number.isFinite(updated) && updated > 0) return updated;
99
+ const created = Date.parse(normalizeText(record.createdAt));
100
+ if (Number.isFinite(created) && created > 0) return created;
101
+ return 0;
102
+ };
103
+
104
+ const chooseRecapText = (record: RecentDialogLike): string => {
105
+ const summary = normalizeText(record.summary);
106
+ if (isMeaningfulRecapText(summary)) return clip(summary, 160);
107
+ const title = normalizeText(record.title);
108
+ if (isMeaningfulRecapText(title)) return clip(title, 80);
109
+ return "";
110
+ };
111
+
112
+ const loadLastAssistantMessageText = async (
113
+ db: any,
114
+ dialogKey: string
115
+ ): Promise<string> => {
116
+ const dialogId = extractCustomId(dialogKey);
117
+ if (!dialogId) return "";
118
+ const range = dialogMessageRange(dialogId);
119
+ let iterator = db.iterator({
120
+ gte: range.start,
121
+ lte: range.end,
122
+ reverse: true,
123
+ });
124
+
125
+ if (iterator && typeof iterator.then === "function") {
126
+ iterator = await iterator;
127
+ }
128
+
129
+ for await (const [, value] of iterator) {
130
+ const message = (value ?? {}) as DialogMessageLike;
131
+ const role = normalizeText(message.role ?? message.authorRole);
132
+ if (role !== "assistant") continue;
133
+ const text = contentToText(message.content);
134
+ if (isMeaningfulRecapText(text)) return clip(text, 160);
135
+ }
136
+
137
+ return "";
138
+ };
139
+
140
+ const isLikelyTimestampTitle = (text: string): boolean =>
141
+ /^\d{1,2}-\d{1,2}\s+\d{1,2}:\d{2}$/.test(text);
142
+
143
+ const isMeaningfulRecapText = (text: string): boolean => {
144
+ const normalized = normalizeText(text);
145
+ if (!normalized) return false;
146
+ if (normalized.length < MIN_RECAP_LENGTH) return false;
147
+ if (isLikelyTimestampTitle(normalized)) return false;
148
+ if (/^(继续|新对话|测试|test|hello|hi)$/i.test(normalized)) return false;
149
+ return true;
150
+ };
151
+
152
+ export const resolveRecentRelationshipRecap = async (input: {
153
+ db: any;
154
+ userId: string;
155
+ agentKey: string;
156
+ currentSpaceId?: string;
157
+ limit?: number;
158
+ }): Promise<RecentRelationshipRecapResolution> => {
159
+ const { db, userId, agentKey, currentSpaceId, limit = 40 } = input;
160
+ if (!db) return { recap: null, reason: "no-db" };
161
+ if (!userId || !agentKey) return { recap: null, reason: "missing-input" };
162
+
163
+ const range = createDialogKey.rangeOfUser(userId);
164
+ const matches: RecentDialogLike[] = [];
165
+ let scanned = 0;
166
+
167
+ let iterator = db.iterator({
168
+ gte: range.start,
169
+ lte: range.end,
170
+ reverse: true,
171
+ });
172
+
173
+ if (iterator && typeof iterator.then === "function") {
174
+ iterator = await iterator;
175
+ }
176
+
177
+ for await (const [, value] of iterator) {
178
+ scanned += 1;
179
+ const record = (value ?? {}) as RecentDialogLike;
180
+ if (!Array.isArray(record.cybots) || !record.cybots.includes(agentKey)) {
181
+ if (scanned >= limit && matches.length > 0) break;
182
+ continue;
183
+ }
184
+ matches.push(record);
185
+ if (matches.length >= limit) break;
186
+ }
187
+
188
+ if (matches.length === 0) return { recap: null, reason: "no-match" };
189
+
190
+ const sorted = [...matches].sort((a, b) => {
191
+ const aSameSpace = currentSpaceId && a.spaceId === currentSpaceId ? 1 : 0;
192
+ const bSameSpace = currentSpaceId && b.spaceId === currentSpaceId ? 1 : 0;
193
+ if (aSameSpace !== bSameSpace) return bSameSpace - aSameSpace;
194
+ return toTimestamp(b) - toTimestamp(a);
195
+ });
196
+
197
+ let sawTooRecent = false;
198
+ let sawLowQuality = false;
199
+ for (const record of sorted) {
200
+ const ts = toTimestamp(record);
201
+ if (ts > 0 && Date.now() - ts < MIN_RECAP_GAP_MS) {
202
+ sawTooRecent = true;
203
+ continue;
204
+ }
205
+ let recap = chooseRecapText(record);
206
+ if (!recap) {
207
+ const dialogKey = normalizeText(record.dbKey);
208
+ if (dialogKey) {
209
+ recap = await loadLastAssistantMessageText(db, dialogKey);
210
+ }
211
+ }
212
+ if (recap) {
213
+ return {
214
+ recap,
215
+ reason: "selected",
216
+ sourceDialogKey: normalizeText(record.dbKey) || undefined,
217
+ sourceUpdatedAt: normalizeText(record.updatedAt) || undefined,
218
+ };
219
+ }
220
+ sawLowQuality = true;
221
+ }
222
+
223
+ if (sawTooRecent) return { recap: null, reason: "too-recent" };
224
+ if (sawLowQuality) return { recap: null, reason: "low-quality" };
225
+ return { recap: null, reason: "no-match" };
226
+ };
227
+
228
+ export const mergeGreetingWithRelationshipRecap = (input: {
229
+ greetingText?: string;
230
+ recentRecap?: string | null;
231
+ }): string | null => {
232
+ const greetingText = normalizeText(input.greetingText);
233
+ const recentRecap = normalizeText(input.recentRecap);
234
+
235
+ if (!greetingText && !recentRecap) return null;
236
+ if (!recentRecap) return greetingText || null;
237
+ const continuationLike = CONTINUATION_CUE_PATTERNS.some((pattern) =>
238
+ recentRecap.includes(pattern)
239
+ );
240
+ if (!continuationLike) return greetingText || null;
241
+
242
+ if (!greetingText) {
243
+ return `我记得你上次在聊:${recentRecap}\n\n如果你还想接着那个点继续,我们可以从那里往下走;如果想换个方向也可以。`;
244
+ }
245
+
246
+ return `${greetingText}\n\n我记得你上次在聊:${recentRecap}\n如果你还想接着那个点继续,我们可以从那里往下走;如果想换个方向也可以。`;
247
+ };
@@ -0,0 +1,167 @@
1
+ import serverDb from "database/server/db";
2
+ import { createMemoryItem, writeMemoryItemWithIndexesToDb } from "./store";
3
+ import type { MemoryKind, MemoryOwnerType, MemorySubjectType, MemoryVisibility } from "./types";
4
+
5
+ export type RememberMemoryScope = "auto" | "user" | "space";
6
+
7
+ export interface RememberMemoryInput {
8
+ db?: any;
9
+ userId?: string | null;
10
+ spaceId?: string | null;
11
+ dialogId?: string | null;
12
+ content: string;
13
+ scope?: RememberMemoryScope;
14
+ kind?: MemoryKind;
15
+ }
16
+
17
+ export interface RememberMemoryResult {
18
+ success: true;
19
+ content: string;
20
+ requestedScope: RememberMemoryScope;
21
+ resolvedScopes: Array<{
22
+ ownerType: MemoryOwnerType;
23
+ ownerId: string;
24
+ subjectType: MemorySubjectType;
25
+ subjectId: string;
26
+ visibility: MemoryVisibility;
27
+ }>;
28
+ }
29
+
30
+ const MEMORY_KINDS = new Set<MemoryKind>(["episodic", "semantic", "procedural"]);
31
+
32
+ const buildRememberTargets = (input: {
33
+ userId?: string | null;
34
+ spaceId?: string | null;
35
+ scope: RememberMemoryScope;
36
+ }): Array<{
37
+ ownerType: MemoryOwnerType;
38
+ ownerId: string;
39
+ visibility: MemoryVisibility;
40
+ subjectType: MemorySubjectType;
41
+ subjectId: string;
42
+ }> => {
43
+ if (input.scope === "user") {
44
+ if (!input.userId) {
45
+ throw new Error("rememberMemory: user scope requires userId");
46
+ }
47
+ return [
48
+ {
49
+ ownerType: "user",
50
+ ownerId: input.userId,
51
+ visibility: "private",
52
+ subjectType: "user",
53
+ subjectId: input.userId,
54
+ },
55
+ ];
56
+ }
57
+
58
+ if (input.scope === "space") {
59
+ if (input.spaceId) {
60
+ return [
61
+ {
62
+ ownerType: "space",
63
+ ownerId: input.spaceId,
64
+ visibility: "shared",
65
+ subjectType: "space",
66
+ subjectId: input.spaceId,
67
+ },
68
+ ];
69
+ }
70
+ if (input.userId) {
71
+ return [
72
+ {
73
+ ownerType: "user",
74
+ ownerId: input.userId,
75
+ visibility: "private",
76
+ subjectType: "user",
77
+ subjectId: input.userId,
78
+ },
79
+ ];
80
+ }
81
+ throw new Error("rememberMemory: space scope requires spaceId");
82
+ }
83
+
84
+ if (input.userId) {
85
+ return [
86
+ {
87
+ ownerType: "user",
88
+ ownerId: input.userId,
89
+ visibility: "private",
90
+ subjectType: "user",
91
+ subjectId: input.userId,
92
+ },
93
+ ];
94
+ }
95
+
96
+ if (input.spaceId) {
97
+ return [
98
+ {
99
+ ownerType: "space",
100
+ ownerId: input.spaceId,
101
+ visibility: "shared",
102
+ subjectType: "space",
103
+ subjectId: input.spaceId,
104
+ },
105
+ ];
106
+ }
107
+
108
+ return [];
109
+ };
110
+
111
+ export const rememberMemory = async (
112
+ input: RememberMemoryInput
113
+ ): Promise<RememberMemoryResult> => {
114
+ const content = input.content.trim();
115
+ if (!content) {
116
+ throw new Error("rememberMemory: content is required");
117
+ }
118
+
119
+ const scope = input.scope ?? "auto";
120
+ const targets = buildRememberTargets({
121
+ userId: input.userId,
122
+ spaceId: input.spaceId,
123
+ scope,
124
+ });
125
+ if (targets.length === 0) {
126
+ throw new Error("rememberMemory: no valid owner scope found");
127
+ }
128
+
129
+ const db = input.db ?? serverDb;
130
+ const kind = input.kind ?? "episodic";
131
+ if (!MEMORY_KINDS.has(kind)) {
132
+ throw new Error("rememberMemory: kind must be episodic, semantic, or procedural");
133
+ }
134
+ for (const target of targets) {
135
+ const item = createMemoryItem({
136
+ ownerType: target.ownerType,
137
+ ownerId: target.ownerId,
138
+ visibility: target.visibility,
139
+ subjectType: target.subjectType,
140
+ subjectId: target.subjectId,
141
+ kind,
142
+ content,
143
+ importance: kind === "procedural" ? 0.88 : target.ownerType === "user" ? 0.82 : 0.76,
144
+ confidence: kind === "procedural" ? 0.78 : 0.72,
145
+ tags:
146
+ target.ownerType === "user"
147
+ ? ["agent-remembered", ...(kind === "procedural" ? ["procedural-memory"] : [])]
148
+ : ["agent-remembered", "space-context", ...(kind === "procedural" ? ["procedural-memory"] : [])],
149
+ patternKey: kind === "procedural" ? "procedural-runbook" : "agent-remember",
150
+ sourceDialogId: input.dialogId ?? undefined,
151
+ });
152
+ await writeMemoryItemWithIndexesToDb(db, item);
153
+ }
154
+
155
+ return {
156
+ success: true,
157
+ content,
158
+ requestedScope: scope,
159
+ resolvedScopes: targets.map((target) => ({
160
+ ownerType: target.ownerType,
161
+ ownerId: target.ownerId,
162
+ subjectType: target.subjectType,
163
+ subjectId: target.subjectId,
164
+ visibility: target.visibility,
165
+ })),
166
+ };
167
+ };
@@ -0,0 +1,76 @@
1
+ import { touchMemoryItems } from "./store";
2
+ import { buildMemoryOverlay } from "./overlay";
3
+ import { rankMemoryCandidates } from "./rank";
4
+ import { buildDefaultSubjects, chooseMemoryOwners, loadMemoryCandidates } from "./query";
5
+ import type { MemoryRuntimeResolution } from "./types";
6
+
7
+ const normalizeSelectedContent = (text: string): string =>
8
+ text
9
+ .trim()
10
+ .replace(/^(你要记住|请记住|以后记住|记住)[,,。.\s::]*/u, "")
11
+ .replace(/[。!?!?]+$/u, "")
12
+ .trim();
13
+
14
+ const selectRuntimeMemoryItems = (items: ReturnType<typeof rankMemoryCandidates>) => {
15
+ const seen = new Set<string>();
16
+ const unique = items.filter((item) => {
17
+ const key = `${item.kind}:${normalizeSelectedContent(item.content).toLowerCase()}`;
18
+ if (seen.has(key)) return false;
19
+ seen.add(key);
20
+ return true;
21
+ });
22
+ const selected: typeof unique = [];
23
+ const selectedIds = new Set<string>();
24
+ const add = (item: typeof unique[number] | undefined) => {
25
+ if (!item || selectedIds.has(item.id) || selected.length >= 4) return;
26
+ selected.push(item);
27
+ selectedIds.add(item.id);
28
+ };
29
+
30
+ add(unique.find((item) => item.ownerType === "user"));
31
+ add(unique.find((item) => item.ownerType === "space"));
32
+ add(unique.find((item) => item.kind === "procedural"));
33
+ for (const item of unique) {
34
+ add(item);
35
+ }
36
+ return selected;
37
+ };
38
+
39
+ export const resolveMemoryRuntime = async (input: {
40
+ userId?: string | null;
41
+ spaceId?: string | null;
42
+ agentKey: string;
43
+ userInput: string;
44
+ }): Promise<MemoryRuntimeResolution> => {
45
+ const owners = chooseMemoryOwners({
46
+ userId: input.userId,
47
+ spaceId: input.spaceId,
48
+ });
49
+ if (owners.length === 0) {
50
+ return { selectedItems: [], promptBlock: null };
51
+ }
52
+
53
+ const candidates = await loadMemoryCandidates({
54
+ owners,
55
+ subjects: buildDefaultSubjects({
56
+ userId: input.userId,
57
+ spaceId: input.spaceId,
58
+ agentKey: input.agentKey,
59
+ }),
60
+ kinds: ["episodic", "semantic", "procedural"],
61
+ ownerLimit: 20,
62
+ });
63
+
64
+ const ranked = selectRuntimeMemoryItems(
65
+ rankMemoryCandidates(candidates, input.userInput)
66
+ );
67
+ if (ranked.length === 0) {
68
+ return { selectedItems: [], promptBlock: null };
69
+ }
70
+
71
+ await touchMemoryItems(ranked);
72
+ return {
73
+ selectedItems: ranked,
74
+ promptBlock: buildMemoryOverlay(ranked),
75
+ };
76
+ };
@@ -0,0 +1,20 @@
1
+ import serverDb from "database/server/db";
2
+ import type { MemoryItem } from "./types";
3
+ import {
4
+ createMemoryItem,
5
+ touchMemoryItemsInDb,
6
+ writeMemoryItemWithIndexesToDb,
7
+ } from "./storeShared";
8
+
9
+ export { createMemoryItem, writeMemoryItemWithIndexesToDb, touchMemoryItemsInDb };
10
+
11
+ export const writeMemoryItemWithIndexes = async (item: MemoryItem): Promise<void> => {
12
+ return writeMemoryItemWithIndexesToDb(serverDb, item);
13
+ };
14
+
15
+ export const touchMemoryItems = async (
16
+ items: MemoryItem[],
17
+ now = new Date().toISOString()
18
+ ): Promise<void> => {
19
+ return touchMemoryItemsInDb(serverDb, items, now);
20
+ };
@@ -0,0 +1,76 @@
1
+ import { ulid } from "database/utils/ulid";
2
+ import {
3
+ createMemoryKey,
4
+ createMemoryOwnerIndexKey,
5
+ createMemorySubjectKindIndexKey,
6
+ } from "database/keys";
7
+ import type { MemoryItem } from "./types";
8
+
9
+ export const createMemoryItem = (
10
+ input: Omit<MemoryItem, "id" | "createdAt" | "lastActivatedAt" | "activationCount">
11
+ ): MemoryItem => {
12
+ const now = new Date().toISOString();
13
+ return {
14
+ id: ulid(),
15
+ createdAt: now,
16
+ lastActivatedAt: now,
17
+ activationCount: 0,
18
+ ...input,
19
+ };
20
+ };
21
+
22
+ export const writeMemoryItemWithIndexesToDb = async (
23
+ db: any,
24
+ item: MemoryItem
25
+ ): Promise<void> => {
26
+ const batch = db.batch();
27
+ batch.put(createMemoryKey(item.ownerType, item.ownerId, item.id), item);
28
+ batch.put(
29
+ createMemoryOwnerIndexKey(
30
+ item.ownerType,
31
+ item.ownerId,
32
+ item.createdAt,
33
+ item.id
34
+ ),
35
+ {
36
+ memoryKey: createMemoryKey(item.ownerType, item.ownerId, item.id),
37
+ ownerType: item.ownerType,
38
+ ownerId: item.ownerId,
39
+ memoryId: item.id,
40
+ }
41
+ );
42
+ batch.put(
43
+ createMemorySubjectKindIndexKey(
44
+ item.subjectType,
45
+ item.subjectId,
46
+ item.kind,
47
+ item.createdAt,
48
+ item.id
49
+ ),
50
+ {
51
+ memoryKey: createMemoryKey(item.ownerType, item.ownerId, item.id),
52
+ subjectType: item.subjectType,
53
+ subjectId: item.subjectId,
54
+ kind: item.kind,
55
+ memoryId: item.id,
56
+ }
57
+ );
58
+ await batch.write();
59
+ };
60
+
61
+ export const touchMemoryItemsInDb = async (
62
+ db: any,
63
+ items: MemoryItem[],
64
+ now = new Date().toISOString()
65
+ ): Promise<void> => {
66
+ if (items.length === 0) return;
67
+ const batch = db.batch();
68
+ for (const item of items) {
69
+ batch.put(createMemoryKey(item.ownerType, item.ownerId, item.id), {
70
+ ...item,
71
+ lastActivatedAt: now,
72
+ activationCount: (item.activationCount ?? 0) + 1,
73
+ });
74
+ }
75
+ await batch.write();
76
+ };