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 agentmods add skills/softspark/ai-toolkit/rust-rulesnpx skills add softspark/ai-toolkit --skill rust-rulesgit clone --depth 1 https://github.com/softspark/ai-toolkitWrote 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/softspark/ai-toolkit/rust-rules)<a href="https://agentmods.dev/skills/softspark/ai-toolkit/rust-rules"><img src="https://agentmods.dev/badge/skills/softspark/ai-toolkit/rust-rules.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 | $0.00043 | $0.03021 |
| Opus 5 | $0.00022 | $0.01510 |
| Sonnet 5 | $0.00009 | $0.00604 |
| Haiku 4.5 | $0.00004 | $0.00302 |
Grade A, and why
rust-rules 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 yesterday.
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 — 277 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Rust Rules
These rules come from app/rules/rust/ in ai-toolkit. They cover
the project's standards for coding style, frameworks, patterns,
security, and testing in Rust. Apply them when writing or
reviewing Rust code.
Rust Coding Style
Naming
- snake_case: functions, methods, variables, modules, crates.
- PascalCase: types, traits, enums, structs, type parameters.
- SCREAMING_SNAKE: constants and statics.
- Short lifetimes:
'a,'b. Descriptive only when multiple coexist:'input,'output. - Crate names: kebab-case in Cargo.toml, snake_case in code.
Ownership
- Borrow (
&T) when you only need to read. Own (T) when storing or consuming. - Use
&stroverStringin function parameters when possible. - Use
Cow<'_, str>when you sometimes need to allocate. - Avoid
.clone()as a first resort -- restructure ownership instead. - Use
Arc<T>only when shared ownership across threads is required.
Types
- Use newtypes for domain primitives:
struct UserId(Uuid). - Use
#[derive(Debug, Clone, PartialEq)]on data types. - Implement
Displayfor user-facing output,Debugfor developer output. - Use
#[non_exhaustive]on public enums and structs for future compatibility. - Prefer enums over boolean flags for state representation.
Functions
- Return
Result<T, E>for operations that can fail. Avoid panicking. - Use
impl Traitin argument position for flexibility, return position for simplicity. - Use
whereclauses for complex bounds instead of inline. - Prefer iterators over index-based loops.
- Use
let-else(1.65+) for early-exit pattern matching.
Modules
- Use
mod.rsor filename-based modules. Be consistent within the project. - Re-export public API from
lib.rsfor a clean surface. - Keep modules focused. One major type or concept per module.
- Use
pub(crate)for internal-only visibility.
Formatting
- Use
rustfmtwith default settings. Do not fight the formatter. - Use
clippywith-D warningsin CI. Fix all warnings. - Set MSRV (Minimum Supported Rust Version) in
Cargo.toml.
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.
- yesterday First seen · 277 lines · 43 tokens per session scan A 8ac24fad76f9
rust-rules is a skill published in the GitHub repository softspark/ai-toolkit (169 stars, last pushed today), licensed Apache-2.0. It adds 43 tokens to every session and 3,021 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
bevy-ecs
Structure a Bevy app around its Entity Component System: build the App with plugins, define Component/Resource types, write systems with Query/Res/Commands, filter and order systems, and use the Time resource for frame-rate-independent motion. Use when building or debugging a Bevy game in Rust — when the user mentions…
rust-engineer
Acquire expert Rust developer specialisation in rust systems programming, memory safety, and zero-cost abstractions. Masters ownership patterns, async programming, and performance optimisation for mission-critical applications.
rust-development
You MUST activate this skill when working on Rust projects.
neo-rust
Use this skill when writing, refactoring, debugging, or auditing Rust code. Trigger for .rs files, Cargo projects, ownership/borrowing/lifetime issues, Result/Option error handling, unnecessary clone/performance work, unsafe code review, or modern Rust architecture.
polars
Fast in-memory DataFrame library for datasets that fit in RAM. Use when pandas is too slow but data still fits in memory. Lazy evaluation, parallel execution, Apache Arrow backend. Best for 1-100GB datasets, ETL pipelines, faster pandas replacement. For larger-than-RAM data use dask or vaex.
first-plan-lens-rust
Stack lens para Rust. Use durante Discovery quando Cargo.toml for detectado. Cobre binários, libs, async runtimes (tokio/async-std), error handling, web frameworks (axum, actix-web, rocket).