Install
$ agentstack add skill-resonatehq-resonate-skills-resonate-basic-debugging-typescript ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Resonate Debug and Troubleshoot
Overview
Use this skill to diagnose Resonate runtime issues in the TypeScript SDK or Resonate Server. Focus on reproducible symptoms, promise state, registration, determinism, and routing.
Triage Flow
- Classify the failure: build/type error, runtime SDK error, server error code, or workflow stuck/hanging.
- Confirm worker is running and connected to the correct server URL and group.
- Inspect the promise state and call graph for the execution ID.
- Validate registration names and serialization rules.
- Check determinism and
yield*usage inside durable functions.
CLI and Observability Tools
- Start a clean local server:
resonate dev. - Invoke a workflow:
resonate invoke --func --arg .... - Inspect call graph:
resonate tree. - Inspect promise state:
resonate promises get. - Search promises by state or tags:
resonate promises search. - Resolve/reject external promises:
resonate promises resolve|reject.
Common Symptoms and Fixes
- Function not registered (1103): ensure
registername matches invocation name. - Function already registered (1102): avoid duplicate names or versions in one process.
- Args unencodeable (1106): pass only serializable args to RPC or top-level invocations.
- Promise already exists (40900): expected for idempotency; change the ID when you want a fresh run.
- Promise not found (40400): wrong ID or wrong server URL.
- Promise already resolved/rejected/timed out (40300-40303): treat as idempotency; pick a new ID or handle as cached result.
- Workflow hangs: target group mismatch, no active workers, or missing
yield*before awaiting a future. - Unexpected replays: expected after each checkpoint; avoid side effects outside
ctx.run.
Code Examples
Minimal repro (worker)
// worker.ts
import { Resonate, type Context } from "@resonatehq/sdk";
const resonate = new Resonate({ url: "http://localhost:8001", group: "worker" });
function* ping(_: Context, name: string) {
return `pong ${name}`;
}
resonate.register("ping", ping);
Minimal repro (client)
// client.ts
import { Resonate } from "@resonatehq/sdk";
const client = new Resonate({ url: "http://localhost:8001", group: "client" });
const handle = await client.beginRpc(
"ping.1",
"ping",
"Ada",
client.options({ target: "poll://any@worker" })
);
console.log(await handle.result());
Inspect promise state
resonate promises get ping.1
resonate tree ping.1
ID reuse (expected cache)
const id = "order/123";
await resonate.run(id, processOrder, "123");
await resonate.run(id, processOrder, "123"); // returns cached result
Group mismatch (fix target)
// worker group is "workers"
const client = new Resonate({ url: "http://localhost:8001", group: "client" });
// wrong target
await client.rpc("job.1", "work", "x", client.options({ target: "poll://any@worker" }));
// correct target
await client.rpc("job.2", "work", "x", client.options({ target: "poll://any@workers" }));
Missing yield* (avoid)
function* bad(ctx: Context) {
const x = ctx.run(step); // missing yield*
return x;
}
function* good(ctx: Context) {
const x = yield* ctx.run(step);
return x;
}
Serialization error (avoid non-serializable args for rpc)
function* badRpc(ctx: Context, db: DbConn) {
return yield* ctx.rpc("remote", db); // db is not serializable
}
function* goodRpc(ctx: Context, dbId: string) {
return yield* ctx.rpc("remote", dbId);
}
Determinism Checklist
- Replace
Date.now()andMath.random()withctx.date.now()andctx.math.random(). - Wrap side effects inside
ctx.run. - Ensure return values are serializable.
Routing and Group Checks
- Verify the worker group matches the target used in
rpc/beginRpc. - Use
poll://any@for load balancing across that group. - Ensure the Resonate Client is configured with the correct
urlandgroup.
Data to Capture for a Bug Report
- Resonate Server version and SDK version.
- The promise ID and function name.
- Error code and full message.
- The target/group used for RPC calls.
- Minimal reproduction with a single durable function.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: resonatehq
- Source: resonatehq/resonate-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.