vent-hq 0.5.6 → 0.5.8

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Stephan Gazarov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.mjs CHANGED
@@ -142,11 +142,9 @@ function log(msg) {
142
142
  async function* streamRunEvents(runId, apiKey, signal) {
143
143
  const url = `${API_BASE}/runs/${runId}/stream`;
144
144
  log(`connecting to ${url}`);
145
- const connectTimeout = AbortSignal.timeout(3e4);
146
- const combinedSignal = signal ? AbortSignal.any([signal, connectTimeout]) : connectTimeout;
147
145
  const res = await fetch(url, {
148
146
  headers: { Authorization: `Bearer ${apiKey}` },
149
- signal: combinedSignal
147
+ signal
150
148
  });
151
149
  log(`response: status=${res.status} content-type=${res.headers.get("content-type")}`);
152
150
  if (!res.ok) {
@@ -6401,7 +6399,7 @@ async function main() {
6401
6399
  return 0;
6402
6400
  }
6403
6401
  if (command === "--version" || command === "-v") {
6404
- const pkg = await import("./package-LD6M7ITU.mjs");
6402
+ const pkg = await import("./package-UN55W5ZQ.mjs");
6405
6403
  console.log(`vent-hq ${pkg.default.version}`);
6406
6404
  return 0;
6407
6405
  }
@@ -4,7 +4,7 @@ import "./chunk-U4M3XDTH.mjs";
4
4
  // package.json
5
5
  var package_default = {
6
6
  name: "vent-hq",
7
- version: "0.4.2",
7
+ version: "0.5.7",
8
8
  type: "module",
9
9
  description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
10
  bin: {
@@ -4,7 +4,7 @@ import "./chunk-U4M3XDTH.mjs";
4
4
  // package.json
5
5
  var package_default = {
6
6
  name: "vent-hq",
7
- version: "0.5.4",
7
+ version: "0.5.8",
8
8
  type: "module",
9
9
  description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
10
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vent-hq",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "type": "module",
5
5
  "description": "Vent CLI — CI/CD for voice AI agents",
6
6
  "bin": {
@@ -9,10 +9,6 @@
9
9
  "files": [
10
10
  "dist"
11
11
  ],
12
- "scripts": {
13
- "build": "node scripts/bundle.mjs",
14
- "clean": "rm -rf dist"
15
- },
16
12
  "keywords": [
17
13
  "vent",
18
14
  "cli",
@@ -37,8 +33,12 @@
37
33
  },
38
34
  "devDependencies": {
39
35
  "@types/ws": "^8.5.0",
40
- "@vent/relay-client": "workspace:*",
41
- "@vent/shared": "workspace:*",
42
- "esbuild": "^0.24.0"
36
+ "esbuild": "^0.24.0",
37
+ "@vent/relay-client": "0.1.0",
38
+ "@vent/shared": "0.0.1"
39
+ },
40
+ "scripts": {
41
+ "build": "node scripts/bundle.mjs",
42
+ "clean": "rm -rf dist"
43
43
  }
44
- }
44
+ }
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.5.0",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.4.5",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.3.10",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.4.4",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.5.3",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.5.5",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.4.3",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.5.1",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.5.2",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.4.1",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };
@@ -1,51 +0,0 @@
1
- #!/usr/bin/env node
2
- import "./chunk-U4M3XDTH.mjs";
3
-
4
- // package.json
5
- var package_default = {
6
- name: "vent-hq",
7
- version: "0.4.0",
8
- type: "module",
9
- description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
- bin: {
11
- "vent-hq": "dist/index.mjs"
12
- },
13
- files: [
14
- "dist"
15
- ],
16
- scripts: {
17
- build: "node scripts/bundle.mjs",
18
- clean: "rm -rf dist"
19
- },
20
- keywords: [
21
- "vent",
22
- "cli",
23
- "voice",
24
- "agent",
25
- "testing",
26
- "ci-cd"
27
- ],
28
- license: "MIT",
29
- publishConfig: {
30
- access: "public"
31
- },
32
- repository: {
33
- type: "git",
34
- url: "https://github.com/vent-hq/vent",
35
- directory: "packages/cli"
36
- },
37
- homepage: "https://ventmcp.dev",
38
- dependencies: {
39
- "@clack/prompts": "^1.1.0",
40
- ws: "^8.18.0"
41
- },
42
- devDependencies: {
43
- "@types/ws": "^8.5.0",
44
- "@vent/relay-client": "workspace:*",
45
- "@vent/shared": "workspace:*",
46
- esbuild: "^0.24.0"
47
- }
48
- };
49
- export {
50
- package_default as default
51
- };