@borgee/agents-host 0.1.0 → 0.1.2

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.
@@ -1,5 +1,5 @@
1
1
  import { randomUUID } from 'node:crypto';
2
- import { spawn } from 'node:child_process';
2
+ import spawn from 'cross-spawn';
3
3
  /**
4
4
  * CLI client for the Claude Code CLI (`claude`) non-interactive mode, with
5
5
  * native per-channel session continuity.
@@ -1,5 +1,5 @@
1
1
  import { randomUUID } from 'node:crypto';
2
- import { spawn } from 'node:child_process';
2
+ import spawn from 'cross-spawn';
3
3
  /**
4
4
  * CLI client for the GitHub Copilot CLI (`copilot`) non-interactive mode,
5
5
  * with native per-channel session continuity.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borgee/agents-host",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,9 +21,11 @@
21
21
  },
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
+ "cross-spawn": "^7.0.6",
24
25
  "@borgee/plugin-sdk": "0.1.0"
25
26
  },
26
27
  "devDependencies": {
28
+ "@types/cross-spawn": "^6.0.6",
27
29
  "@types/node": "^24.3.0",
28
30
  "tsx": "^4.20.5",
29
31
  "typescript": "^5.9.3",