Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add resonatehq/resonate-skills --skill resonate-migrate-from-temporalgit clone --depth 1 https://github.com/resonatehq/resonate-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-migrate-from-temporal)<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-migrate-from-temporal"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-migrate-from-temporal/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-migrate-from-temporal"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-migrate-from-temporal.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00114 | $0.03346 |
| Opus 5 | $0.00057 | $0.01673 |
| Sonnet 5 | $0.00023 | $0.00669 |
| Haiku 4.5 | $0.00011 | $0.00335 |
Grade A, and why
resonate-migrate-from-temporal scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Migrate from Temporal to Resonate
A pattern-by-pattern playbook for porting a Temporal application to Resonate. Identify which Temporal construct each piece of the source uses, apply the matching transform, and reach for the linked per-SDK skill for idiomatic target code.
Ground rules
- Never invent Temporal code. Quote it from the user's source or a named
temporalio/samples-*file. If you can't find it, say so. - Resonate has no
@workflow/@activitysplit. A step is just a function made durable byctx.run. Don't invent decorators. - Temporal Rust samples live in-repo. Temporal's Rust SDK ships examples in
temporalio/sdk-rust/crates/sdk/examples/(no separatesamples-rustrepo) — source Rust migrations from there (hello_world, child_workflows, timer_examples, message_passing, saga, continue_as_new, …). Only mutex and encryption have no Temporal Rust example; for those, source from the Temporal TypeScript idiom. - State coverage honestly. A missing example ≠ impossible; it means no worked reference exists yet.
- Verify APIs against the pinned version before emitting — the SDK surface drifts between versions.
Pinned SDK versions (latest released at time of writing)
| SDK | Version | Source |
|---|---|---|
| TypeScript | @resonatehq/sdk v0.11.4 |
npm |
| Python | resonate-sdk v0.7.4 |
PyPI |
| Rust | resonate-sdk v0.6.0 |
crates.io |
| Go | 0.1.0 (tag has no v prefix — go get github.com/resonatehq/[email protected]) |
GitHub |
Core mappings (apply everywhere)
| Temporal | Resonate |
|---|---|
@workflow.defn / Workflow type |
a registered function (@resonate.register, resonate.register("name", fn), #[resonate::function], resonate.Register(r, "name", fn)) |
@activity.defn / Activity |
a plain function invoked via ctx.run(fn, args) |
workflow.execute_activity(fn, …, start_to_close_timeout=…) |
await ctx.run(fn, args) (py, ts async engine) / yield* ctx.run(fn, args) (ts generator engine) / ctx.run(fn, args).await? (rs) / ctx.Run(fn, args) then f.Await(&out) (go) — no timeout policy required |
| Task Queue + Worker wiring | a worker group (only when you need distributed dispatch) |
executeChild / ExecuteChildWorkflow(ChildType, …) |
ctx.rpc("name", args) or ctx.run(fn, args) — invoke by registered name; recursion is trivial |
Promise.all / asyncio.gather / parallel futures (fan-out) |
start each non-blocking (ctx.beginRun / ctx.rfi / .spawn() / ctx.RPC), then await each |
defineSignal + setHandler + condition |
one latent durable promise: p = ctx.promise() then await p |
defineQuery / query handler |
delete — promise/result state is the source of truth |
handle.signal(sig) (external) |
resonate.promises.resolve(id, value) (HTTP-addressable from anywhere) |
workflow.sleep / NewTimer |
ctx.sleep(duration) |
| saga compensation stack + drain-on-catch | inline ctx.run(undo, …) in the error branch, guarded by what completed |
continueAsNew |
bounded loop: a plain loop. Unbounded loop: ctx.detached(self, n+1) tail-recursion |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 217 lines · 114 tokens per session scan A 8ec3c7ca9b03
resonate-migrate-from-temporal is a skill published in the GitHub repository resonatehq/resonate-skills (6 stars, last pushed 21d ago), licensed Apache-2.0. It adds 114 tokens to every session and 3,346 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
workflow
Creates durable, resumable workflows using Vercel's Workflow SDK. Use when building workflows that need to survive restarts, pause for external events, retry on failure, or coordinate multi-step operations over time. Triggers on mentions of "workflow", "durable functions", "resumable", "workflow sdk", "queue"…
migrating-workflow-v4-to-v5
Upgrades an app from Workflow SDK 4.x to 5.0. Use when bumping the workflow / @workflow/ dependencies to v5, or when hitting removed v4 APIs — runStep, stepEntrypoint, workflow/internal/private, @workflow/core/private, writeToStream / closeStream / readFromStream on a World, world.steps.get without a runId…
migrating-to-workflow-sdk
Migrates Temporal, Inngest, Trigger.dev, and AWS Step Functions workflows to the Workflow SDK. Use when porting Activities, Workers, Signals, step.run(), step.waitForEvent(), Trigger.dev tasks / wait.forToken / triggerAndWait, ASL JSON state machines, Task/Choice/Wait/Parallel states, task tokens, or child workflows.
deepep-to-cam-converter
A code migration skill for replacing DeepEP communication operations with CAM operations when moving mixture-of-experts code from CUDA/NCCL to Ascend NPUs.
e2a-doctor
Use when an existing e2a MCP connection, inbox, custom domain, protection policy, webhook, or message delivery is failing or unclear. Diagnoses read-only through MCP first, ranks evidence-backed causes, and offers individually confirmed repairs; uses the CLI doctor only when CLI or self-hosted diagnostics are…
e2a-integrate
Use when adding e2a email capabilities to an application or codebase: outbound sending, inbound signed webhooks, REST polling, or SDK integration. Inspects the existing language and framework, uses official TypeScript/Python SDKs or idiomatic REST/OpenAPI, adds tests, and keeps credentials server-side.