Unofficial community tool. cbm-tool is an independent community wrapper for codebase-memory-mcp. It is not maintained, endorsed, or supported by DeusData / the upstream codebase-memory-mcp project.
Highlights
- Refuse
cbm update selffor package-managed installs (AUR / apt / rpm / Homebrew) and non-writable paths; only update user installs under~/.local/bin. - Default repository README to Chinese; move English docs to
README.en.md. - Add
cbm -hpreview screenshot to READMEs.
What's in this release
cbm— Linux / macOS Bash entrypointcbm.ps1— Windows PowerShell entrypoint (UTF-8 BOM; prefers npm.cmdshim)install/install.sh— Linux / macOS installer (supportscurl ... | bashone-liner)install/install.ps1— Windows PowerShell installer (supportsirm ... | iex)install/install.cmd— Windows CMD installer (supports CMD one-liner)install/uninstall.sh— Linux / macOS uninstaller (supportscurl ... | bashone-liner)install/uninstall.ps1— Windows PowerShell uninstaller (supportsirm ... | iex)install/uninstall.cmd— Windows CMD uninstaller (supports CMD one-liner)share/cbm/rules/codebase-memory.md— default rule templateSHA256SUMS— SHA-256 checksum manifest for all assetscbm.sha256,cbm.ps1.sha256— per-asset checksums
One-liners
Linux / macOS install:
curl -fsSL https://github.com/fxjs/cbm-tool/releases/latest/download/install.sh | bashLinux / macOS uninstall:
curl -fsSL https://github.com/fxjs/cbm-tool/releases/latest/download/uninstall.sh | bashWindows PowerShell install:
irm https://github.com/fxjs/cbm-tool/releases/latest/download/install.ps1 | iexWindows PowerShell uninstall:
irm https://github.com/fxjs/cbm-tool/releases/latest/download/uninstall.ps1 | iexWindows CMD install:
curl -fsSL -o %TEMP%\cbm-install.cmd https://github.com/fxjs/cbm-tool/releases/latest/download/install.cmd && %TEMP%\cbm-install.cmdWindows CMD uninstall:
curl -fsSL -o %TEMP%\cbm-uninstall.cmd https://github.com/fxjs/cbm-tool/releases/latest/download/uninstall.cmd && %TEMP%\cbm-uninstall.cmdUpdater / uninstaller notes
cbm update selfdownloads the latestcbm-toolrelease asset and verifies its SHA-256 checksum before replacing the installed script.cbm update codebase-memory-mcpruns the official upstream updater and is separate from cbm-tool's own update mechanism.cbm uninstall(or the uninstall one-liners) purges editor setup, runscodebase-memory-mcp uninstall(indexes kept by default), removes the cbm binary/shim, and clears shell PATH markers on Unix.
Verify downloads
sha256sum -c SHA256SUMSOn Windows:
Get-FileHash -Path cbm.ps1 -Algorithm SHA256