4runr-cursor-setup 0.1.13 → 0.1.15
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/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,6 +47,19 @@ npx -y 4runr-cursor-setup@latest doctor [--fix] [--strict] [--json] [--dry-run]
|
|
|
47
47
|
- `governance`: Governance commands (decision, scope-change)
|
|
48
48
|
- `debugging`: Debugging commands (repro, verify)
|
|
49
49
|
|
|
50
|
+
## Troubleshooting
|
|
51
|
+
|
|
52
|
+
### npx Cache Issues
|
|
53
|
+
|
|
54
|
+
If `npx -y 4runr-cursor-setup@latest` fails with `ETARGET` but the version exists on npm:
|
|
55
|
+
|
|
56
|
+
This is an npx cache desync. Clear the cache and retry:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npm cache clean --force
|
|
60
|
+
Remove-Item -Recurse -Force "$env:LOCALAPPDATA\npm-cache\_npx" -ErrorAction SilentlyContinue
|
|
61
|
+
```
|
|
62
|
+
|
|
50
63
|
## Development
|
|
51
64
|
|
|
52
65
|
```bash
|