vent-hq 0.9.4 → 0.9.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.
- package/dist/index.mjs +16 -2
- package/dist/package-D2XITDPB.mjs +50 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6024,8 +6024,22 @@ async function installCursor(cwd) {
|
|
|
6024
6024
|
await fs5.writeFile(path3.join(dir, "vent.mdc"), cursor_default);
|
|
6025
6025
|
printSuccess("Cursor: .cursor/rules/vent.mdc", { force: true });
|
|
6026
6026
|
}
|
|
6027
|
+
var VENT_MARKER = "# Vent \u2014 Voice Agent Calls";
|
|
6027
6028
|
async function installCodex(cwd) {
|
|
6028
|
-
|
|
6029
|
+
const filePath = path3.join(cwd, "AGENTS.md");
|
|
6030
|
+
let existing = "";
|
|
6031
|
+
try {
|
|
6032
|
+
existing = await fs5.readFile(filePath, "utf-8");
|
|
6033
|
+
} catch {
|
|
6034
|
+
}
|
|
6035
|
+
if (existing.includes(VENT_MARKER)) {
|
|
6036
|
+
const idx = existing.indexOf(VENT_MARKER);
|
|
6037
|
+
await fs5.writeFile(filePath, existing.slice(0, idx).trimEnd() + "\n\n" + codex_default + "\n");
|
|
6038
|
+
} else if (existing) {
|
|
6039
|
+
await fs5.writeFile(filePath, existing.trimEnd() + "\n\n" + codex_default + "\n");
|
|
6040
|
+
} else {
|
|
6041
|
+
await fs5.writeFile(filePath, codex_default + "\n");
|
|
6042
|
+
}
|
|
6029
6043
|
printSuccess("Codex: AGENTS.md", { force: true });
|
|
6030
6044
|
}
|
|
6031
6045
|
async function installSkillsAndScaffold(cwd) {
|
|
@@ -6203,7 +6217,7 @@ async function main() {
|
|
|
6203
6217
|
return 0;
|
|
6204
6218
|
}
|
|
6205
6219
|
if (command === "--version" || command === "-v") {
|
|
6206
|
-
const pkg = await import("./package-
|
|
6220
|
+
const pkg = await import("./package-D2XITDPB.mjs");
|
|
6207
6221
|
console.log(`vent-hq ${pkg.default.version}`);
|
|
6208
6222
|
return 0;
|
|
6209
6223
|
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "./chunk-XYDL7GY6.mjs";
|
|
3
|
+
|
|
4
|
+
// package.json
|
|
5
|
+
var package_default = {
|
|
6
|
+
name: "vent-hq",
|
|
7
|
+
version: "0.9.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://venthq.dev",
|
|
38
|
+
dependencies: {
|
|
39
|
+
ws: "^8.18.0"
|
|
40
|
+
},
|
|
41
|
+
devDependencies: {
|
|
42
|
+
"@types/ws": "catalog:",
|
|
43
|
+
"@vent/relay-client": "workspace:*",
|
|
44
|
+
"@vent/shared": "workspace:*",
|
|
45
|
+
esbuild: "catalog:"
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
export {
|
|
49
|
+
package_default as default
|
|
50
|
+
};
|