@fusionkit/handoff 0.1.3 → 0.1.5

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/agents.d.ts CHANGED
@@ -6,6 +6,13 @@ export declare const agents: {
6
6
  codex(options?: {
7
7
  version?: string;
8
8
  }): AgentSpec;
9
+ /**
10
+ * Cursor CLI (cursor-agent), wrapped as-is. Runs against a Cursorkit bridge
11
+ * whose local-model backend points at the fusion gateway.
12
+ */
13
+ cursor(options?: {
14
+ version?: string;
15
+ }): AgentSpec;
9
16
  /**
10
17
  * Pi: a host-runtime coding harness driven through the AI SDK harness
11
18
  * backend. Runs only on a session tier that registers the pi binding
package/dist/agents.js CHANGED
@@ -14,6 +14,13 @@ export const agents = {
14
14
  codex(options = {}) {
15
15
  return spec("codex", options.version);
16
16
  },
17
+ /**
18
+ * Cursor CLI (cursor-agent), wrapped as-is. Runs against a Cursorkit bridge
19
+ * whose local-model backend points at the fusion gateway.
20
+ */
21
+ cursor(options = {}) {
22
+ return spec("cursor", options.version);
23
+ },
17
24
  /**
18
25
  * Pi: a host-runtime coding harness driven through the AI SDK harness
19
26
  * backend. Runs only on a session tier that registers the pi binding
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fusionkit/handoff",
3
3
  "private": false,
4
- "version": "0.1.3",
4
+ "version": "0.1.5",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/velum-labs/handoffkit.git",
@@ -25,8 +25,8 @@
25
25
  "provenance": true
26
26
  },
27
27
  "dependencies": {
28
- "@fusionkit/sdk": "0.1.3",
29
- "@fusionkit/protocol": "0.1.3",
30
- "@fusionkit/workspace": "0.1.3"
28
+ "@fusionkit/protocol": "0.1.5",
29
+ "@fusionkit/sdk": "0.1.5",
30
+ "@fusionkit/workspace": "0.1.5"
31
31
  }
32
32
  }