basemind 0.4.0-rc.2 → 0.4.0-rc.4
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/install.js +4 -3
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -25,9 +25,10 @@ function getPlatformTriple() {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
if (type === "Darwin") {
|
|
28
|
-
if (arch === "x64")
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
if (arch === "x64") {
|
|
29
|
+
throw new Error("Intel macOS (x86_64) is not supported; basemind ships only Apple Silicon (arm64) macOS binaries");
|
|
30
|
+
}
|
|
31
|
+
return "aarch64-apple-darwin";
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
throw new Error(`Unsupported platform: ${type} ${arch}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "basemind",
|
|
3
|
-
"version": "0.4.0-rc.
|
|
3
|
+
"version": "0.4.0-rc.4",
|
|
4
4
|
"description": "Full AI context layer over MCP — tree-sitter code-map, document RAG (PDF/Office/HTML/email + OCR + reranker), shared agent memory, on-demand web crawl, git history + blame + per-symbol diff. 300+ languages, 8 coding-agent harnesses, content-addressed Fjall + LanceDB.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-context",
|