claude-conversation-memory-mcp 0.5.0 → 1.0.0

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 (55) hide show
  1. package/README.md +16 -0
  2. package/dist/ConversationMemory.d.ts +151 -10
  3. package/dist/ConversationMemory.d.ts.map +1 -1
  4. package/dist/ConversationMemory.js +127 -10
  5. package/dist/ConversationMemory.js.map +1 -1
  6. package/dist/cache/QueryCache.d.ts +215 -0
  7. package/dist/cache/QueryCache.d.ts.map +1 -0
  8. package/dist/cache/QueryCache.js +294 -0
  9. package/dist/cache/QueryCache.js.map +1 -0
  10. package/dist/mcp-server.d.ts.map +1 -1
  11. package/dist/mcp-server.js +3 -0
  12. package/dist/mcp-server.js.map +1 -1
  13. package/dist/parsers/ConversationParser.d.ts +62 -3
  14. package/dist/parsers/ConversationParser.d.ts.map +1 -1
  15. package/dist/parsers/ConversationParser.js +50 -3
  16. package/dist/parsers/ConversationParser.js.map +1 -1
  17. package/dist/parsers/DecisionExtractor.d.ts +61 -3
  18. package/dist/parsers/DecisionExtractor.d.ts.map +1 -1
  19. package/dist/parsers/DecisionExtractor.js +47 -3
  20. package/dist/parsers/DecisionExtractor.js.map +1 -1
  21. package/dist/parsers/GitIntegrator.d.ts +88 -3
  22. package/dist/parsers/GitIntegrator.d.ts.map +1 -1
  23. package/dist/parsers/GitIntegrator.js +68 -3
  24. package/dist/parsers/GitIntegrator.js.map +1 -1
  25. package/dist/parsers/MistakeExtractor.d.ts +62 -3
  26. package/dist/parsers/MistakeExtractor.d.ts.map +1 -1
  27. package/dist/parsers/MistakeExtractor.js +50 -3
  28. package/dist/parsers/MistakeExtractor.js.map +1 -1
  29. package/dist/parsers/RequirementsExtractor.d.ts +95 -4
  30. package/dist/parsers/RequirementsExtractor.d.ts.map +1 -1
  31. package/dist/parsers/RequirementsExtractor.js +73 -4
  32. package/dist/parsers/RequirementsExtractor.js.map +1 -1
  33. package/dist/storage/ConversationStorage.d.ts +271 -2
  34. package/dist/storage/ConversationStorage.d.ts.map +1 -1
  35. package/dist/storage/ConversationStorage.js +356 -7
  36. package/dist/storage/ConversationStorage.js.map +1 -1
  37. package/dist/tools/ToolDefinitions.d.ts +39 -0
  38. package/dist/tools/ToolDefinitions.d.ts.map +1 -1
  39. package/dist/tools/ToolDefinitions.js +37 -0
  40. package/dist/tools/ToolDefinitions.js.map +1 -1
  41. package/dist/tools/ToolHandlers.d.ts +528 -14
  42. package/dist/tools/ToolHandlers.d.ts.map +1 -1
  43. package/dist/tools/ToolHandlers.js +691 -14
  44. package/dist/tools/ToolHandlers.js.map +1 -1
  45. package/dist/types/ToolTypes.d.ts +54 -0
  46. package/dist/types/ToolTypes.d.ts.map +1 -1
  47. package/dist/utils/Logger.d.ts +67 -0
  48. package/dist/utils/Logger.d.ts.map +1 -0
  49. package/dist/utils/Logger.js +119 -0
  50. package/dist/utils/Logger.js.map +1 -0
  51. package/dist/utils/constants.d.ts +75 -0
  52. package/dist/utils/constants.d.ts.map +1 -0
  53. package/dist/utils/constants.js +105 -0
  54. package/dist/utils/constants.js.map +1 -0
  55. package/package.json +1 -1
@@ -1,6 +1,20 @@
1
1
  /**
2
- * Conversation Storage Layer
3
- * CRUD operations for all conversation-related data
2
+ * Conversation Storage Layer - CRUD operations for all conversation-related data.
3
+ *
4
+ * This class provides the data access layer for the conversation-memory system.
5
+ * It handles storing and retrieving conversations, messages, tool uses, decisions,
6
+ * mistakes, requirements, and git commits.
7
+ *
8
+ * All store operations use transactions for atomicity and performance.
9
+ * All JSON fields are automatically serialized/deserialized.
10
+ *
11
+ * @example
12
+ * ```typescript
13
+ * const storage = new ConversationStorage(sqliteManager);
14
+ * await storage.storeConversations(conversations);
15
+ * const conv = storage.getConversation('conv-123');
16
+ * const timeline = storage.getFileTimeline('src/index.ts');
17
+ * ```
4
18
  */
5
19
  import type { SQLiteManager } from "./SQLiteManager.js";
6
20
  import type { Conversation, Message, ToolUse, ToolResult, FileEdit, ThinkingBlock } from "../parsers/ConversationParser.js";
@@ -8,30 +22,285 @@ import type { Decision } from "../parsers/DecisionExtractor.js";
8
22
  import type { Mistake } from "../parsers/MistakeExtractor.js";
9
23
  import type { GitCommit } from "../parsers/GitIntegrator.js";
10
24
  import type { Requirement, Validation } from "../parsers/RequirementsExtractor.js";
25
+ import { type QueryCacheConfig, type CacheStats } from "../cache/QueryCache.js";
26
+ /**
27
+ * Data access layer for conversation memory storage.
28
+ *
29
+ * Provides CRUD operations for all conversation-related entities using SQLite.
30
+ * Supports optional caching for frequently accessed queries.
31
+ */
11
32
  export declare class ConversationStorage {
12
33
  private db;
34
+ private cache;
35
+ /**
36
+ * Create a new ConversationStorage instance.
37
+ *
38
+ * @param db - SQLiteManager instance for database access
39
+ */
13
40
  constructor(db: SQLiteManager);
41
+ /**
42
+ * Enable query result caching.
43
+ *
44
+ * Caching improves performance for frequently accessed queries by storing
45
+ * results in memory. Cache is automatically invalidated when data changes.
46
+ *
47
+ * @param config - Cache configuration (maxSize and ttlMs)
48
+ *
49
+ * @example
50
+ * ```typescript
51
+ * storage.enableCache({ maxSize: 100, ttlMs: 300000 });
52
+ * ```
53
+ */
54
+ enableCache(config: QueryCacheConfig): void;
55
+ /**
56
+ * Disable query result caching.
57
+ *
58
+ * Clears all cached data and stops caching new queries.
59
+ */
60
+ disableCache(): void;
61
+ /**
62
+ * Check if caching is enabled.
63
+ *
64
+ * @returns True if caching is enabled
65
+ */
66
+ isCacheEnabled(): boolean;
67
+ /**
68
+ * Clear all cached query results.
69
+ *
70
+ * Clears the cache but keeps caching enabled.
71
+ */
72
+ clearCache(): void;
73
+ /**
74
+ * Get cache statistics.
75
+ *
76
+ * Returns performance metrics including hits, misses, hit rate, and evictions.
77
+ *
78
+ * @returns Cache statistics or null if caching is disabled
79
+ *
80
+ * @example
81
+ * ```typescript
82
+ * const stats = storage.getCacheStats();
83
+ * if (stats) {
84
+ * console.log(`Hit rate: ${(stats.hitRate * 100).toFixed(1)}%`);
85
+ * }
86
+ * ```
87
+ */
88
+ getCacheStats(): CacheStats | null;
89
+ /**
90
+ * Store conversations in the database.
91
+ *
92
+ * Uses INSERT OR REPLACE to handle both new and updated conversations.
93
+ * All operations are performed in a single transaction for atomicity.
94
+ *
95
+ * @param conversations - Array of conversation objects to store
96
+ * @returns Promise that resolves when all conversations are stored
97
+ *
98
+ * @example
99
+ * ```typescript
100
+ * await storage.storeConversations([
101
+ * {
102
+ * id: 'conv-123',
103
+ * project_path: '/path/to/project',
104
+ * first_message_at: Date.now(),
105
+ * last_message_at: Date.now(),
106
+ * message_count: 42,
107
+ * git_branch: 'main',
108
+ * claude_version: '3.5',
109
+ * metadata: {},
110
+ * created_at: Date.now(),
111
+ * updated_at: Date.now()
112
+ * }
113
+ * ]);
114
+ * ```
115
+ */
14
116
  storeConversations(conversations: Conversation[]): Promise<void>;
117
+ /**
118
+ * Retrieve a single conversation by ID.
119
+ *
120
+ * @param id - Conversation ID to retrieve
121
+ * @returns Conversation object if found, null otherwise
122
+ *
123
+ * @example
124
+ * ```typescript
125
+ * const conv = storage.getConversation('conv-123');
126
+ * if (conv) {
127
+ * console.log(`${conv.message_count} messages on ${conv.git_branch}`);
128
+ * }
129
+ * ```
130
+ */
15
131
  getConversation(id: string): Conversation | null;
132
+ /**
133
+ * Store messages in the database.
134
+ *
135
+ * Stores all messages from conversations including content, metadata, and relationships.
136
+ * Uses INSERT OR REPLACE for idempotent storage.
137
+ *
138
+ * @param messages - Array of message objects to store
139
+ * @returns Promise that resolves when all messages are stored
140
+ *
141
+ * @example
142
+ * ```typescript
143
+ * await storage.storeMessages([
144
+ * {
145
+ * id: 'msg-123',
146
+ * conversation_id: 'conv-123',
147
+ * message_type: 'text',
148
+ * role: 'user',
149
+ * content: 'Hello',
150
+ * timestamp: Date.now(),
151
+ * is_sidechain: false,
152
+ * metadata: {}
153
+ * }
154
+ * ]);
155
+ * ```
156
+ */
16
157
  storeMessages(messages: Message[]): Promise<void>;
158
+ /**
159
+ * Store tool use records in the database.
160
+ *
161
+ * Records all tool invocations from assistant messages.
162
+ *
163
+ * @param toolUses - Array of tool use objects
164
+ * @returns Promise that resolves when stored
165
+ */
17
166
  storeToolUses(toolUses: ToolUse[]): Promise<void>;
167
+ /**
168
+ * Store tool execution results in the database.
169
+ *
170
+ * Records the output/results from tool invocations.
171
+ *
172
+ * @param toolResults - Array of tool result objects
173
+ * @returns Promise that resolves when stored
174
+ */
18
175
  storeToolResults(toolResults: ToolResult[]): Promise<void>;
176
+ /**
177
+ * Store file edit records in the database.
178
+ *
179
+ * Records all file modifications made during conversations.
180
+ *
181
+ * @param fileEdits - Array of file edit objects
182
+ * @returns Promise that resolves when stored
183
+ */
19
184
  storeFileEdits(fileEdits: FileEdit[]): Promise<void>;
185
+ /**
186
+ * Retrieve all edits for a specific file.
187
+ *
188
+ * @param filePath - Path to the file
189
+ * @returns Array of file edits, ordered by timestamp (most recent first)
190
+ */
20
191
  getFileEdits(filePath: string): FileEdit[];
192
+ /**
193
+ * Store thinking blocks in the database.
194
+ *
195
+ * Thinking blocks contain Claude's internal reasoning. They can be large and
196
+ * are optionally indexed based on the includeThinking flag.
197
+ *
198
+ * @param blocks - Array of thinking block objects
199
+ * @returns Promise that resolves when stored
200
+ */
21
201
  storeThinkingBlocks(blocks: ThinkingBlock[]): Promise<void>;
202
+ /**
203
+ * Store extracted decisions in the database.
204
+ *
205
+ * Decisions include architectural choices, technical decisions, and their rationale.
206
+ *
207
+ * @param decisions - Array of decision objects
208
+ * @returns Promise that resolves when stored
209
+ */
22
210
  storeDecisions(decisions: Decision[]): Promise<void>;
211
+ /**
212
+ * Retrieve all decisions related to a specific file.
213
+ *
214
+ * @param filePath - Path to the file
215
+ * @returns Array of decisions that reference this file
216
+ * @internal
217
+ */
23
218
  getDecisionsForFile(filePath: string): Decision[];
219
+ /**
220
+ * Store git commit records linked to conversations.
221
+ *
222
+ * Links git commits to the conversations where they were made or discussed.
223
+ *
224
+ * @param commits - Array of git commit objects
225
+ * @returns Promise that resolves when stored
226
+ */
24
227
  storeGitCommits(commits: GitCommit[]): Promise<void>;
25
228
  getCommitsForFile(filePath: string): GitCommit[];
229
+ /**
230
+ * Store extracted mistakes in the database.
231
+ *
232
+ * Mistakes include errors, bugs, and wrong approaches that were later corrected.
233
+ *
234
+ * @param mistakes - Array of mistake objects
235
+ * @returns Promise that resolves when stored
236
+ */
26
237
  storeMistakes(mistakes: Mistake[]): Promise<void>;
238
+ /**
239
+ * Store extracted requirements in the database.
240
+ *
241
+ * Requirements include dependencies, constraints, and specifications for components.
242
+ *
243
+ * @param requirements - Array of requirement objects
244
+ * @returns Promise that resolves when stored
245
+ */
27
246
  storeRequirements(requirements: Requirement[]): Promise<void>;
247
+ /**
248
+ * Store validation records in the database.
249
+ *
250
+ * Validations capture test results and performance data from conversations.
251
+ *
252
+ * @param validations - Array of validation objects
253
+ * @returns Promise that resolves when stored
254
+ */
28
255
  storeValidations(validations: Validation[]): Promise<void>;
256
+ /**
257
+ * Get the complete timeline of changes to a file.
258
+ *
259
+ * Combines file edits, git commits, and related decisions into a single timeline.
260
+ * This is a key method used by tools like checkBeforeModify and getFileEvolution.
261
+ *
262
+ * @param filePath - Path to the file
263
+ * @returns Object containing:
264
+ * - `file_path`: The file path queried
265
+ * - `edits`: All file edit records
266
+ * - `commits`: All git commits affecting this file
267
+ * - `decisions`: All decisions related to this file
268
+ *
269
+ * @example
270
+ * ```typescript
271
+ * const timeline = storage.getFileTimeline('src/index.ts');
272
+ * console.log(`${timeline.edits.length} edits`);
273
+ * console.log(`${timeline.commits.length} commits`);
274
+ * console.log(`${timeline.decisions.length} decisions`);
275
+ * ```
276
+ */
29
277
  getFileTimeline(filePath: string): {
30
278
  file_path: string;
31
279
  edits: FileEdit[];
32
280
  commits: GitCommit[];
33
281
  decisions: Decision[];
34
282
  };
283
+ /**
284
+ * Get statistics about the indexed conversation data.
285
+ *
286
+ * Returns counts of all major entity types stored in the database.
287
+ * Used for displaying indexing results and system health checks.
288
+ *
289
+ * @returns Object containing counts for:
290
+ * - `conversations`: Total conversations indexed
291
+ * - `messages`: Total messages stored
292
+ * - `decisions`: Total decisions extracted
293
+ * - `mistakes`: Total mistakes documented
294
+ * - `git_commits`: Total git commits linked
295
+ *
296
+ * @example
297
+ * ```typescript
298
+ * const stats = storage.getStats();
299
+ * console.log(`Indexed ${stats.conversations.count} conversations`);
300
+ * console.log(`Extracted ${stats.decisions.count} decisions`);
301
+ * console.log(`Linked ${stats.git_commits.count} commits`);
302
+ * ```
303
+ */
35
304
  getStats(): {
36
305
  conversations: {
37
306
  count: number;
@@ -1 +1 @@
1
- {"version":3,"file":"ConversationStorage.d.ts","sourceRoot":"","sources":["../../src/storage/ConversationStorage.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EACV,YAAY,EACZ,OAAO,EACP,OAAO,EACP,UAAU,EACV,QAAQ,EACR,aAAa,EACd,MAAM,kCAAkC,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAInF,qBAAa,mBAAmB;IAClB,OAAO,CAAC,EAAE;gBAAF,EAAE,EAAE,aAAa;IAI/B,kBAAkB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA4BtE,eAAe,CAAC,EAAE,EAAE,MAAM,GAAG,YAAY,GAAG,IAAI;IAiB1C,aAAa,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAiCjD,aAAa,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAwBjD,gBAAgB,CAAC,WAAW,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA4B1D,cAAc,CAAC,SAAS,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA0B1D,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE;IAUpC,mBAAmB,CAAC,MAAM,EAAE,aAAa,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAwB3D,cAAc,CAAC,SAAS,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA8B1D,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE;IAiB3C,eAAe,CAAC,OAAO,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA2B1D,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,EAAE;IAe1C,aAAa,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA6BjD,iBAAiB,CAAC,YAAY,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA4B7D,gBAAgB,CAAC,WAAW,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA4BhE,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG;QACjC,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,EAAE,QAAQ,EAAE,CAAC;QAClB,OAAO,EAAE,SAAS,EAAE,CAAC;QACrB,SAAS,EAAE,QAAQ,EAAE,CAAC;KACvB;IAcD,QAAQ,IAAI;QACV,aAAa,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;QACjC,QAAQ,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;QAC5B,SAAS,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;QAC7B,QAAQ,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;QAC5B,WAAW,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;KAChC;CAqBF"}
1
+ {"version":3,"file":"ConversationStorage.d.ts","sourceRoot":"","sources":["../../src/storage/ConversationStorage.ts"],"names":[],"mappings":"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"}