@velum-labs/routekit-tool-cursor 0.16.8 → 0.17.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 +5 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,3 +21,8 @@ import { cursorTool } from "@velum-labs/routekit-tool-cursor";
|
|
|
21
21
|
|
|
22
22
|
- CLI reference: [../../docs/cli.md](../../docs/cli.md)
|
|
23
23
|
- Maintainer reference: [../../docs/typescript-reference.md](../../docs/typescript-reference.md)
|
|
24
|
+
|
|
25
|
+
## Native client ownership
|
|
26
|
+
|
|
27
|
+
RouteKit does not track Cursor sessions. The public `routekit cursor` command
|
|
28
|
+
configures BYOK; Cursor owns its own history and lifecycle.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ToolIntegration } from "@velum-labs/routekit-tools";
|
|
2
2
|
export declare const cursorTool: ToolIntegration;
|
|
3
|
+
export type { CursorDriverConfig } from "./driver.js";
|
|
4
|
+
export { createCursorDriver, cursorDriverConfigSchema } from "./driver.js";
|
|
3
5
|
export { cursorByokBaseUrl, cursorInstructions, launchCursor } from "./launch.js";
|
|
4
6
|
export { CURSOR_AGENTS_DIRNAME, cursorSubagentMarkdown, scaffoldCursorSubagents } from "./subagents.js";
|
|
5
|
-
export { createCursorDriver, cursorDriverConfigSchema } from "./driver.js";
|
|
6
|
-
export type { CursorDriverConfig } from "./driver.js";
|
package/dist/index.js
CHANGED
|
@@ -25,6 +25,6 @@ export const cursorTool = {
|
|
|
25
25
|
reasoning_controls: "degraded"
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
|
+
export { createCursorDriver, cursorDriverConfigSchema } from "./driver.js";
|
|
28
29
|
export { cursorByokBaseUrl, cursorInstructions, launchCursor } from "./launch.js";
|
|
29
30
|
export { CURSOR_AGENTS_DIRNAME, cursorSubagentMarkdown, scaffoldCursorSubagents } from "./subagents.js";
|
|
30
|
-
export { createCursorDriver, cursorDriverConfigSchema } from "./driver.js";
|
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.17.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/velum-labs/routekit.git",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@zed-industries/agent-client-protocol": "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.17.0",
|
|
32
|
+
"@velum-labs/routekit-harness-core": "0.17.0",
|
|
33
|
+
"@velum-labs/routekit-runtime": "0.17.0",
|
|
34
|
+
"@velum-labs/routekit-tools": "0.17.0"
|
|
35
35
|
},
|
|
36
36
|
"keywords": [
|
|
37
37
|
"llm",
|