orionfold-relay 0.16.0 → 0.18.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 +28 -0
- package/dist/cli.js +853 -377
- package/package.json +1 -1
- package/src/app/api/data/clear/route.ts +2 -1
- package/src/app/api/data/seed/route.ts +2 -1
- package/src/app/api/license/[id]/route.ts +32 -0
- package/src/app/api/license/route.ts +85 -0
- package/src/app/api/packs/install/route.ts +82 -0
- package/src/app/apps/page.tsx +6 -0
- package/src/app/packs/page.tsx +155 -0
- package/src/app/settings/page.tsx +2 -0
- package/src/components/packs/pack-install-button.tsx +108 -0
- package/src/components/settings/license-section.tsx +345 -0
- package/src/components/shell/nav-items.ts +6 -1
- package/src/lib/apps/registry.ts +6 -0
- package/src/lib/chat/tools/plugin-spec-tools.ts +2 -1
- package/src/lib/data/staging-gate.ts +16 -0
- package/src/lib/licensing/cli.ts +195 -0
- package/src/lib/licensing/gate.ts +2 -1
- package/src/lib/licensing/store.ts +311 -0
- package/src/lib/licensing/verify.ts +44 -34
- package/src/lib/packs/catalog.ts +122 -0
- package/src/lib/packs/cli.ts +4 -3
- package/src/lib/packs/format.ts +8 -0
- package/src/lib/packs/install.ts +35 -8
- package/src/lib/plugins/examples/echo-server/plugin.yaml +1 -1
- package/src/lib/plugins/examples/finance-pack/plugin.yaml +1 -1
- package/src/lib/plugins/examples/reading-radar/plugin.yaml +1 -1
- package/src/lib/plugins/registry.ts +7 -11
- package/src/lib/plugins/sdk/types.ts +8 -0
package/README.md
CHANGED
|
@@ -113,6 +113,34 @@ The governance is *in* the workflow, not bolted on. A blueprint is a fixed step
|
|
|
113
113
|
|
|
114
114
|
---
|
|
115
115
|
|
|
116
|
+
## Free vs paid
|
|
117
|
+
|
|
118
|
+
**The engine is free.** Everything above — orchestration, governance, runtimes, profiles,
|
|
119
|
+
tables, workflows, the full app — is Apache-2.0 open source with no tiers, no seat gates,
|
|
120
|
+
and no feature locks. What's paid is **premium packs**: ready-to-run vertical bundles
|
|
121
|
+
(profiles + workflows + tables + seed data) that materialize a specific business on top of
|
|
122
|
+
the free engine.
|
|
123
|
+
|
|
124
|
+
Buying one takes a license file, redeemed once:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
relay license add <path-or-url from your fulfilment email> # verify + save + unlock
|
|
128
|
+
relay license status # who's licensed, what's unlocked, until when
|
|
129
|
+
relay license remove <license-id> # forget a license (packs stay installed)
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
- **Verification is 100% offline** — an Ed25519 signature check against keys embedded in
|
|
133
|
+
this repo ([`src/lib/licensing/verify.ts`](src/lib/licensing/verify.ts)). Relay never
|
|
134
|
+
phones home: no activation server, no telemetry, no network call of any kind. Works
|
|
135
|
+
air-gapped.
|
|
136
|
+
- **Your packs are yours forever. Renewal gets you the year's new and updated packs +
|
|
137
|
+
priority support.** An expired or removed license never re-locks content you already
|
|
138
|
+
installed — it only gates new premium installs and updates.
|
|
139
|
+
- **What's free stays free.** Capabilities never move from the free engine into a paid
|
|
140
|
+
pack. Paid packs are new content, not repossessed features.
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
116
144
|
## Runtime bridge
|
|
117
145
|
|
|
118
146
|
Run the same business process on different AI providers without changing a line of configuration. Relay's shared runtime registry routes tasks, schedules, and workflow steps through **Claude Code** (Anthropic Claude Agent SDK) and **OpenAI Codex App Server**, landing everything in the same inbox, monitoring, and cost surfaces. Switching providers is a settings change, not a rewrite.
|