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 Benknightdark/neo-skills --skill neo-rustgit clone --depth 1 https://github.com/Benknightdark/neo-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/benknightdark/neo-skills/neo-rust)<a href="https://agentmods.dev/skills/benknightdark/neo-skills/neo-rust"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-rust/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/benknightdark/neo-skills/neo-rust"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-rust.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Anti-Refusal · line 36 Skill instructs the agent to omit warnings, disclaimers, or ethical commentary. Stripping safety caveats hides risk from the user and is a common jailbreak preamble.Fix: Remove instructions that suppress warnings, disclaimers, or ethical commentary. Let the agent surface safety-relevant caveats to the user.
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.00058 | $0.01298 |
| Opus 5 | $0.00029 | $0.00649 |
| Sonnet 5 | $0.00012 | $0.00260 |
| Haiku 4.5 | $0.00006 | $0.00130 |
Grade A, and why
neo-rust scanned grade A with 1 finding 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 11d 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.
Strips warnings and disclaimerslowAnti-refusal
Omitting safety caveats hides risk from the user and is a common jailbreak preamble.
- [ ] Step 3: Implement & Validate (After writing or modifying code, compile and analyze it locally using `cargo check` and `cargo clippy`. Fix any warnings or errors until compilation passes cleanly without warnings). Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Neo Rust Expert
Write safe, maintainable, and idiomatic Rust code by strictly following the official design patterns, leveraging Rust's powerful type system, and avoiding anti-patterns.
Gotchas
- Gotcha 1 (Async Mutex Deadlock / Send Error):
In an
asyncfunction, using the standard library'sstd::sync::Mutexand holding itsMutexGuardacross an.awaitboundary will cause a compiler error becauseMutexGuarddoes not implementSendand cannot be transferred across threads.- Solution: Use a local block
{}to limit the MutexGuard lifetime before the.await, or usetokio::sync::Mutexinstead.
- Solution: Use a local block
- Gotcha 2 (Excessive Cloning):
To satisfy the Borrow Checker, beginners often call
.clone()excessively, which introduces significant memory allocation and copy overhead.- Solution: Prioritize passing borrowed references (e.g.,
&strinstead ofString,&[T]instead ofVec<T>), or refactor ownership structures and lifetimes.
- Solution: Prioritize passing borrowed references (e.g.,
- Gotcha 3 (Unsafe Unwrapping):
Using
.unwrap()orpanic!()directly in library or production-grade code will cause the application to crash, violating Rust's safety-first principle.- Solution: Always return
Result<T, E>orOption<T>for graceful error propagation, and use the?operator ormatchexpression to handle them.
- Solution: Always return
Workflow Checklist
Progress:
- Step 1: Perceive & Inventory (Check if
Cargo.tomland.rsfiles exist in the project, and clarify whether the task is "feature development", "refactoring", or "Code Review"). - Step 2: Load Reference (Based on the task type, dynamically load corresponding reference files: load
reference/patterns.mdandreference/coding-style.mdfor writing new code, and loadreference/anti-patterns.mdfor reviews and debugging). - Step 3: Implement & Validate (After writing or modifying code, compile and analyze it locally using
cargo checkandcargo clippy. Fix any warnings or errors until compilation passes cleanly without warnings). - Step 4: Format & Finalize (Run
cargo fmtto format the code according to official guidelines, and present output using the Output Templates).
What ships with it
5 files 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.
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.
- 11d ago First seen · 108 lines · 58 tokens per session scan A d3ab72f98393
neo-rust is a skill published in the GitHub repository Benknightdark/neo-skills (7 stars, last pushed 5d ago), licensed MIT. It adds 58 tokens to every session and 1,298 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
rust-api-guidelines
Enforces the official Rust API Guidelines (https://rust-lang.github.io/api-guidelines/) when writing, reviewing, or refactoring Rust library code. Use this skill whenever you are writing new Rust structs, enums, traits, functions, or modules that form a public API — including when designing error types, implementing…
pinocchio-development
Comprehensive guide for building high-performance Solana programs using Pinocchio - the zero-dependency, zero-copy framework. Covers account validation, CPI patterns, optimization techniques, and migration from Anchor.
coding-assistant
Provides coding assistance with best practices and code review.
rust
Use when writing Rust or resolving borrow-checker, lifetime, and trait errors. Covers ownership models, error handling with thiserror and anyhow, async with Tokio, and safe abstractions over unsafe code.
go-code-review
Use when reviewing Go code for performance, concurrency safety, security vulnerabilities, or readability issues.
go-code-review
Invoke this skill to systematically review a Go change against community style standards before merging. Walks the diff topic by topic — formatting, errors, naming, concurrency, interfaces, data structures, security, declarations, functions, style, logging, imports, generics, testing — flagging issues with line…