v12.6.1
thedotmack/claude-memv12.6.1May 5, 2026by thedotmack
AI Summary
This is a patch release (v12.6.1) that fixes two issues: resolving npm install failures in the marketplace caused by tree-sitter peer dependency conflicts, and restoring multi-core performance for chroma-mcp by removing ONNX/OpenBLAS thread limits.
Key Highlights
- Fixed marketplace npm install failure by moving tree-sitter grammar packages from devDependencies to dependencies and using --omit=dev --legacy-peer-deps
- Restored multi-core performance for chroma-mcp by removing ONNX/OpenBLAS thread cap from spawn environment
- Documented the --legacy-peer-deps rationale in runNpmInstallInMarketplace
Full Release Notes
## Patch release ### Fixed - **install:** marketplace `npm install` no longer fails on tree-sitter peer-dep ERESOLVE. Tree-sitter grammar packages moved from `devDependencies` to `dependencies` and the install command updated to `--omit=dev --legacy-peer-deps` (#2300). - **chroma-mcp:** removed ONNX/OpenBLAS thread cap from spawn env to restore performance on multi-core systems. ### Docs - Documented the `--legacy-peer-deps` rationale in `runNpmInstallInMarketplace`.