@velum-labs/routekit-tool-cursor 0.17.4 → 0.18.0
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 +10 -7
- package/dist/driver.js +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
# @velum-labs/routekit-tool-cursor
|
|
2
2
|
|
|
3
|
-
Product-neutral Cursor custom-endpoint setup and canonical ACP driver.
|
|
3
|
+
Product-neutral retained Cursor custom-endpoint setup and canonical ACP driver.
|
|
4
4
|
|
|
5
5
|
## Architecture
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
This package remains available as an internal compatibility integration, but
|
|
8
|
+
Cursor Desktop and `cursor-agent` are not current RouteKit client-support
|
|
9
|
+
surfaces. Cursor Desktop 3.12.30 rejected RouteKit model names before sending a
|
|
10
|
+
request to the retained `/v1/cursor` door. RouteKit also does not proxy or
|
|
11
|
+
emulate Cursor's backend protocol, so `cursor-agent` cannot use the gateway.
|
|
11
12
|
|
|
12
13
|
## Usage
|
|
13
14
|
|
|
@@ -24,5 +25,7 @@ import { cursorTool } from "@velum-labs/routekit-tool-cursor";
|
|
|
24
25
|
|
|
25
26
|
## Native client ownership
|
|
26
27
|
|
|
27
|
-
RouteKit does not track Cursor sessions
|
|
28
|
-
|
|
28
|
+
RouteKit does not track Cursor sessions, and there is no public `routekit
|
|
29
|
+
cursor` command. See the
|
|
30
|
+
[client compatibility contract](../../docs/routekit-supported-clients.md)
|
|
31
|
+
before making any support claim from this internal package.
|
package/dist/driver.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { spawn } from "node:child_process";
|
|
2
2
|
import { Readable, Writable } from "node:stream";
|
|
3
3
|
import { z } from "zod";
|
|
4
|
-
import { ClientSideConnection, PROTOCOL_VERSION, ndJsonStream } from "@
|
|
4
|
+
import { ClientSideConnection, PROTOCOL_VERSION, ndJsonStream } from "@agentclientprotocol/sdk";
|
|
5
5
|
import { AsyncChannel, HarnessError, DEFAULT_AUTOMATION_APPROVAL_POLICY, PendingRequests, asHarnessError, buildChildEnv, createCachedHarnessDriver, decideApproval, probeCliVersion, resolveDriverEnv, terminate } from "@velum-labs/routekit-harness-core";
|
|
6
6
|
const RESUME_CURSOR_VERSION = 1;
|
|
7
7
|
const DEFAULT_COMMAND = "cursor-agent";
|
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.
|
|
4
|
+
"version": "0.18.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/velum-labs/routekit.git",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"provenance": true
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@
|
|
29
|
+
"@agentclientprotocol/sdk": "0.4.5",
|
|
30
30
|
"zod": "4.4.3",
|
|
31
|
-
"@velum-labs/routekit-contracts": "0.
|
|
32
|
-
"@velum-labs/routekit-harness-core": "0.
|
|
33
|
-
"@velum-labs/routekit-runtime": "0.
|
|
34
|
-
"@velum-labs/routekit-tools": "0.
|
|
31
|
+
"@velum-labs/routekit-contracts": "0.18.0",
|
|
32
|
+
"@velum-labs/routekit-harness-core": "0.18.0",
|
|
33
|
+
"@velum-labs/routekit-runtime": "0.18.0",
|
|
34
|
+
"@velum-labs/routekit-tools": "0.18.0"
|
|
35
35
|
},
|
|
36
36
|
"keywords": [
|
|
37
37
|
"llm",
|