orionfold-relay 0.16.0 → 0.17.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 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.