@khoralabs/vellum-daemon 0.1.0

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/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @khoralabs/vellum-cli
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run:
10
+
11
+ ```bash
12
+ bun run src/index.ts
13
+ ```
14
+
15
+ This project was created using `bun init` in bun v1.3.4. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ const { spawnSync } = require("node:child_process");
3
+ const supported = new Set(["darwin-arm64","linux-arm64","linux-x64"]);
4
+ const slug = `${process.platform}-${process.arch}`;
5
+ if (!supported.has(slug)) {
6
+ console.error(`vellum-daemon: no prebuilt binary for ${slug}; supported: ${[...supported].join(", ")}`);
7
+ process.exit(1);
8
+ }
9
+ const bin = require.resolve(`@khoralabs/vellum-daemon-${slug}/vellum-daemon`);
10
+ const r = spawnSync(bin, process.argv.slice(2), { stdio: "inherit" });
11
+ process.exit(r.status ?? 1);
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@khoralabs/vellum-daemon",
3
+ "version": "0.1.0",
4
+ "description": "Vellum NBC room daemon: WebSocket multiplex, SQLite graph, HTTP control. Native binaries; no runtime required.",
5
+ "license": "MIT",
6
+ "author": "Khora Labs",
7
+ "homepage": "https://github.com/khoralabs/agent-kernel/tree/main/apps/vellum/daemon",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/khoralabs/agent-kernel.git",
11
+ "directory": "apps/vellum/daemon"
12
+ },
13
+ "keywords": [
14
+ "vellum",
15
+ "obp",
16
+ "daemon",
17
+ "khoralabs"
18
+ ],
19
+ "type": "module",
20
+ "bin": {
21
+ "vellum-daemon": "./bin/vellum-daemon.cjs"
22
+ },
23
+ "files": [
24
+ "bin/**",
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
28
+ "optionalDependencies": {
29
+ "@khoralabs/vellum-daemon-darwin-arm64": "0.1.0",
30
+ "@khoralabs/vellum-daemon-linux-x64": "0.1.0",
31
+ "@khoralabs/vellum-daemon-linux-arm64": "0.1.0"
32
+ }
33
+ }