codex-flows/packages/flow-runtime/README.md
matamune b65ba6619c
Some checks failed
ci / check (push) Failing after 18s
Prepare codex flow packages for npm release
2026-05-13 13:36:37 +00:00

17 lines
445 B
Markdown

# @peezy.tech/flow-runtime
Generic runtime primitives for Codex flow packages.
This package loads `flow.toml` manifests, matches generic events to flow steps,
validates JSON-schema payloads, and runs steps with the Bun or feature-flagged
Code Mode runners.
```ts
import { discoverFlows, matchingSteps, runFlowStep } from "@peezy.tech/flow-runtime";
```
Code Mode steps remain gated. Enable them with:
```bash
CODEX_FLOWS_MODE=code-mode
```