test-rust

A Rust testing workflow that runs unit tests, integration tests, and documentation tests, with an optional code-coverage report. It uses nextest to run tests in parallel.

In plain words
What is it for?
Use it to run a complete Rust test suite, investigate failures, and generate an HTML coverage report.
Why use it?
It checks more than unit tests alone, helping find problems between components and in code examples documented for users.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/d-oit/rust-2026-template/test-rust
Any agent
npx skills add d-oit/rust-2026-template --skill test-rust
Clone the repo
git clone --depth 1 https://github.com/d-oit/rust-2026-template

Made for: Claude Code, Codex.

Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 549 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00063 $0.00549
Opus 5 $0.00032 $0.00275
Sonnet 5 $0.00013 $0.00110
Haiku 4.5 $0.00006 $0.00055

Measured 2d ago against content hash da4771365e72, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

test-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 2d 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.

.agents/skills/test-rust/SKILL.md · 91 lines

What it actually says

Skill: test-rust

When to Use

  • User asks for this skill's functionality

Purpose

Run the complete test suite for a Rust project using best practices.

Prerequisites

  • cargo nextest (cargo install cargo-nextest)
  • cargo llvm-cov for coverage (cargo install cargo-llvm-cov)

Steps

1. Unit + integration tests

cargo nextest run --all-features --workspace

2. Doc tests

cargo test --doc --all-features

3. With coverage

cargo llvm-cov nextest --all-features --workspace --html

4. Report metrics

Call metrics-reporter skill.

Test Organization

src/lib.rs          # #[cfg(test)] mod tests {}
tests/              # Integration tests
benches/            # Criterion benchmarks

Success Criteria

  • All tests pass
  • Doc tests pass
  • Coverage >= 80%
  • build-rust, lint-rust, release-rust, metrics-reporter

Rationalizations

Rationalization Reality
"Unit tests pass, so the code is correct." Unit tests don't catch integration issues. Run doc tests and integration tests too.
"Coverage is at 50%, that's probably fine." Below 80% coverage leaves significant untested code paths.
"I'll skip doc tests — they're just examples." Doc tests are compiled and run. They catch stale documentation and API mismatches.

Red Flags

  • Running cargo test without --all-features (hides feature-gated test failures)
  • Skipping doc tests (cargo test --doc)
  • Not using cargo-nextest for parallel test execution

References

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 2d ago First seen · 91 lines · 63 tokens per session scan A da4771365e72

Subscribe to this mod's changes

test-rust is a skill published in the GitHub repository d-oit/rust-2026-template (10 stars, last pushed 3d ago), licensed MIT. It adds 63 tokens to every session and 549 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.

Related

Other skills, from other repositories

merge-seed

Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.

kriasoft/react-starter-kit · 49 tokens

starter-cleaner

将 wot-starter v2 模板精简为最小可开发状态,移除文档、演示分包、生成文件和 monorepo 配置,并同步清理相关 Vite 与 package.json 配置。用户要求“清理模板”“移除示例”“生成最小模板”“精简 wot-starter v2”时使用。.

wot-ui/wot-starter · 82 tokens

wot-ui-cli

回答、使用、调试 @wot-ui/cli 时使用。关键词:wot、@wot-ui/cli、CLI、MCP、doctor、usage、lint、list、info、doc、demo、token、changelog、extract、wot mcp。适用于命令查询、参数说明、MCP 接入、本地调试、数据提取与 open-wot 仓库维护。.

wot-ui/wot-starter · 93 tokens

wot-ui-v2

回答、生成、重构、排查 wot-ui v2 相关代码时使用。关键词:wot-ui、uni-app、Vue3、wd-、ConfigProvider、useToast、useDialog、Form、Popup、theme、llms-full。适用于组件选型、API 查询、示例页面生成、主题定制、常见坑排查。.

wot-ui/wot-starter · 84 tokens

better-auth-best-practices

Configure Better Auth server and client, set up database adapters, manage sessions, add plugins, and handle environment variables. Use when users mention Better Auth, betterauth, auth.ts, or need to set up TypeScript authentication with email/password, OAuth, or plugin configuration.

YuDefine/nuxt-supabase-starter · 61 tokens

reka-ui

Use when building with Reka UI (headless Vue components) - provides component API, accessibility patterns, composition (asChild), controlled/uncontrolled state, virtualization, and styling integration. Formerly Radix Vue.

YuDefine/nuxt-supabase-starter · 47 tokens