okengine 0.3.5 → 0.4.3
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/AGENTS.md +6 -0
- package/manifest.v1.schema.json +43 -1
- package/package.json +27 -12
- package/site/content/docs/ai/skills.mdx +11 -7
- package/site/content/docs/console/vault.mdx +4 -0
- package/site/content/docs/elements/ai.mdx +2 -0
- package/site/content/docs/elements/channel.mdx +7 -4
- package/site/content/docs/elements/clock.mdx +2 -4
- package/site/content/docs/elements/flow.mdx +19 -10
- package/site/content/docs/elements/gate.mdx +18 -11
- package/site/content/docs/elements/signal.mdx +9 -12
- package/site/content/docs/elements/store.mdx +69 -8
- package/site/content/docs/elements/vault.mdx +11 -12
- package/site/content/docs/get-started/basic-usage.mdx +76 -41
- package/site/content/docs/get-started/installation.mdx +95 -43
- package/site/content/docs/get-started/introduction.mdx +128 -75
- package/site/content/docs/get-started/meta.json +1 -1
- package/site/content/docs/get-started/why.mdx +141 -0
- package/site/content/docs/plugins/ip-allowlist.mdx +1 -2
- package/site/content/docs/plugins/security-headers.mdx +1 -1
- package/site/content/docs/reference/configuration.mdx +2 -2
- package/site/content/docs/reference/environment-variables.mdx +10 -0
- package/site/content/docs/reference/fx.mdx +56 -3
- package/site/content/docs/reference/plugins.mdx +18 -18
- package/src/cli/competitor-mention-removal.test.ts +117 -0
- package/src/cli/dev.ts +20 -0
- package/src/cli/meilisearch-local.test.ts +69 -0
- package/src/cli/meilisearch-local.ts +188 -0
- package/src/compiler/extract.test.ts +63 -0
- package/src/compiler/extract.ts +36 -15
- package/src/compiler/fixtures/skyport/src/flows/payments/index.ts +5 -1
- package/src/console/server/channels.ts +2 -0
- package/src/console/server/clock.ts +3 -0
- package/src/console/server/flows.ts +13 -0
- package/src/console/server/gates.ts +2 -0
- package/src/console/server/plugins.ts +20 -1
- package/src/console/server/signals.ts +5 -0
- package/src/console/server/store.test.ts +17 -0
- package/src/console/server/store.ts +35 -1
- package/src/console/ui/channels/types.ts +1 -0
- package/src/console/ui/clock/types.ts +1 -0
- package/src/console/ui/display.test.ts +14 -0
- package/src/console/ui/display.ts +9 -0
- package/src/console/ui/dist/assets/index-CjxwRGVv.js +10 -0
- package/src/console/ui/dist/assets/panel-access-BGv45snf.js +64 -0
- package/src/console/ui/dist/assets/{panel-ai-D_m6WQI8.js → panel-ai-B2S7LEii.js} +1 -1
- package/src/console/ui/dist/assets/{panel-architecture-CKnXFyUx.js → panel-architecture-D7UJh91v.js} +1 -1
- package/src/console/ui/dist/assets/panel-channels-9T3ybqRu.js +1 -0
- package/src/console/ui/dist/assets/panel-clock-Cb1UXGRQ.js +1 -0
- package/src/console/ui/dist/assets/{panel-diff-cdonmH8c.js → panel-diff-DmYbKWmN.js} +1 -1
- package/src/console/ui/dist/assets/panel-flows-PiHwT55z.js +48 -0
- package/src/console/ui/dist/assets/panel-gates-BQGYXvjT.js +1 -0
- package/src/console/ui/dist/assets/panel-overview-BBnRO18l.js +1 -0
- package/src/console/ui/dist/assets/panel-plugins-D0PsmVw2.js +1 -0
- package/src/console/ui/dist/assets/panel-runs-CWuRDe0r.js +1 -0
- package/src/console/ui/dist/assets/panel-signals-Bbg4ewpP.js +1 -0
- package/src/console/ui/dist/assets/panel-store-CPCbsDRa.js +1 -0
- package/src/console/ui/dist/assets/panel-traces-DVAzuA_S.js +1 -0
- package/src/console/ui/dist/assets/panel-vault-D1_MvOmo.js +1 -0
- package/src/console/ui/dist/assets/{rolldown-runtime-CNC7AqOf.js → rolldown-runtime-B0Z9INg1.js} +1 -1
- package/src/console/ui/dist/index.html +2 -2
- package/src/console/ui/gates/types.ts +1 -0
- package/src/console/ui/plugins/fixture.ts +7 -0
- package/src/console/ui/plugins/types.ts +3 -0
- package/src/console/ui/shell/client.ts +3 -0
- package/src/console/ui/shell/panels/channels/ChannelsPanel.tsx +7 -2
- package/src/console/ui/shell/panels/clock/ClockPanel.tsx +9 -2
- package/src/console/ui/shell/panels/gates/GatesPanel.tsx +12 -5
- package/src/console/ui/shell/panels/plugins/PluginsPanel.tsx +18 -4
- package/src/console/ui/shell/panels/signals/SignalsPanel.tsx +13 -2
- package/src/console/ui/shell/panels/store/StorePanel.tsx +11 -4
- package/src/console/ui/shell/panels/vault/VaultPanel.tsx +9 -3
- package/src/console/ui/signals/types.ts +1 -0
- package/src/console/ui/store/fixture.ts +5 -0
- package/src/console/ui/store/types.ts +2 -0
- package/src/docker/compose.ts +5 -0
- package/src/docker/docker.test.ts +41 -0
- package/src/docker/recipes/index.ts +10 -2
- package/src/docker/recipes/meilisearch.ts +31 -0
- package/src/drivers/conformance.test.ts +26 -0
- package/src/drivers/conformance.ts +40 -3
- package/src/drivers/drizzle-dialect.test.ts +4 -0
- package/src/drivers/drizzle-dialect.ts +8 -4
- package/src/drivers/index.ts +18 -2
- package/src/drivers/libsql.ts +179 -0
- package/src/drivers/meilisearch.integration.test.ts +77 -0
- package/src/drivers/meilisearch.test.ts +181 -0
- package/src/drivers/meilisearch.ts +208 -0
- package/src/drivers/memory.ts +4 -4
- package/src/drivers/pglite.ts +79 -0
- package/src/drivers/pgvector.ts +60 -25
- package/src/drivers/types.ts +106 -16
- package/src/drivers/vault-driver-removal.test.ts +6 -0
- package/src/drivers/vault-types.ts +4 -4
- package/src/elements/ai/runtime.ts +6 -0
- package/src/elements/ai.test.ts +22 -0
- package/src/elements/channel/declare.ts +5 -0
- package/src/elements/clock/declare.ts +5 -0
- package/src/elements/clock/durable.ts +7 -1
- package/src/elements/gate/declare.ts +28 -5
- package/src/elements/gate.ts +1 -0
- package/src/elements/signal/declare.ts +5 -0
- package/src/elements/store/declare.ts +10 -2
- package/src/elements/store/index-boot.test.ts +299 -0
- package/src/elements/store/runtime.ts +110 -17
- package/src/elements/store/schema-decl.ts +7 -0
- package/src/elements/store.ts +2 -0
- package/src/elements/vault.test.ts +27 -4
- package/src/elements/vault.ts +1 -1
- package/src/index.ts +4 -0
- package/src/kernel/abort-scope.ts +116 -0
- package/src/kernel/app.ts +12 -2
- package/src/kernel/boot-bind/store.test.ts +68 -1
- package/src/kernel/boot-bind/store.ts +92 -2
- package/src/kernel/concurrency.test.ts +294 -0
- package/src/kernel/concurrency.ts +220 -0
- package/src/kernel/flow.ts +9 -0
- package/src/kernel/fx.test.ts +23 -2
- package/src/kernel/fx.ts +80 -4
- package/src/kernel/index.ts +23 -0
- package/src/kernel/journal.ts +9 -0
- package/src/kernel/plugin/capabilities.test.ts +18 -0
- package/src/kernel/plugin.ts +11 -3
- package/src/kernel/redacted.ts +74 -0
- package/src/kernel/registry.ts +29 -6
- package/src/kernel/router.ts +3 -3
- package/src/manifest/types.ts +21 -0
- package/src/release/measure.ts +4 -0
- package/src/test/provisions.integration.test.ts +1 -1
- package/site/content/docs/get-started/comparison.mdx +0 -65
- package/src/console/ui/dist/assets/index-BWo8R7NR.js +0 -10
- package/src/console/ui/dist/assets/panel-access-C0J2D-a2.js +0 -64
- package/src/console/ui/dist/assets/panel-channels-BOmQ-onL.js +0 -1
- package/src/console/ui/dist/assets/panel-clock-giAq0Ccv.js +0 -1
- package/src/console/ui/dist/assets/panel-flows-DlCU5zjA.js +0 -45
- package/src/console/ui/dist/assets/panel-gates-XclZxWD5.js +0 -1
- package/src/console/ui/dist/assets/panel-overview-BznEOTnb.js +0 -1
- package/src/console/ui/dist/assets/panel-plugins-CcGM1g64.js +0 -1
- package/src/console/ui/dist/assets/panel-runs-CGWNHLR4.js +0 -1
- package/src/console/ui/dist/assets/panel-signals-CNywkdak.js +0 -1
- package/src/console/ui/dist/assets/panel-store-KmTbFHMH.js +0 -1
- package/src/console/ui/dist/assets/panel-traces-DBLx2ilD.js +0 -1
- package/src/console/ui/dist/assets/panel-vault-CEnFc0dk.js +0 -1
- package/src/drivers/vault-infisical.ts +0 -57
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: Basic Usage
|
|
3
|
-
description: Scaffold the standard starter,
|
|
3
|
+
description: Scaffold the standard starter, call the health Flow, and inspect it in the Console.
|
|
4
4
|
source: packages/create-oke/template
|
|
5
5
|
icon: SquareTerminal
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Write your first Flow, call it from a typed client, and prove it with
|
|
9
|
+
`bun:test` — using the same standard starter `create-oke` scaffolds.
|
|
10
|
+
|
|
11
|
+
<Callout title="The one rule">
|
|
12
|
+
All reads, writes, emits, sends, and external calls belong behind `fx`. That is what makes effects
|
|
13
|
+
inspectable and tests deterministic.
|
|
14
|
+
</Callout>
|
|
15
|
+
|
|
16
|
+
## Quick start
|
|
17
|
+
|
|
18
|
+
<Steps>
|
|
19
|
+
|
|
20
|
+
<Step>
|
|
21
|
+
### Scaffold and run
|
|
9
22
|
|
|
10
23
|
```bash title="Terminal"
|
|
11
24
|
bunx create-oke@latest my-app
|
|
@@ -13,26 +26,16 @@ cd my-app
|
|
|
13
26
|
oke dev
|
|
14
27
|
```
|
|
15
28
|
|
|
16
|
-
|
|
29
|
+
<Surfaces />
|
|
17
30
|
|
|
18
|
-
|
|
31
|
+
</Step>
|
|
19
32
|
|
|
20
|
-
|
|
33
|
+
<Step>
|
|
34
|
+
### Read the health Flow
|
|
21
35
|
|
|
22
|
-
|
|
23
|
-
on(Trigger) → Effects
|
|
24
|
-
```
|
|
36
|
+
The standard starter already exports a health Flow:
|
|
25
37
|
|
|
26
|
-
|
|
27
|
-
2. **Contracts** — `in`, `out`, and typed `errors`
|
|
28
|
-
3. **`do`** — the body; world access goes only through `fx`
|
|
29
|
-
4. **Effects** — inferred from the `fx` calls
|
|
30
|
-
|
|
31
|
-
## Your first Flow
|
|
32
|
-
|
|
33
|
-
The standard starter includes a health Flow:
|
|
34
|
-
|
|
35
|
-
```typescript
|
|
38
|
+
```typescript title="flows/main"
|
|
36
39
|
import { on, flow, http } from "okengine";
|
|
37
40
|
import { z } from "zod";
|
|
38
41
|
|
|
@@ -45,57 +48,65 @@ export const health = on(
|
|
|
45
48
|
);
|
|
46
49
|
```
|
|
47
50
|
|
|
48
|
-
|
|
49
|
-
|
|
51
|
+
Change the route or output and save. App and Console update together from the
|
|
52
|
+
same Manifest.
|
|
50
53
|
|
|
51
|
-
|
|
52
|
-
All reads, writes, emits, sends, and external calls belong behind `fx`. This is what makes effects
|
|
53
|
-
inspectable and tests deterministic.
|
|
54
|
-
</Callout>
|
|
54
|
+
</Step>
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
<Step>
|
|
57
|
+
### Call it from a typed client
|
|
57
58
|
|
|
58
|
-
|
|
59
|
+
Adopted modules become namespaces on the client:
|
|
59
60
|
|
|
60
|
-
```typescript
|
|
61
|
+
```typescript title="app"
|
|
61
62
|
import { oke } from "okengine";
|
|
62
63
|
import * as main from "./flows/main";
|
|
63
64
|
|
|
64
|
-
export const app = oke({ name: "
|
|
65
|
+
export const app = oke({ name: "standard" }).adopt({ main });
|
|
65
66
|
export type App = typeof app;
|
|
66
67
|
```
|
|
67
68
|
|
|
68
|
-
|
|
69
|
-
a method.
|
|
70
|
-
|
|
71
|
-
## Typed client
|
|
72
|
-
|
|
73
|
-
```typescript
|
|
69
|
+
```typescript title="client"
|
|
74
70
|
import { createClient } from "okengine/client";
|
|
75
|
-
import type { App } from "
|
|
71
|
+
import type { App } from "./app";
|
|
76
72
|
|
|
77
73
|
const api = createClient<App>("http://localhost:6530");
|
|
78
74
|
const { data, error } = await api.main.health({});
|
|
79
75
|
```
|
|
80
76
|
|
|
81
|
-
`data` and `error` are inferred from the Flow contracts
|
|
82
|
-
schema or
|
|
77
|
+
`data` and `error` are inferred from the Flow contracts — no separate client
|
|
78
|
+
schema or codegen project.
|
|
79
|
+
|
|
80
|
+
</Step>
|
|
81
|
+
|
|
82
|
+
</Steps>
|
|
83
|
+
|
|
84
|
+
## Mental model
|
|
85
|
+
|
|
86
|
+
Every backend behavior has one shape:
|
|
87
|
+
|
|
88
|
+
<FlowShape />
|
|
89
|
+
|
|
90
|
+
## From Flow to client
|
|
91
|
+
|
|
92
|
+
Export → adopt → call or test. Same App type — no separate codegen project.
|
|
93
|
+
|
|
94
|
+
<ClientLoop />
|
|
83
95
|
|
|
84
96
|
## Test
|
|
85
97
|
|
|
86
|
-
|
|
98
|
+
Boot the same app with test drivers:
|
|
87
99
|
|
|
88
|
-
```typescript
|
|
100
|
+
```typescript title="tests/standard.test.ts"
|
|
89
101
|
import { expect, test } from "bun:test";
|
|
90
102
|
import { createTestApp } from "okengine/test";
|
|
91
103
|
import { app } from "../src/app";
|
|
92
104
|
|
|
93
|
-
test("health", async () => {
|
|
105
|
+
test("boots — health flow", async () => {
|
|
94
106
|
const t = await createTestApp(app);
|
|
95
107
|
const { data, error } = await t.api.main.health({});
|
|
96
108
|
expect(error).toBeNull();
|
|
97
109
|
expect(data).toEqual({ ok: true });
|
|
98
|
-
await app.stop();
|
|
99
110
|
});
|
|
100
111
|
```
|
|
101
112
|
|
|
@@ -103,6 +114,30 @@ test("health", async () => {
|
|
|
103
114
|
bun test
|
|
104
115
|
```
|
|
105
116
|
|
|
117
|
+
## Troubleshooting
|
|
118
|
+
|
|
119
|
+
<Accordions>
|
|
120
|
+
|
|
121
|
+
<Accordion title="api.main.health is not a function / type error">
|
|
122
|
+
Confirm the Flow is `export`ed from the module you `.adopt({main})`, and that `createClient` is
|
|
123
|
+
typed with your `App` type. Restart `oke dev` after renaming exports so the Manifest refreshes.
|
|
124
|
+
</Accordion>
|
|
125
|
+
|
|
126
|
+
<Accordion title="createTestApp fails to boot">
|
|
127
|
+
The starter patches test env and stores on the app options. Keep the template's side-imports
|
|
128
|
+
(vault, gates, channels, core db) — removing them can leave Vault or Store unresolved under test
|
|
129
|
+
drivers.
|
|
130
|
+
</Accordion>
|
|
131
|
+
|
|
132
|
+
</Accordions>
|
|
133
|
+
|
|
134
|
+
## Learn more
|
|
135
|
+
|
|
136
|
+
- [Flow](/docs/elements/flow) — triggers, contracts, effects, and composition
|
|
137
|
+
- [Store](/docs/elements/store) — SQL, KV, files, index
|
|
138
|
+
- [fx](/docs/reference/fx) — the full effect surface
|
|
139
|
+
- [Console · Overview](/docs/console/overview) — Manifest-derived panels
|
|
140
|
+
|
|
106
141
|
## Next
|
|
107
142
|
|
|
108
143
|
<Cards>
|
|
@@ -5,31 +5,43 @@ source: README.md
|
|
|
5
5
|
icon: Download
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
This page gets you from zero to a running app
|
|
8
|
+
This page gets you from zero to a running app on Bun. The engine targets
|
|
9
|
+
**Bun ≥ 1.3** — prefer it for install, scaffold, and `oke dev`.
|
|
10
|
+
|
|
11
|
+
<Callout title="The one rule">
|
|
12
|
+
Prefer `bun add okengine` when you want the `oke` CLI on your PATH. JSR (`@omqkhafi/okengine`) is
|
|
13
|
+
the library API only.
|
|
14
|
+
</Callout>
|
|
15
|
+
|
|
16
|
+
## Quick start
|
|
9
17
|
|
|
10
18
|
<Steps>
|
|
11
19
|
|
|
20
|
+
<Step>
|
|
12
21
|
### Prerequisites
|
|
13
22
|
|
|
14
23
|
- [Bun](https://bun.sh) ≥ 1.3 (`bun --version`)
|
|
15
24
|
- A terminal and a code editor
|
|
16
25
|
|
|
17
|
-
|
|
26
|
+
</Step>
|
|
18
27
|
|
|
19
|
-
|
|
28
|
+
<Step>
|
|
29
|
+
### Install the package
|
|
20
30
|
|
|
21
31
|
```bash title="Terminal"
|
|
22
32
|
bun add okengine
|
|
23
33
|
```
|
|
24
34
|
|
|
25
|
-
|
|
26
|
-
Library API only: `bunx jsr add @omqkhafi/okengine`. Prefer npm / `bun add` when you want the
|
|
27
|
-
`oke` CLI on your PATH via the package.
|
|
28
|
-
</Callout>
|
|
35
|
+
Library-only via JSR:
|
|
29
36
|
|
|
30
|
-
|
|
37
|
+
```bash title="Terminal"
|
|
38
|
+
bunx jsr add @omqkhafi/okengine
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
</Step>
|
|
31
42
|
|
|
32
|
-
|
|
43
|
+
<Step>
|
|
44
|
+
### Scaffold with create-oke
|
|
33
45
|
|
|
34
46
|
```bash title="Terminal"
|
|
35
47
|
bunx create-oke@latest my-app
|
|
@@ -37,74 +49,114 @@ bunx create-oke@latest my-app --template standard
|
|
|
37
49
|
bunx create-oke@latest my-app --sql postgres
|
|
38
50
|
```
|
|
39
51
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
52
|
+
`standard` is the only starter. Default: local SQLite, Docker/production
|
|
53
|
+
Postgres. `--sql postgres` pins `store.sql` for **local, Docker, and
|
|
54
|
+
production** — schema stays dialect-agnostic (`store.schema.table`).
|
|
55
|
+
|
|
56
|
+
</Step>
|
|
43
57
|
|
|
44
|
-
|
|
58
|
+
<Step>
|
|
59
|
+
### Run and verify
|
|
45
60
|
|
|
46
61
|
```bash title="Terminal"
|
|
47
62
|
cd my-app
|
|
48
63
|
oke dev
|
|
49
64
|
```
|
|
50
65
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
66
|
+
Three ports come up together (mnemonic: **O·K·E = 6·5·3**):
|
|
67
|
+
|
|
68
|
+
<Surfaces />
|
|
69
|
+
|
|
70
|
+
Open `http://localhost:6533`. If the Console lists your flows, the install
|
|
71
|
+
worked — **derived, not configured.**
|
|
72
|
+
|
|
73
|
+
</Step>
|
|
74
|
+
|
|
75
|
+
</Steps>
|
|
76
|
+
|
|
77
|
+
## Local database sync
|
|
78
|
+
|
|
79
|
+
Local mode watches schema paths and auto-runs `oke db push` so the database
|
|
80
|
+
stays in sync. Opt out with `oke dev --no-db-push` or
|
|
81
|
+
`db: { autoPush: false }` in `oke.config.ts`.
|
|
82
|
+
|
|
83
|
+
For production, generate and apply migrations deliberately — never automatic on
|
|
84
|
+
boot:
|
|
55
85
|
|
|
56
86
|
```bash title="Terminal"
|
|
57
87
|
oke db generate # write drizzle/*.sql
|
|
58
|
-
oke db migrate # apply
|
|
88
|
+
oke db migrate # apply
|
|
59
89
|
```
|
|
60
90
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
| Port | Surface |
|
|
64
|
-
| ------- | -------- |
|
|
65
|
-
| `:6530` | Your app |
|
|
66
|
-
| `:6533` | Console |
|
|
67
|
-
| `:6535` | MCP |
|
|
68
|
-
|
|
69
|
-
Open the Console — flows, contracts, effects, and an architecture diagram are already there. **Derived, not configured.**
|
|
91
|
+
## Docker mode
|
|
70
92
|
|
|
71
93
|
Want Postgres/Redis like production while the app stays on host Bun?
|
|
72
94
|
|
|
95
|
+
<DevModes />
|
|
96
|
+
|
|
73
97
|
```bash title="Terminal"
|
|
74
98
|
oke dev --docker # or: oke dev -d
|
|
75
99
|
# or set the saved default: oke mode docker
|
|
76
100
|
```
|
|
77
101
|
|
|
78
|
-
|
|
102
|
+
Uses the `docker` driver profile in `oke.config.ts` (filled from `prod` when
|
|
103
|
+
omitted). Compose and credentials land under `docker/` (`.env.docker` beside
|
|
104
|
+
compose); host ports are unique per project.
|
|
79
105
|
|
|
80
|
-
|
|
106
|
+
Bare `oke dev` prompts once on a TTY (saved in `.oke/mode`); non-TTY defaults
|
|
107
|
+
to `local`.
|
|
81
108
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
109
|
+
| Protocol | Env shape (generated) |
|
|
110
|
+
| ------------------- | --------------------------------------------------------------------------------------------------------------- |
|
|
111
|
+
| Postgres | `DATABASE_URL` plus `OKE_STORE_SQL_*` |
|
|
112
|
+
| Redis | `REDIS_URL` plus `OKE_STORE_KV_PASSWORD` |
|
|
113
|
+
| S3-compatible files | `S3_ENDPOINT`, `S3_ACCESS_KEY_ID`, `S3_SECRET_ACCESS_KEY`, `S3_BUCKET`, `S3_URL`, `S3_REGION`, `S3_CONSOLE_URL` |
|
|
114
|
+
| SMTP email | `SMTP_URL`, `SMTP_HOST`, `SMTP_PORT`, `MAILPIT_UI_URL`, optional `SMTP_USER` / `SMTP_PASSWORD` |
|
|
86
115
|
|
|
87
|
-
Each section also includes commented controls (
|
|
88
|
-
|
|
89
|
-
|
|
116
|
+
Each section also includes commented controls (Redis memory policy, Postgres
|
|
117
|
+
init options, Bun S3 session tokens, Mailpit limits). Uncommented supported
|
|
118
|
+
controls are preserved when `oke dev --docker` regenerates the file.
|
|
90
119
|
|
|
91
|
-
|
|
120
|
+
## Troubleshooting
|
|
92
121
|
|
|
93
|
-
|
|
122
|
+
<Accordions>
|
|
94
123
|
|
|
95
|
-
|
|
124
|
+
<Accordion title="oke: command not found after install">
|
|
125
|
+
Use `bun add okengine` (npm package), not JSR alone — the CLI ships with the npm distribution. Or
|
|
126
|
+
invoke via `bunx oke dev` from the project.
|
|
127
|
+
</Accordion>
|
|
128
|
+
|
|
129
|
+
<Accordion title="Console is empty / no flows listed">
|
|
130
|
+
Confirm `oke dev` is running and you opened `:6533`, not `:6530`. Flows appear only after the app
|
|
131
|
+
boots and the Manifest is extracted — fix TypeScript errors in the terminal first.
|
|
132
|
+
</Accordion>
|
|
133
|
+
|
|
134
|
+
<Accordion title="Database out of sync after editing schema">
|
|
135
|
+
Local `oke dev` auto-pushes by default. If you passed `--no-db-push` or set `db.autoPush: false`,
|
|
136
|
+
run `oke db push` yourself, or re-enable auto-push.
|
|
137
|
+
</Accordion>
|
|
96
138
|
|
|
97
|
-
|
|
139
|
+
</Accordions>
|
|
98
140
|
|
|
99
|
-
|
|
100
|
-
|
|
141
|
+
## Learn more
|
|
142
|
+
|
|
143
|
+
- [CLI Reference](/docs/reference/cli) — `oke`, `create-oke`, mode, and db commands
|
|
144
|
+
- [Environment variables](/docs/reference/environment-variables) — protocol-shaped env
|
|
145
|
+
- [Configuration](/docs/reference/configuration) — `oke.config.ts` drivers and `db.autoPush`
|
|
146
|
+
|
|
147
|
+
## Next
|
|
101
148
|
|
|
102
149
|
<Cards>
|
|
103
150
|
<Card
|
|
104
151
|
title="Basic Usage"
|
|
105
|
-
description="
|
|
152
|
+
description="Health Flow, typed client, and bun:test."
|
|
106
153
|
href="/docs/get-started/basic-usage"
|
|
107
154
|
/>
|
|
155
|
+
<Card
|
|
156
|
+
title="Introduction"
|
|
157
|
+
description="The one law, eight elements, ten exports."
|
|
158
|
+
href="/docs/get-started/introduction"
|
|
159
|
+
/>
|
|
108
160
|
<Card
|
|
109
161
|
title="CLI Reference"
|
|
110
162
|
description="oke and create-oke commands."
|
|
@@ -1,123 +1,176 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: Introduction
|
|
3
|
-
description: Learn the one idea behind okengine — then the eight elements and ten exports.
|
|
3
|
+
description: Learn the one idea behind okengine — then the eight elements and ten exports you will use everywhere.
|
|
4
4
|
source: docs/spec/unified-theory.md
|
|
5
5
|
icon: BookOpen
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
A booking API, a nightly cleanup job, a receipt email, a row-change hook — in
|
|
9
|
+
most stacks those are four frameworks. In OKE they are **one species** with one
|
|
10
|
+
shape. Learn the shape once; only the trigger changes.
|
|
9
11
|
|
|
10
|
-
|
|
12
|
+
<Callout title="The one rule">
|
|
13
|
+
**Every backend behavior is a Flow:** `on(Trigger) → Effects`. There are no separate species
|
|
14
|
+
called endpoints, handlers, consumers, jobs, or workflows.
|
|
15
|
+
</Callout>
|
|
11
16
|
|
|
12
|
-
|
|
17
|
+
## Quick start
|
|
13
18
|
|
|
14
|
-
|
|
19
|
+
<Steps>
|
|
15
20
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
on(every("10m"), expireStale); // "a cron job"
|
|
19
|
-
on(orderPlaced, sendReceipt); // "a queue consumer"
|
|
20
|
-
on(db.table(users).changed("email"), reverify); // "a CDC trigger"
|
|
21
|
-
```
|
|
21
|
+
<Step>
|
|
22
|
+
### Write one Flow
|
|
22
23
|
|
|
23
|
-
|
|
24
|
+
Four contracts plus a `do`. This is the standard starter's health check:
|
|
24
25
|
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
```typescript title="health"
|
|
27
|
+
import { on, flow, http } from "okengine";
|
|
28
|
+
import { z } from "zod";
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
export const health = on(
|
|
31
|
+
http.get("/health"),
|
|
32
|
+
flow({
|
|
33
|
+
out: z.object({ ok: z.literal(true) }),
|
|
34
|
+
do: () => ({ ok: true as const }),
|
|
35
|
+
}),
|
|
36
|
+
);
|
|
37
|
+
```
|
|
29
38
|
|
|
30
|
-
</
|
|
39
|
+
</Step>
|
|
31
40
|
|
|
32
|
-
|
|
41
|
+
<Step>
|
|
42
|
+
### Change only the trigger
|
|
33
43
|
|
|
34
|
-
|
|
44
|
+
| Trigger | Starts when | Replaces |
|
|
45
|
+
| ---------------------------------- | ------------------ | ------------------ |
|
|
46
|
+
| `http.post("/bookings")` | a request arrives | endpoint · handler |
|
|
47
|
+
| `every("10m")` | time passes | cron job |
|
|
48
|
+
| `orderPlaced` (a signal) | another flow emits | queue consumer |
|
|
49
|
+
| `db.table(users).changed("email")` | a row changes | CDC pipeline |
|
|
35
50
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
51
|
+
```typescript title="triggers"
|
|
52
|
+
on(http.post("/bookings"), createBooking);
|
|
53
|
+
on(every("10m"), expireStale);
|
|
54
|
+
on(orderPlaced, sendReceipt);
|
|
55
|
+
on(db.table(users).changed("email"), reverify);
|
|
56
|
+
```
|
|
42
57
|
|
|
43
|
-
|
|
58
|
+
</Step>
|
|
44
59
|
|
|
45
|
-
|
|
60
|
+
<Step>
|
|
61
|
+
### See what was derived
|
|
46
62
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
```
|
|
63
|
+
Run `oke dev`. Three surfaces come up together — nothing configured by hand in
|
|
64
|
+
a separate dashboard.
|
|
50
65
|
|
|
51
|
-
|
|
52
|
-
| --------- | ----------------------------------------------- |
|
|
53
|
-
| `on` | Bind a trigger to a flow |
|
|
54
|
-
| `flow` | Define behavior + contracts |
|
|
55
|
-
| `signal` | Data in motion (queue / pub-sub / live) |
|
|
56
|
-
| `store` | Data at rest (`sql` · `kv` · `files` · `index`) |
|
|
57
|
-
| `clock` | Time (cron, delay, sleep, TTL) |
|
|
58
|
-
| `gate` | Permission to act (auth, ABAC, limits) |
|
|
59
|
-
| `vault` | Secrets and config |
|
|
60
|
-
| `channel` | Reach humans (email, SMS, …) |
|
|
61
|
-
| `ai` | Reach models / agents |
|
|
62
|
-
| `plugin` | Extend the runtime without a ninth element |
|
|
66
|
+
<Surfaces />
|
|
63
67
|
|
|
64
|
-
|
|
68
|
+
</Step>
|
|
65
69
|
|
|
66
|
-
|
|
70
|
+
</Steps>
|
|
67
71
|
|
|
68
|
-
|
|
72
|
+
## Anatomy
|
|
69
73
|
|
|
70
|
-
|
|
74
|
+
One pipeline. Only the trigger changes between an endpoint, a job, a consumer,
|
|
75
|
+
and a row hook.
|
|
71
76
|
|
|
72
|
-
<
|
|
73
|
-
<summary>What each element replaces</summary>
|
|
77
|
+
<FlowShape />
|
|
74
78
|
|
|
75
|
-
|
|
|
76
|
-
|
|
|
77
|
-
| **
|
|
78
|
-
| **
|
|
79
|
-
|
|
|
80
|
-
| **
|
|
81
|
-
| **Gate** | auth · session · ABAC · rate limit · quota · feature flag |
|
|
82
|
-
| **Vault** | secrets · config · environment |
|
|
83
|
-
| **Channel** | email · SMS · WhatsApp · push |
|
|
84
|
-
| **AI** | model calls · prompts · embeddings · agents · RAG |
|
|
79
|
+
| Piece | Role |
|
|
80
|
+
| ------------- | -------------------------------------------------------------- |
|
|
81
|
+
| **Trigger** | How work starts — `http`, a signal, `every`, a row change |
|
|
82
|
+
| **Contracts** | `in`, `out`, typed `errors` — validated before and after `do` |
|
|
83
|
+
| **`do`** | The body — every read, write, emit, and call goes through `fx` |
|
|
84
|
+
| **Effects** | Inferred from those `fx` calls — not hand-annotated |
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
| Consequence | Follows from |
|
|
87
|
+
| ---------------------------------- | -------------- |
|
|
88
|
+
| One documentation path | One species |
|
|
89
|
+
| One trace shape | One Flow model |
|
|
90
|
+
| One thing for an AI agent to learn | One law |
|
|
87
91
|
|
|
88
92
|
## The `fx` rule
|
|
89
93
|
|
|
90
|
-
**All world access goes through `fx`.** A Flow that imports `node:fs
|
|
94
|
+
**All world access goes through `fx`.** A Flow that imports `node:fs`, calls
|
|
95
|
+
`fetch` directly, or uses `Date.now()` is a defect.
|
|
96
|
+
|
|
97
|
+
| Inferred from `fx` touches | Without hand annotations |
|
|
98
|
+
| -------------------------- | ------------------------ |
|
|
99
|
+
| Cache invalidation keys | Yes |
|
|
100
|
+
| Live queries | Yes |
|
|
101
|
+
| Least-privilege tokens | Yes |
|
|
102
|
+
| Deterministic tests | Yes |
|
|
103
|
+
| Manifest Diff | Yes |
|
|
104
|
+
|
|
105
|
+
## What the Manifest derives
|
|
91
106
|
|
|
92
|
-
|
|
107
|
+
At build time OKE extracts a **Manifest** — a machine-readable description of
|
|
108
|
+
your system. You do not maintain a second source of truth.
|
|
93
109
|
|
|
94
|
-
|
|
110
|
+
<ManifestPipeline />
|
|
95
111
|
|
|
96
|
-
|
|
112
|
+
| Surface | Port / place | You maintain? |
|
|
113
|
+
| --------------------------------- | ------------------ | ----------------------------- |
|
|
114
|
+
| Typed client (`okengine/client`) | your app code | No separate codegen |
|
|
115
|
+
| Console panels, traces, explorers | `:6533` | No |
|
|
116
|
+
| MCP for agents | `:6535` | No |
|
|
117
|
+
| Architecture diagram | Console | No — it _is_ the effect graph |
|
|
118
|
+
| Capability matrix + cache keys | compiler / runtime | No — from `fx` |
|
|
97
119
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
120
|
+
## Eight elements
|
|
121
|
+
|
|
122
|
+
An element earns its place only if it has **irreducible physics**. New
|
|
123
|
+
infrastructure becomes a new **driver** — never a ninth element.
|
|
124
|
+
|
|
125
|
+
<Features />
|
|
126
|
+
|
|
127
|
+
| Element | Essence | Replaces the zoo of |
|
|
128
|
+
| ----------- | ----------------------------- | --------------------------------------------------------- |
|
|
129
|
+
| **Flow** | behavior | endpoint · handler · consumer · job · workflow · webhook |
|
|
130
|
+
| **Signal** | data in motion | queue · pub/sub · stream · websocket · SSE · event bus |
|
|
131
|
+
| **Store** | data at rest | database · cache · KV · file storage · search index |
|
|
132
|
+
| **Clock** | time | cron · delay · timeout · durable sleep · TTL |
|
|
133
|
+
| **Gate** | permission to act | auth · session · ABAC · rate limit · quota · feature flag |
|
|
134
|
+
| **Vault** | protected knowledge | secrets · config · environment |
|
|
135
|
+
| **Channel** | reaching humans | email · SMS · WhatsApp · push |
|
|
136
|
+
| **AI** | reaching machine intelligence | model calls · prompts · embeddings · agents · RAG |
|
|
137
|
+
|
|
138
|
+
## Ten exports
|
|
139
|
+
|
|
140
|
+
The entire public vocabulary fits in one import. Everything else in the docs is
|
|
141
|
+
derived from these ten names:
|
|
142
|
+
|
|
143
|
+
```ts title="okengine"
|
|
144
|
+
import { on, flow, signal, store, clock, gate, vault, channel, ai, plugin } from "okengine";
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
<Vocabulary />
|
|
148
|
+
|
|
149
|
+
## Learn more
|
|
150
|
+
|
|
151
|
+
| Topic | Page |
|
|
152
|
+
| ------- | ------------------------------------------------------------------------------- |
|
|
153
|
+
| Why OKE | [Why OKE](/docs/get-started/why) |
|
|
154
|
+
| Flow | [Flow](/docs/elements/flow) |
|
|
155
|
+
| `fx` | [fx](/docs/reference/fx) |
|
|
156
|
+
| Agents | [MCP](/docs/ai/mcp) · [Skills](/docs/ai/skills) · [llms.txt](/docs/ai/llms-txt) |
|
|
157
|
+
|
|
158
|
+
## Next
|
|
102
159
|
|
|
103
160
|
<Cards>
|
|
104
161
|
<Card
|
|
105
|
-
title="
|
|
106
|
-
description="
|
|
107
|
-
href="/docs/get-started/
|
|
162
|
+
title="Why OKE"
|
|
163
|
+
description="Traditional backend pain — and what Manifest derivation closes."
|
|
164
|
+
href="/docs/get-started/why"
|
|
108
165
|
/>
|
|
109
166
|
<Card
|
|
110
167
|
title="Installation"
|
|
111
|
-
description="
|
|
168
|
+
description="Scaffold with create-oke and open the Console."
|
|
112
169
|
href="/docs/get-started/installation"
|
|
113
170
|
/>
|
|
114
171
|
<Card
|
|
115
172
|
title="Basic Usage"
|
|
116
|
-
description="
|
|
173
|
+
description="Health Flow, typed client, and bun:test."
|
|
117
174
|
href="/docs/get-started/basic-usage"
|
|
118
175
|
/>
|
|
119
176
|
</Cards>
|
|
120
|
-
|
|
121
|
-
## AI resources
|
|
122
|
-
|
|
123
|
-
`AGENTS.md` and MCP (`:6535`) expose the Manifest, schemas, effects, traces, and the Console's safe runtime actions. See [MCP](/docs/ai/mcp) for the runtime server, [Skills](/docs/ai/skills) for the agent contract, and [llms.txt](/docs/ai/llms-txt) for the machine-readable docs (`/llms.txt`, `/llms-full.txt`).
|