vibe-agent-toolkit 0.1.16-rc.5 → 0.1.18

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/bin/vat +3 -3
  2. package/package.json +3 -3
package/bin/vat CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  import { createRequire } from 'node:module';
9
9
  import { dirname, join } from 'node:path';
10
- import { fileURLToPath } from 'node:url';
10
+ import { fileURLToPath, pathToFileURL } from 'node:url';
11
11
 
12
12
  const __dirname = dirname(fileURLToPath(import.meta.url));
13
13
  const require = createRequire(import.meta.url);
@@ -17,5 +17,5 @@ const cliPkg = require.resolve('@vibe-agent-toolkit/cli/package.json');
17
17
  const cliRoot = dirname(cliPkg);
18
18
  const wrapperPath = join(cliRoot, 'dist/bin/vat.js');
19
19
 
20
- // Execute CLI wrapper
21
- import(wrapperPath);
20
+ // Execute CLI wrapper (use file:// URL for Windows compatibility with Node.js v24+)
21
+ import(pathToFileURL(wrapperPath).href);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-agent-toolkit",
3
- "version": "0.1.16-rc.5",
3
+ "version": "0.1.18",
4
4
  "description": "Modular toolkit for building, testing, and deploying portable AI agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,8 +30,8 @@
30
30
  },
31
31
  "homepage": "https://github.com/jdutton/vibe-agent-toolkit#readme",
32
32
  "dependencies": {
33
- "@vibe-agent-toolkit/cli": "0.1.16-rc.5",
34
- "@vibe-agent-toolkit/vat-development-agents": "0.1.16-rc.5"
33
+ "@vibe-agent-toolkit/cli": "0.1.18",
34
+ "@vibe-agent-toolkit/vat-development-agents": "0.1.18"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"