@velum-labs/routekit-tool-cursor 0.9.4 → 0.9.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/dist/launch.js +3 -1
- package/package.json +5 -5
package/dist/launch.js
CHANGED
|
@@ -22,10 +22,12 @@ export function cursorIdeInstructions(model) {
|
|
|
22
22
|
return `Cursor IDE is connected to the gateway. Choose "${model}" in the Agent model picker.`;
|
|
23
23
|
}
|
|
24
24
|
export function cursorInstructions(publicUrl, model, apiKey) {
|
|
25
|
+
// Cursor's custom-model settings reject ids containing "/", so advertise
|
|
26
|
+
// the dash-separated spelling the gateway's /v1/cursor routes resolve.
|
|
25
27
|
return [
|
|
26
28
|
"In Cursor Settings -> Models, enable Override OpenAI Base URL and set:",
|
|
27
29
|
` Override OpenAI Base URL : ${publicUrl}/v1/cursor`,
|
|
28
|
-
` Model name : ${model}`,
|
|
30
|
+
` Model name : ${model.replace("/", "-")}`,
|
|
29
31
|
` OpenAI API Key : ${apiKey ?? "routekit-local"}`
|
|
30
32
|
].join("\n");
|
|
31
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@velum-labs/routekit-tool-cursor",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.6",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/velum-labs/handoffkit.git",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@velum-labs/cursorkit": "0.2.0",
|
|
30
30
|
"@zed-industries/agent-client-protocol": "0.4.5",
|
|
31
31
|
"zod": "4.4.3",
|
|
32
|
-
"@velum-labs/routekit-contracts": "0.9.
|
|
33
|
-
"@velum-labs/routekit-
|
|
34
|
-
"@velum-labs/routekit-
|
|
35
|
-
"@velum-labs/routekit-
|
|
32
|
+
"@velum-labs/routekit-contracts": "0.9.6",
|
|
33
|
+
"@velum-labs/routekit-harness-core": "0.9.6",
|
|
34
|
+
"@velum-labs/routekit-runtime": "0.9.6",
|
|
35
|
+
"@velum-labs/routekit-tools": "0.9.6"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"llm",
|