specmem-hardwicksoftware 3.7.45 → 3.7.46
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.
- package/package.json +1 -1
- package/scripts/specmem-init.cjs +12 -2
- package/specmem/supervisord.conf +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specmem-hardwicksoftware",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.46",
|
|
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",
|
package/scripts/specmem-init.cjs
CHANGED
|
@@ -2884,7 +2884,7 @@ function getContainerVersionInfo() {
|
|
|
2884
2884
|
const cvPath = path.join(__dirname, '..', 'container', 'container-version.json');
|
|
2885
2885
|
return JSON.parse(fs.readFileSync(cvPath, 'utf8'));
|
|
2886
2886
|
} catch (e) {
|
|
2887
|
-
return { version: '1.0.0', image: 'ghcr.io/
|
|
2887
|
+
return { version: '1.0.0', image: 'ghcr.io/jonhardwick-spec/specmem-brain', minSpecmemVersion: '3.7.0' };
|
|
2888
2888
|
}
|
|
2889
2889
|
}
|
|
2890
2890
|
|
|
@@ -10087,9 +10087,19 @@ ${lastOutput}
|
|
|
10087
10087
|
|
|
10088
10088
|
// ==========================================================================
|
|
10089
10089
|
// STAGE 1: MODEL DOWNLOAD — auto-fetch any missing ML models
|
|
10090
|
+
// SKIP if container mode (models are in the brain container image)
|
|
10090
10091
|
// ==========================================================================
|
|
10091
10092
|
ui.setStage(1, 'MODEL DOWNLOAD');
|
|
10092
|
-
|
|
10093
|
+
// Check if container runtime is available - if so, models are in container, skip download
|
|
10094
|
+
const rtForModels = (() => {
|
|
10095
|
+
try { execSync('which podman 2>/dev/null', { stdio: 'pipe' }); return 'podman'; } catch { try { execSync('which docker 2>/dev/null', { stdio: 'pipe' }); return 'docker'; } catch { return null; } }
|
|
10096
|
+
})();
|
|
10097
|
+
if (rtForModels) {
|
|
10098
|
+
initLog('[MODELS] Container runtime detected — models are in container image, skipping host download');
|
|
10099
|
+
if (ui) ui.setSubStatus('✓ Models in container (skipping host download)');
|
|
10100
|
+
} else {
|
|
10101
|
+
await ensureModels(ui);
|
|
10102
|
+
}
|
|
10093
10103
|
|
|
10094
10104
|
// ==========================================================================
|
|
10095
10105
|
// CONTAINER FAST-PATH: If podman/docker is available, use container mode
|
package/specmem/supervisord.conf
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
; ============================================
|
|
2
2
|
; SPECMEM BRAIN CONTAINER - DYNAMIC SUPERVISORD CONFIG
|
|
3
|
-
; Generated by specmem-init at 2026-03-
|
|
3
|
+
; Generated by specmem-init at 2026-03-10T03:09:08.421Z
|
|
4
4
|
; Thread counts from model-config.json resourcePool
|
|
5
5
|
; ============================================
|
|
6
6
|
|