@fusionkit/runner 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.
Files changed (2) hide show
  1. package/dist/agents.js +7 -0
  2. package/package.json +4 -4
package/dist/agents.js CHANGED
@@ -17,6 +17,13 @@ export function buildAgentCommand(kind, prompt, ctx) {
17
17
  cmd: "codex",
18
18
  args: ["exec", "--skip-git-repo-check", prompt]
19
19
  };
20
+ case "cursor":
21
+ // The Cursor CLI in non-interactive print mode, wrapped as-is. --force
22
+ // auto-approves tool actions (the vendor's equivalent of acceptEdits).
23
+ return {
24
+ cmd: "cursor-agent",
25
+ args: ["-p", prompt, "--force"]
26
+ };
20
27
  case "pi":
21
28
  // Pi is a host-runtime harness with no vendor CLI to wrap: it runs only
22
29
  // through the AI SDK harness session backend, which ignores this argv
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fusionkit/runner",
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/protocol": "0.1.3",
29
- "@fusionkit/workspace": "0.1.3",
30
- "@fusionkit/sdk": "0.1.3"
28
+ "@fusionkit/sdk": "0.1.5",
29
+ "@fusionkit/workspace": "0.1.5",
30
+ "@fusionkit/protocol": "0.1.5"
31
31
  }
32
32
  }