Skip to content

Commit c98f260

Browse files
chore(workflow-core): 0.0.1 (#6)
chore(workflow-core): 0.0.1
2 parents 5c1c2bf + 79c3013 commit c98f260

3 files changed

Lines changed: 17 additions & 15 deletions

File tree

.changeset/initial-release.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# @tanstack/workflow-core
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- Initial public release. ([#5](https://github.com/TanStack/workflow/pull/5))
8+
9+
Type-safe durable execution engine for TypeScript. Closure-based workflows with replay-driven durability, pause/resume on approvals and signals, typed middleware that extends `ctx`, an append-only event log that doubles as the UI transport, and a pluggable `RunStore` interface.
10+
11+
Primitives on `ctx`: `step`, `sleep` / `sleepUntil`, `waitForEvent`, `approve`, `now`, `uuid`, `retry`, `emit`. Cross-version routing via `previousVersions`. Webhook entry point alongside long-running `runWorkflow`. In-memory `RunStore` with push subscription.
12+
13+
See [docs/overview.md](https://github.com/TanStack/workflow/blob/main/docs/overview.md) for the mental model, [docs/quick-start.md](https://github.com/TanStack/workflow/blob/main/docs/quick-start.md) for copy-paste recipes, and [docs/concepts/](https://github.com/TanStack/workflow/blob/main/docs/concepts/) for the primitives / middleware / replay / scheduling references.
14+
15+
Extracted from [`@tanstack/ai-orchestration`](https://github.com/TanStack/ai/pull/542) (Alem Tuzlak + Tom Beckenham). The AI-specific surface (agents, orchestrators) stays in ai-orchestration and composes on top.

packages/workflow-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tanstack/workflow-core",
3-
"version": "0.0.0",
4-
"description": "Type-safe durable execution engine. Generator-based workflows with replay, signals, approvals, retries, and pluggable persistence.",
3+
"version": "0.0.1",
4+
"description": "Type-safe durable execution engine. Closure-based workflows with replay, pause/resume on approvals and signals, typed middleware, and a pluggable event log.",
55
"author": "Tanner Linsley",
66
"license": "MIT",
77
"repository": {

0 commit comments

Comments
 (0)