@rama_nigg/open-cursor 2.1.5 → 2.1.6
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 +4 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,14 +21,14 @@ Note: if `npm` is available, `install.sh` installs/upgrades `@rama_nigg/open-cur
|
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
npm install -g @rama_nigg/open-cursor
|
|
24
|
-
open-cursor install
|
|
24
|
+
npm exec -- @rama_nigg/open-cursor install
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
Upgrade later with:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
npm update -g @rama_nigg/open-cursor
|
|
31
|
-
open-cursor
|
|
31
|
+
npm exec -- @rama_nigg/open-cursor install
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
**Option C: TUI Installer**
|
|
@@ -48,7 +48,7 @@ Install the cursor-acp plugin for OpenCode:
|
|
|
48
48
|
|
|
49
49
|
1. Preferred install (npm):
|
|
50
50
|
npm install -g @rama_nigg/open-cursor
|
|
51
|
-
open-cursor install
|
|
51
|
+
npm exec -- @rama_nigg/open-cursor install
|
|
52
52
|
|
|
53
53
|
2. Fallback (build from source):
|
|
54
54
|
git clone https://github.com/Nomadcxx/opencode-cursor.git
|
|
@@ -131,19 +131,12 @@ opencode run "your prompt" --model cursor-acp/auto
|
|
|
131
131
|
opencode run "your prompt" --model cursor-acp/sonnet-4.5
|
|
132
132
|
```
|
|
133
133
|
|
|
134
|
-
If installed via npm, manage setup with:
|
|
135
|
-
|
|
136
|
-
```bash
|
|
137
|
-
open-cursor status
|
|
138
|
-
open-cursor sync-models
|
|
139
|
-
```
|
|
140
|
-
|
|
141
134
|
## Models
|
|
142
135
|
|
|
143
136
|
Models are pulled from `cursor-agent models` and written to your config during installation. If Cursor adds new models later:
|
|
144
137
|
|
|
145
138
|
```bash
|
|
146
|
-
open-cursor
|
|
139
|
+
npm exec -- @rama_nigg/open-cursor install
|
|
147
140
|
```
|
|
148
141
|
|
|
149
142
|
Or, if you installed from source (no npm CLI):
|
package/package.json
CHANGED