nolo-cli 0.1.8 → 0.1.9

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 (239) hide show
  1. package/README.md +32 -0
  2. package/agentRuntimeCommands.ts +3 -3
  3. package/ai/agent/_executeModel.ts +118 -0
  4. package/ai/agent/agentSlice.ts +525 -0
  5. package/ai/agent/appWorkingMemory.ts +126 -0
  6. package/ai/agent/avatarUtils.ts +24 -0
  7. package/ai/agent/buildEditingContext.ts +373 -0
  8. package/ai/agent/buildSystemPrompt.ts +532 -0
  9. package/ai/agent/cleanAgentMessages.ts +140 -0
  10. package/ai/agent/cliChatClient.ts +119 -0
  11. package/ai/agent/cliExecutor.ts +733 -0
  12. package/ai/agent/cliPrompt.ts +10 -0
  13. package/ai/agent/contextCompiler.ts +107 -0
  14. package/ai/agent/contextLayerContract.ts +44 -0
  15. package/ai/agent/createAgentSchema.ts +234 -0
  16. package/ai/agent/executeToolCall.ts +58 -0
  17. package/ai/agent/fetchAgentContexts.ts +42 -0
  18. package/ai/agent/generatePrompt.ts +3 -0
  19. package/ai/agent/getFullChatContextKeys.ts +168 -0
  20. package/ai/agent/hooks/fetchPublicAgents.ts +133 -0
  21. package/ai/agent/hooks/useAgentConfig.ts +61 -0
  22. package/ai/agent/hooks/useAgentDialog.ts +35 -0
  23. package/ai/agent/hooks/useAgentFormValidation.ts +202 -0
  24. package/ai/agent/hooks/usePublicAgents.ts +473 -0
  25. package/ai/agent/machineRunPermissions.ts +95 -0
  26. package/ai/agent/persistMessageWithFixedId.ts +37 -0
  27. package/ai/agent/planSlice.ts +259 -0
  28. package/ai/agent/referenceUtils.ts +229 -0
  29. package/ai/agent/runAgentBackground.ts +238 -0
  30. package/ai/agent/runAgentClientLoop.ts +138 -0
  31. package/ai/agent/runtimeGuidance.ts +97 -0
  32. package/ai/agent/runtimeServerBase.ts +37 -0
  33. package/ai/agent/server/fetchPublicAgents.ts +128 -0
  34. package/ai/agent/startParallelAgentStreams.ts +424 -0
  35. package/ai/agent/startupProtocol.ts +53 -0
  36. package/ai/agent/streamAgentChatTurn.ts +1278 -0
  37. package/ai/agent/streamAgentChatTurnUtils.ts +738 -0
  38. package/ai/agent/types.ts +71 -0
  39. package/ai/agent/utils/imageOutput.ts +33 -0
  40. package/ai/agent/utils/sortUtils.ts +250 -0
  41. package/ai/agent/web/referencePickerUtils.ts +146 -0
  42. package/ai/ai.locale.ts +1075 -0
  43. package/ai/chat/accumulateToolCallChunks.ts +95 -0
  44. package/ai/chat/fetchUtils.native.ts +276 -0
  45. package/ai/chat/fetchUtils.ts +153 -0
  46. package/ai/chat/parseApiError.ts +64 -0
  47. package/ai/chat/parseMultilineSSE.ts +95 -0
  48. package/ai/chat/sendOpenAICompletionsRequest.native.ts +682 -0
  49. package/ai/chat/sendOpenAICompletionsRequest.ts +703 -0
  50. package/ai/chat/sendOpenAIResponseRequest.ts +491 -0
  51. package/ai/chat/shouldUseServerProxy.ts +18 -0
  52. package/ai/chat/sseClient.native.ts +91 -0
  53. package/ai/chat/sseClient.ts +67 -0
  54. package/ai/chat/streamReader.native.ts +31 -0
  55. package/ai/chat/streamReader.ts +62 -0
  56. package/ai/chat/updateTotalUsage.ts +72 -0
  57. package/ai/context/buildReferenceContext.ts +437 -0
  58. package/ai/context/calculateContextUsage.ts +133 -0
  59. package/ai/context/retention.ts +165 -0
  60. package/ai/context/tokenUtils.ts +78 -0
  61. package/ai/index.ts +1 -0
  62. package/ai/llm/calculateGeminiImageTokens.ts +57 -0
  63. package/ai/llm/deepinfra.ts +28 -0
  64. package/ai/llm/fireworks.ts +50 -0
  65. package/ai/llm/generateRequestBody.ts +165 -0
  66. package/ai/llm/getModelContextWindow.ts +84 -0
  67. package/ai/llm/getNoloKey.ts +31 -0
  68. package/ai/llm/getPricing.ts +199 -0
  69. package/ai/llm/hooks/useModelPricing.ts +75 -0
  70. package/ai/llm/imagePricing.ts +40 -0
  71. package/ai/llm/isResponseAPIModel.ts +13 -0
  72. package/ai/llm/mimo.ts +71 -0
  73. package/ai/llm/mistral.ts +22 -0
  74. package/ai/llm/modelAvatar.ts +427 -0
  75. package/ai/llm/models.ts +45 -0
  76. package/ai/llm/openrouterModels.ts +269 -0
  77. package/ai/llm/providers.ts +306 -0
  78. package/ai/llm/reasoningModels.ts +28 -0
  79. package/ai/llm/types.ts +59 -0
  80. package/ai/llm/usageRequestOptions.ts +59 -0
  81. package/ai/memory/capture.ts +148 -0
  82. package/ai/memory/consolidate.ts +104 -0
  83. package/ai/memory/delete.ts +147 -0
  84. package/ai/memory/overlay.ts +84 -0
  85. package/ai/memory/query.ts +38 -0
  86. package/ai/memory/queryShared.ts +160 -0
  87. package/ai/memory/rank.ts +105 -0
  88. package/ai/memory/recentRelationshipRecap.ts +249 -0
  89. package/ai/memory/remember.ts +167 -0
  90. package/ai/memory/runtime.ts +76 -0
  91. package/ai/memory/store.ts +20 -0
  92. package/ai/memory/storeShared.ts +76 -0
  93. package/ai/memory/types.ts +46 -0
  94. package/ai/memory/understanding.ts +349 -0
  95. package/ai/memory/understandingGreeting.ts +264 -0
  96. package/ai/messages/type.ts +20 -0
  97. package/ai/policy/personalizationDialog.ts +333 -0
  98. package/ai/policy/runtimePolicy.ts +440 -0
  99. package/ai/policy/selfUpdateFields.ts +48 -0
  100. package/ai/policy/types.ts +64 -0
  101. package/ai/skills/referenceRuntime.ts +274 -0
  102. package/ai/skills/skillDiagnostics.ts +251 -0
  103. package/ai/skills/skillDocBuilder.ts +139 -0
  104. package/ai/skills/skillDocProtocol.ts +434 -0
  105. package/ai/skills/skillReferenceSummary.ts +63 -0
  106. package/ai/skills/skillSummaryMarker.ts +26 -0
  107. package/ai/token/calculatePrice.ts +544 -0
  108. package/ai/token/db.ts +98 -0
  109. package/ai/token/externalToolCost.ts +330 -0
  110. package/ai/token/hooks/useRecords.ts +65 -0
  111. package/ai/token/missingUsageEstimate.ts +42 -0
  112. package/ai/token/modelUsageQuery.ts +252 -0
  113. package/ai/token/normalizeUsage.ts +84 -0
  114. package/ai/token/openaiImageGenerationUsage.ts +56 -0
  115. package/ai/token/prepareTokenUsageData.ts +88 -0
  116. package/ai/token/query.ts +88 -0
  117. package/ai/token/queryUserTokens.ts +59 -0
  118. package/ai/token/resolveBillingTarget.ts +52 -0
  119. package/ai/token/saveTokenRecord.ts +53 -0
  120. package/ai/token/serverDialogProjection.ts +78 -0
  121. package/ai/token/serverTokenWriter.ts +143 -0
  122. package/ai/token/stats.ts +21 -0
  123. package/ai/token/tokenThunks.ts +24 -0
  124. package/ai/token/types.ts +93 -0
  125. package/ai/tools/agent/agentTools.ts +176 -0
  126. package/ai/tools/agent/agentUpdateShared.ts +311 -0
  127. package/ai/tools/agent/callAgentTool.ts +139 -0
  128. package/ai/tools/agent/createAgentTool.ts +512 -0
  129. package/ai/tools/agent/createDialogTool.ts +69 -0
  130. package/ai/tools/agent/createSkillAgentTool.ts +62 -0
  131. package/ai/tools/agent/parallelBudget.ts +221 -0
  132. package/ai/tools/agent/presets/appBuilderPreset.ts +145 -0
  133. package/ai/tools/agent/runLlmTool.ts +96 -0
  134. package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
  135. package/ai/tools/agent/skillAgentArgs.ts +106 -0
  136. package/ai/tools/agent/skillAgentPreset.ts +89 -0
  137. package/ai/tools/agent/streamParallelAgentsTool.ts +122 -0
  138. package/ai/tools/agent/updateAgentTool.ts +96 -0
  139. package/ai/tools/agent/updateSelfTool.ts +113 -0
  140. package/ai/tools/amazonProductScraperTool.ts +86 -0
  141. package/ai/tools/apifyActorClient.ts +45 -0
  142. package/ai/tools/appEditGuard.ts +372 -0
  143. package/ai/tools/appReadSnapshot.ts +153 -0
  144. package/ai/tools/appTools.ts +1549 -0
  145. package/ai/tools/applyEditTool.ts +256 -0
  146. package/ai/tools/applyLineEditsTool.ts +312 -0
  147. package/ai/tools/browserTools/click.ts +33 -0
  148. package/ai/tools/browserTools/closeSession.ts +29 -0
  149. package/ai/tools/browserTools/common.ts +27 -0
  150. package/ai/tools/browserTools/openSession.ts +48 -0
  151. package/ai/tools/browserTools/readContent.ts +38 -0
  152. package/ai/tools/browserTools/selectOption.ts +46 -0
  153. package/ai/tools/browserTools/typeText.ts +42 -0
  154. package/ai/tools/category/createCategoryTool.ts +66 -0
  155. package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
  156. package/ai/tools/category/updateContentCategoryTool.ts +75 -0
  157. package/ai/tools/cfBrowserTools.ts +319 -0
  158. package/ai/tools/cfSpeechToTextTool.ts +49 -0
  159. package/ai/tools/checkEnvTool.ts +65 -0
  160. package/ai/tools/cloudflareCrawlTool.ts +289 -0
  161. package/ai/tools/codeSearchTool.ts +111 -0
  162. package/ai/tools/codeTools.ts +101 -0
  163. package/ai/tools/createDocTool.ts +132 -0
  164. package/ai/tools/createPlanTool.ts +999 -0
  165. package/ai/tools/createSkillDocTool.ts +155 -0
  166. package/ai/tools/createWorkflowTool.ts +154 -0
  167. package/ai/tools/deepseekOcrTool.ts +34 -0
  168. package/ai/tools/delayTool.ts +31 -0
  169. package/ai/tools/deleteSpacesTool.ts +325 -0
  170. package/ai/tools/deleteSpacesToolModel.ts +159 -0
  171. package/ai/tools/devReloadUtils.ts +29 -0
  172. package/ai/tools/dialogMessageSearch.ts +137 -0
  173. package/ai/tools/doctorSkillTool.ts +72 -0
  174. package/ai/tools/ecommerceScraperTool.ts +86 -0
  175. package/ai/tools/emailTools.ts +549 -0
  176. package/ai/tools/evalSkillTool.ts +92 -0
  177. package/ai/tools/exaSearchTool.ts +64 -0
  178. package/ai/tools/execBashTool.ts +379 -0
  179. package/ai/tools/executeSqlTool.ts +192 -0
  180. package/ai/tools/fetchWebpageSupport.ts +309 -0
  181. package/ai/tools/fetchWebpageTool.ts +84 -0
  182. package/ai/tools/geminiImagePreviewTool.ts +361 -0
  183. package/ai/tools/generateDocxTool.ts +215 -0
  184. package/ai/tools/googleSearchScraperTool.ts +106 -0
  185. package/ai/tools/importDataTool.ts +133 -0
  186. package/ai/tools/importSkillTool.ts +162 -0
  187. package/ai/tools/index.ts +1858 -0
  188. package/ai/tools/listFilesTool.ts +82 -0
  189. package/ai/tools/listUserSpacesTool.ts +113 -0
  190. package/ai/tools/modelUsageTools.ts +142 -0
  191. package/ai/tools/olmOcrTool.ts +34 -0
  192. package/ai/tools/openaiImageTool.ts +218 -0
  193. package/ai/tools/paddleOcrTool.ts +34 -0
  194. package/ai/tools/prepareTools.ts +23 -0
  195. package/ai/tools/readDocTool.ts +84 -0
  196. package/ai/tools/readFileTool.ts +211 -0
  197. package/ai/tools/readTool.ts +163 -0
  198. package/ai/tools/readXPostTool.ts +233 -0
  199. package/ai/tools/rememberMemoryTool.ts +84 -0
  200. package/ai/tools/remotionVideoTool.ts +151 -0
  201. package/ai/tools/searchDialogMessagesTool.ts +222 -0
  202. package/ai/tools/searchRepoTool.ts +115 -0
  203. package/ai/tools/searchWorkspaceTool.ts +259 -0
  204. package/ai/tools/skillFollowup.ts +86 -0
  205. package/ai/tools/surfWeatherTool.ts +169 -0
  206. package/ai/tools/table/addTableRowTool.ts +217 -0
  207. package/ai/tools/table/createTableTool.ts +315 -0
  208. package/ai/tools/table/rowTools.ts +366 -0
  209. package/ai/tools/table/schemaTools.ts +244 -0
  210. package/ai/tools/table/shareTableTool.ts +148 -0
  211. package/ai/tools/table/toolShared.ts +129 -0
  212. package/ai/tools/toolApiClient.ts +198 -0
  213. package/ai/tools/toolNameAliases.ts +57 -0
  214. package/ai/tools/toolResultError.ts +42 -0
  215. package/ai/tools/toolRunSlice.ts +303 -0
  216. package/ai/tools/toolSchemaCompatibility.ts +53 -0
  217. package/ai/tools/toolVisibility.ts +4 -0
  218. package/ai/tools/types.ts +20 -0
  219. package/ai/tools/uiAskChoiceTool.ts +104 -0
  220. package/ai/tools/updateContentTitleTool.ts +84 -0
  221. package/ai/tools/updateDocTool.ts +105 -0
  222. package/ai/tools/updateUserPreferenceProfileTool.ts +145 -0
  223. package/ai/tools/whisperTool.ts +77 -0
  224. package/ai/tools/writeFileTool.ts +210 -0
  225. package/ai/tools/youtubeScraperTool.ts +116 -0
  226. package/ai/tools/ziweiChartTool.ts +678 -0
  227. package/ai/types.ts +55 -0
  228. package/ai/workflow/workflowExecutor.ts +323 -0
  229. package/ai/workflow/workflowSlice.ts +73 -0
  230. package/ai/workflow/workflowTypes.ts +106 -0
  231. package/client/compactDialog.ts +222 -0
  232. package/connector-experimental/capabilities.ts +73 -0
  233. package/connector-experimental/codexBinary.ts +41 -0
  234. package/connector-experimental/heartbeatLoop.ts +22 -0
  235. package/connector-experimental/index.ts +5 -0
  236. package/connector-experimental/machineInfo.ts +46 -0
  237. package/connector-experimental/protocol.ts +54 -0
  238. package/machineCommands.ts +4 -4
  239. package/package.json +8 -6
@@ -0,0 +1,160 @@
1
+ import {
2
+ createMemoryKey,
3
+ memoryOwnerRange,
4
+ memorySubjectKindRange,
5
+ } from "database/keys";
6
+ import type {
7
+ MemoryItem,
8
+ MemoryKind,
9
+ MemoryOwnerRef,
10
+ MemorySubjectRef,
11
+ } from "./types";
12
+
13
+ export const chooseMemoryOwners = (input: {
14
+ userId?: string | null;
15
+ spaceId?: string | null;
16
+ }): MemoryOwnerRef[] => {
17
+ const owners: MemoryOwnerRef[] = [];
18
+ if (input.userId) {
19
+ owners.push({ ownerType: "user", ownerId: input.userId });
20
+ }
21
+ if (input.spaceId) {
22
+ owners.push({ ownerType: "space", ownerId: input.spaceId });
23
+ }
24
+ return owners;
25
+ };
26
+
27
+ export const loadOwnerItemsFromDb = async (
28
+ db: any,
29
+ owner: MemoryOwnerRef,
30
+ limit: number
31
+ ): Promise<MemoryItem[]> => {
32
+ const range = memoryOwnerRange(owner.ownerType, owner.ownerId);
33
+ const refs: Array<{ memoryId?: string }> = [];
34
+ for await (const [, value] of db.iterator({
35
+ gte: range.start,
36
+ lte: range.end,
37
+ reverse: true,
38
+ })) {
39
+ refs.push(value ?? {});
40
+ if (refs.length >= limit) break;
41
+ }
42
+
43
+ const items = await Promise.all(
44
+ refs.map((ref) =>
45
+ typeof ref?.memoryId === "string"
46
+ ? db
47
+ .get(createMemoryKey(owner.ownerType, owner.ownerId, ref.memoryId))
48
+ .catch(() => null)
49
+ : Promise.resolve(null)
50
+ )
51
+ );
52
+ return items.filter((item): item is MemoryItem => !!item);
53
+ };
54
+
55
+ export const loadSubjectKindItemsFromDb = async (
56
+ db: any,
57
+ subject: MemorySubjectRef,
58
+ kind: MemoryKind,
59
+ limit: number
60
+ ): Promise<MemoryItem[]> => {
61
+ const range = memorySubjectKindRange(subject.subjectType, subject.subjectId, kind);
62
+ const refs: Array<{ memoryKey?: string }> = [];
63
+ for await (const [, value] of db.iterator({
64
+ gte: range.start,
65
+ lte: range.end,
66
+ reverse: true,
67
+ })) {
68
+ refs.push(value ?? {});
69
+ if (refs.length >= limit) break;
70
+ }
71
+
72
+ const items = await Promise.all(
73
+ refs.map((ref) =>
74
+ typeof ref?.memoryKey === "string"
75
+ ? db.get(ref.memoryKey).catch(() => null)
76
+ : Promise.resolve(null)
77
+ )
78
+ );
79
+ return items.filter((item): item is MemoryItem => !!item);
80
+ };
81
+
82
+ export const loadMemoryCandidatesFromDb = async (
83
+ db: any,
84
+ input: {
85
+ owners: MemoryOwnerRef[];
86
+ subjects: MemorySubjectRef[];
87
+ kinds?: MemoryKind[];
88
+ ownerLimit?: number;
89
+ }
90
+ ): Promise<MemoryItem[]> => {
91
+ const kinds = input.kinds ?? ["episodic", "semantic", "procedural"];
92
+ const ownerLimit = input.ownerLimit ?? 12;
93
+ const ownerKeySet = new Set(
94
+ input.owners
95
+ .filter((owner) => owner.ownerId)
96
+ .map((owner) => `${owner.ownerType}:${owner.ownerId}`)
97
+ );
98
+ const subjects = input.subjects.filter(
99
+ (subject): subject is MemorySubjectRef => !!subject.subjectId
100
+ );
101
+
102
+ const subjectResults =
103
+ subjects.length > 0
104
+ ? await Promise.all(
105
+ subjects.flatMap((subject) =>
106
+ kinds.map((kind) =>
107
+ loadSubjectKindItemsFromDb(db, subject, kind, ownerLimit)
108
+ )
109
+ )
110
+ )
111
+ : [];
112
+ const subjectHitCount = subjectResults.reduce((sum, items) => sum + items.length, 0);
113
+ const usingOwnerFallback = subjects.length === 0 || subjectHitCount === 0;
114
+ const results = usingOwnerFallback
115
+ ? await Promise.all(
116
+ input.owners.map((owner) => loadOwnerItemsFromDb(db, owner, ownerLimit))
117
+ )
118
+ : subjectResults;
119
+
120
+ const seen = new Set<string>();
121
+ const merged: MemoryItem[] = [];
122
+ for (const items of results) {
123
+ for (const item of items) {
124
+ if (seen.has(item.id)) continue;
125
+ if (!kinds.includes(item.kind)) continue;
126
+ if (
127
+ ownerKeySet.size > 0 &&
128
+ !ownerKeySet.has(`${item.ownerType}:${item.ownerId}`)
129
+ ) {
130
+ continue;
131
+ }
132
+ if (
133
+ !usingOwnerFallback &&
134
+ subjects.length > 0 &&
135
+ !subjects.some(
136
+ (subject) =>
137
+ subject.subjectType === item.subjectType &&
138
+ subject.subjectId === item.subjectId
139
+ )
140
+ ) {
141
+ continue;
142
+ }
143
+ seen.add(item.id);
144
+ merged.push(item);
145
+ }
146
+ }
147
+
148
+ return merged;
149
+ };
150
+
151
+ export const buildDefaultSubjects = (input: {
152
+ userId?: string | null;
153
+ spaceId?: string | null;
154
+ agentKey: string;
155
+ }): MemorySubjectRef[] =>
156
+ [
157
+ { subjectType: "agent", subjectId: input.agentKey },
158
+ input.userId ? { subjectType: "user", subjectId: input.userId } : null,
159
+ input.spaceId ? { subjectType: "space", subjectId: input.spaceId } : null,
160
+ ].filter((value): value is MemorySubjectRef => !!value);
@@ -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,249 @@
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 (!greetingText) {
241
+ return continuationLike
242
+ ? `上次我们聊到:${recentRecap}\n\n如果你还想接着那个点继续,我们可以从那里往下走;如果想换个方向也可以。`
243
+ : `上次我们主要聊到:${recentRecap}\n\n这次你想从哪里继续?`;
244
+ }
245
+
246
+ return continuationLike
247
+ ? `${greetingText}\n\n上次我们聊到:${recentRecap}\n如果你还想接着那个点继续,我们可以从那里往下走;如果想换个方向也可以。`
248
+ : `${greetingText}\n\n上次我们主要聊到:${recentRecap}\n这次你想从哪里继续,或者换个方向也可以。`;
249
+ };
@@ -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
+ };