resonate-async-await-engine-typescript
Installation
SKILL.md
Resonate Async/Await Engine (TypeScript)
SDK version: This skill reflects
@resonatehq/sdkv0.11.4 (current on npm). The async/await engine was introduced in v0.11.0.
Overview
The TypeScript SDK ships two execution engines:
| Engine | Import path | Function style | Release |
|---|---|---|---|
| Generator engine | @resonatehq/sdk |
function* / yield* |
v0.10.x and earlier; still current |
| Async/await engine | @resonatehq/sdk/async |
async function / await |
v0.11.0+ |
Both engines connect to the same Resonate Server, share the same durable-promise substrate, and support the same patterns (fan-out, human-in-the-loop, saga, etc.). The async engine is opt-in — existing generator-engine code is unaffected.
For the generator engine, see resonate-basic-ephemeral-world-usage-typescript and resonate-basic-durable-world-usage-typescript.