vent-hq 0.8.32 → 0.8.34

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/index.mjs CHANGED
@@ -762,7 +762,7 @@ async function runCommand(args) {
762
762
  const cfgPlatform = config;
763
763
  const connAdapter = config.connection?.adapter;
764
764
  const adapterEnvDefaults = {
765
- vapi: { apiKeyEnv: "VAPI_API_KEY", agentIdEnv: "VAPI_ASSISTANT_ID" },
765
+ vapi: { apiKeyEnv: "VAPI_API_KEY", agentIdEnv: "VAPI_AGENT_ID" },
766
766
  retell: { apiKeyEnv: "RETELL_API_KEY", agentIdEnv: "RETELL_AGENT_ID" },
767
767
  elevenlabs: { apiKeyEnv: "ELEVENLABS_API_KEY", agentIdEnv: "ELEVENLABS_AGENT_ID" },
768
768
  bland: { apiKeyEnv: "BLAND_API_KEY", agentIdEnv: "BLAND_PATHWAY_ID" }
@@ -786,10 +786,12 @@ async function runCommand(args) {
786
786
  if (!plat.agent_id) {
787
787
  const envName = plat.agent_id_env ?? envDefaults.agentIdEnv;
788
788
  const resolved = process.env[envName];
789
- if (resolved) {
790
- plat.agent_id = resolved;
791
- debug(`resolved agent_id from ${envName}`);
789
+ if (!resolved) {
790
+ printError(`${connAdapter} requires agent_id in config or ${envName} environment variable. Set it locally \u2014 the CLI forwards it to the remote worker.`);
791
+ return 2;
792
792
  }
793
+ plat.agent_id = resolved;
794
+ debug(`resolved agent_id from ${envName}`);
793
795
  }
794
796
  }
795
797
  if (connAdapter === "webrtc" || connAdapter === "livekit") {
@@ -5158,7 +5160,8 @@ var BasePlatformSchema = external_exports.object({
5158
5160
  api_key_env: external_exports.string().optional(),
5159
5161
  api_key: external_exports.string().optional(),
5160
5162
  agent_id: external_exports.string().optional(),
5161
- agent_id_env: external_exports.string().optional()
5163
+ agent_id_env: external_exports.string().optional(),
5164
+ max_concurrency: external_exports.number().int().min(1).optional()
5162
5165
  });
5163
5166
  var BlandPlatformSchema = BasePlatformSchema.extend({
5164
5167
  provider: external_exports.literal("bland"),
@@ -6777,7 +6780,7 @@ async function main() {
6777
6780
  return 0;
6778
6781
  }
6779
6782
  if (command === "--version" || command === "-v") {
6780
- const pkg = await import("./package-6XGQTGZP.mjs");
6783
+ const pkg = await import("./package-MTQ3XRUG.mjs");
6781
6784
  console.log(`vent-hq ${pkg.default.version}`);
6782
6785
  return 0;
6783
6786
  }
@@ -0,0 +1,51 @@
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.8.34",
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
+ };
@@ -0,0 +1,51 @@
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.8.33",
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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vent-hq",
3
- "version": "0.8.32",
3
+ "version": "0.8.34",
4
4
  "type": "module",
5
5
  "description": "Vent CLI — CI/CD for voice AI agents",
6
6
  "bin": {