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-basic-debugging-rustgit 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-basic-debugging-rust)<a href="https://agentmods.dev/skills/resonatehq/resonate-skills/resonate-basic-debugging-rust"><img src="https://agentmods.dev/badge/skills/resonatehq/resonate-skills/resonate-basic-debugging-rust.svg" alt="Measured on agentmods" 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.00051 | $0.03007 |
| Opus 5 | $0.00026 | $0.01503 |
| Sonnet 5 | $0.00010 | $0.00601 |
| Haiku 4.5 | $0.00005 | $0.00301 |
Grade A, and why
resonate-basic-debugging-rust 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 7d 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 — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Resonate Basic Debugging — Rust
SDK note. This SDK is in active development (v0.6.0, published on crates.io), and documented behaviors may shift between releases. Failure modes listed here are what the documented surface produces; new ones will appear as the SDK grows.
Overview
Rust's failure modes differ from TS's and Python's. Compile-time type errors catch many bugs the other SDKs only discover at runtime; the remaining runtime failures are usually serde, tokio, or registration-name related. This skill covers the shapes you'll actually see.
For the language-agnostic replay + recovery mental model, read durable-execution first.
Triage flow
- Does it compile? If
cargo buildfails, you're in type-error territory (likely: missingResult<T>return, wrong first-parameter type, forgotten&on Context/Info, missing?on an await) - Does it register?
resonate.register(fn)returns aResult; unwrap it and look at the error (duplicate name, bad signature) - Does the function kind match expectations? The SDK infers kind from the first parameter —
&Contextvs&Infovs a value type - Is serde happy? Input/output types need
Serialize+Deserializederives; stack traces mentioningserde_json::Errormean a type doesn't derive correctly - Is the tokio runtime correct?
#[tokio::main]or#[tokio::test(flavor = "multi_thread")]needed; single-threaded runtime can deadlock on SDK internals - Check server + SDK compatibility. The SDK version in
Cargo.tomlmust align with the server version you're testing against; check the SDK CHANGELOG for compatibility notes
Install / dependency issues
Symptom: cannot find crate 'resonate' or version-resolution errors.
Cause: Check your Cargo.toml. The SDK is published on crates.io — pin the current release:
[dependencies]
resonate = { package = "resonate-sdk", version = "0.6" }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
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.
- 7d ago First seen · 283 lines · 51 tokens per session scan A 8f9bb9d15b55
resonate-basic-debugging-rust is a skill published in the GitHub repository resonatehq/resonate-skills (6 stars, last pushed 15d ago), licensed Apache-2.0. It adds 51 tokens to every session and 3,007 once invoked, about $0.0003 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
golem-retry-policies-rust
Configuring semantic retry policies for a Rust Golem agent. Use when the user asks about retry policies, retry strategies, exponential backoff, error handling retries, transient error recovery, retry predicates, withRetryPolicy, withnamedpolicy, NamedPolicy, Policy composition, jitter, countBox, timeBox, andThen, or…
golem-logging-rust
Adding logging to a Rust Golem agent. Use when the user asks about logging, log messages, log levels, the log crate, or printing debug/info/error output from a Rust agent.
rust-check
Run cargo check on the current Rust project to find compile errors.
stack-trace-rust-probe
Internal helper for meta-stack-trace-investigator. Use when a Rust panic or backtrace needs Rust-specific Result/Option checks, cargo test guidance, and patch targets.
hotpath_init
Configure hotpath profiling in a Rust project. Adds the hotpath dependency with feature-gated setup, instruments main with hotpath::main, functions with measure/measureall, and wraps channels, mutexes, rwlocks, streams, futures, reqwest clients, axum routers and byte-level I/O with hotpath macros. Use when the user…
clickhouse-rust-type-mismatches
Fix ClickHouse query errors in Rust when using clickhouse-rs crate. Use when: (1) "string is not valid utf8" errors - typically FixedString columns need CAST to String, (2) "tag for enum is not valid" errors - typically Option fields receiving non-NULL values, (3) Sum/count aggregations returning Float64 but Rust…