refactor(cursor): Migrate setup commands from npm to Bun for improved performance

- Updated installation and setup commands in documentation to use Bun instead of npm.
- Adjusted commands across various setup guides including QUICKSTART.md, STANDALONE-SETUP.md, and others.
- Ensured consistency in command usage for all platforms (macOS, Linux, Windows).

This change enhances the installation process and aligns with the recent performance improvements associated with Bun.
This commit is contained in:
Alex Newman
2025-12-29 22:15:47 -05:00
parent b5e45377b0
commit d160df4b86
6 changed files with 56 additions and 56 deletions
+2 -2
View File
@@ -16,10 +16,10 @@ Give your Cursor AI persistent memory across sessions. Your agent remembers what
```bash
# Clone and build
git clone https://github.com/thedotmack/claude-mem.git
cd claude-mem && npm install && npm run build
cd claude-mem && bun install && bun run build
# Interactive setup (configures provider + installs hooks)
npm run cursor:setup
bun run cursor:setup
```
---