pi-cursor-sdk 0.1.23 → 0.1.24
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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/docs/cursor-model-ux-spec.md +8 -8
- package/package.json +1 -1
- package/src/cursor-fallback-models.generated.ts +1140 -216
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.1.24 - 2026-05-28
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Refresh the bundled Cursor fallback model catalog from `@cursor/sdk@1.0.15`, including Claude Opus 4.8 context variants and the updated `opus-latest` alias target.
|
|
10
|
+
|
|
5
11
|
## 0.1.23 - 2026-05-28
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/README.md
CHANGED
|
@@ -129,7 +129,7 @@ Choose Cursor models interactively with `/model`, or pass a model on the command
|
|
|
129
129
|
pi --model cursor/composer-2.5
|
|
130
130
|
pi --model cursor/gpt-5.5@1m
|
|
131
131
|
pi --model cursor/gpt-5.5@272k
|
|
132
|
-
pi --model cursor/claude-opus-4-
|
|
132
|
+
pi --model cursor/claude-opus-4-8@300k
|
|
133
133
|
```
|
|
134
134
|
|
|
135
135
|
How to read model IDs:
|
|
@@ -165,8 +165,8 @@ Recommended context-variant ID format:
|
|
|
165
165
|
```text
|
|
166
166
|
cursor/gpt-5.5@1m
|
|
167
167
|
cursor/gpt-5.5@272k
|
|
168
|
-
cursor/claude-opus-4-
|
|
169
|
-
cursor/claude-opus-4-
|
|
168
|
+
cursor/claude-opus-4-8@1m
|
|
169
|
+
cursor/claude-opus-4-8@300k
|
|
170
170
|
cursor/composer-2.5
|
|
171
171
|
```
|
|
172
172
|
|
|
@@ -183,7 +183,7 @@ Avoid this old parameter encoding:
|
|
|
183
183
|
|
|
184
184
|
```text
|
|
185
185
|
cursor/gpt-5.5:context=1m;fast=false;reasoning=medium
|
|
186
|
-
cursor/claude-opus-4-
|
|
186
|
+
cursor/claude-opus-4-8:context=1m;effort=xhigh;thinking=true
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
Reason:
|
|
@@ -333,8 +333,8 @@ Examples:
|
|
|
333
333
|
cursor/gpt-5.5@272k
|
|
334
334
|
cursor/gpt-5.5@1m
|
|
335
335
|
|
|
336
|
-
cursor/claude-opus-4-
|
|
337
|
-
cursor/claude-opus-4-
|
|
336
|
+
cursor/claude-opus-4-8@300k
|
|
337
|
+
cursor/claude-opus-4-8@1m
|
|
338
338
|
|
|
339
339
|
cursor/grok-4.3@200k
|
|
340
340
|
cursor/grok-4.3@1m
|
|
@@ -630,12 +630,12 @@ Cursor params: reasoning=low; fast=true
|
|
|
630
630
|
|
|
631
631
|
No context variant.
|
|
632
632
|
|
|
633
|
-
### `claude-opus-4-
|
|
633
|
+
### `claude-opus-4-8`
|
|
634
634
|
|
|
635
635
|
Initial Cursor default:
|
|
636
636
|
|
|
637
637
|
```text
|
|
638
|
-
pi model: cursor/claude-opus-4-
|
|
638
|
+
pi model: cursor/claude-opus-4-8@1m
|
|
639
639
|
Cursor params: thinking=true; context=1m; effort=xhigh
|
|
640
640
|
pi thinking: xhigh
|
|
641
641
|
```
|
|
@@ -643,7 +643,7 @@ pi thinking: xhigh
|
|
|
643
643
|
After selecting the 300k variant:
|
|
644
644
|
|
|
645
645
|
```text
|
|
646
|
-
pi model: cursor/claude-opus-4-
|
|
646
|
+
pi model: cursor/claude-opus-4-8@300k
|
|
647
647
|
Cursor params: thinking=true; context=300k; effort=xhigh
|
|
648
648
|
pi contextWindow: 300000
|
|
649
649
|
```
|