orionfold-relay 0.0.1
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 +19 -0
- package/bin/cli.js +13 -0
- package/package.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Orionfold Relay
|
|
2
|
+
|
|
3
|
+
**The multi-agent coordination cockpit for forward-deployed AI services.**
|
|
4
|
+
|
|
5
|
+
Run an AI services agency on one governed, cost-controlled board: every client a
|
|
6
|
+
workspace, every vertical a profile, every service a workflow, every model a
|
|
7
|
+
switch — Claude, Codex, Gemini, or a local model — with per-client billing and
|
|
8
|
+
human-in-the-loop governance built in.
|
|
9
|
+
|
|
10
|
+
> **This package name is reserved.** The Relay CLI ships with the public launch.
|
|
11
|
+
> Until then, `npx orionfold-relay` prints a short notice.
|
|
12
|
+
|
|
13
|
+
Part of the Orionfold studio family — **Proof** (which AI can I trust?), **Arena**
|
|
14
|
+
(which build wins?), and **Relay** (now make the trusted AI do the work).
|
|
15
|
+
|
|
16
|
+
- Website: https://orionfold.com
|
|
17
|
+
- License: Apache-2.0
|
|
18
|
+
|
|
19
|
+
© 2026 Orionfold.
|
package/bin/cli.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Orionfold Relay — reservation placeholder.
|
|
3
|
+
// The real CLI ships with the public launch. Until then this prints a notice.
|
|
4
|
+
const cyan = (s) => `[36m${s}[0m`;
|
|
5
|
+
const dim = (s) => `[2m${s}[0m`;
|
|
6
|
+
console.log(`
|
|
7
|
+
${cyan("✦ Orionfold Relay")}
|
|
8
|
+
|
|
9
|
+
The multi-agent coordination cockpit for forward-deployed AI services.
|
|
10
|
+
|
|
11
|
+
This name is ${cyan("reserved")} — the CLI ships with the public launch.
|
|
12
|
+
${dim("Learn more: https://orionfold.com")}
|
|
13
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orionfold-relay",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Orionfold Relay — the multi-agent coordination cockpit for forward-deployed AI services. Name reserved; the CLI ships with the public launch.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"orionfold",
|
|
7
|
+
"relay",
|
|
8
|
+
"ai",
|
|
9
|
+
"agents",
|
|
10
|
+
"agent-orchestration",
|
|
11
|
+
"multi-agent",
|
|
12
|
+
"ai-operations"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://orionfold.com",
|
|
15
|
+
"license": "Apache-2.0",
|
|
16
|
+
"author": "Orionfold",
|
|
17
|
+
"bin": {
|
|
18
|
+
"orionfold-relay": "./bin/cli.js",
|
|
19
|
+
"relay": "./bin/cli.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"bin/",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
}
|
|
31
|
+
}
|