refactor(cursor): Update installation instructions for clarity and consistency

This commit is contained in:
Alex Newman
2025-12-29 22:40:03 -05:00
parent 101d2dd514
commit 110d055b8b
4 changed files with 29 additions and 50 deletions
+16 -16
View File
@@ -62,11 +62,11 @@ See [CONTEXT-INJECTION.md](CONTEXT-INJECTION.md) for details.
### Quick Install (Recommended)
```bash
# Install for current project
claude-mem cursor install
# Or install globally for all projects
# Install globally for all projects (recommended)
claude-mem cursor install user
# Or install for current project only
claude-mem cursor install
```
### Manual Installation
@@ -74,7 +74,18 @@ claude-mem cursor install user
<details>
<summary>Click to expand manual installation steps</summary>
**Project-level** (recommended for team sharing):
**User-level** (recommended - applies to all projects):
```bash
# Copy hooks.json to your home directory
cp cursor-hooks/hooks.json ~/.cursor/hooks.json
# Copy hook scripts
mkdir -p ~/.cursor/hooks
cp cursor-hooks/*.sh ~/.cursor/hooks/
chmod +x ~/.cursor/hooks/*.sh
```
**Project-level** (for per-project hooks):
```bash
# Copy hooks.json to your project
mkdir -p .cursor
@@ -86,17 +97,6 @@ cp cursor-hooks/*.sh .cursor/hooks/
chmod +x .cursor/hooks/*.sh
```
**User-level** (applies to all projects):
```bash
# Copy hooks.json to your home directory
cp cursor-hooks/hooks.json ~/.cursor/hooks.json
# Copy hook scripts
mkdir -p ~/.cursor/hooks
cp cursor-hooks/*.sh ~/.cursor/hooks/
chmod +x ~/.cursor/hooks/*.sh
```
</details>
### After Installation