specmem-hardwicksoftware 3.7.47 → 3.7.48

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.
@@ -148,6 +148,10 @@ export class ExtractSessions {
148
148
  logger.warn({ error: serializeError(batchError) }, 'batch embedding failed, falling back to individual');
149
149
  embeddings = await Promise.all(texts.map(t => this.embeddingProvider.generateEmbedding(t)));
150
150
  }
151
+
152
+ // Yield to event loop between batches to prevent UI freeze
153
+ await new Promise(resolve => setTimeout(resolve, 10));
154
+ }
151
155
  try {
152
156
  // PROJECT ISOLATION: Get fresh project path at call time
153
157
  const projectPath = getProjectPathForInsert();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specmem-hardwicksoftware",
3
- "version": "3.7.47",
3
+ "version": "3.7.48",
4
4
  "type": "module",
5
5
  "description": "Your Claude Code sessions don't have to start from scratch anymore — SpecMem gives your AI real memory. It won't forget your conversations, your code, or your architecture decisions between sessions. That's the whole point. Semantic code indexing that actually works: TypeScript, JavaScript, Python, Go, Rust, Java, Kotlin, C, C++, HTML and more. It doesn't just track functions — it gets classes, methods, fields, constants, enums, macros, imports, structs, the whole codebase graph. There's chat memory too, powered by pgvector embeddings. You've also got token compression, team coordination, multi-agent comms, and file watching built in. 74+ MCP tools. Runs on PostgreSQL + Docker. It's kind of a big deal. justcalljon.pro",
6
6
  "main": "dist/index.js",