rust
SkillDev toolsWorkspace-specific Rust rules that override common habits: panic instead of dummy or no-op fallbacks, no wildcard match arms, dependencies managed in the workspace Cargo.toml, 2024 edition, zero warnings and clippy lints. Read before writing or editing Rust (.rs) code.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the rust skill
What this skill tells your AI
The instructions your AI receives, as published by wado-lang/wado in .claude/skills/rust/SKILL.md and read by ahel’s review.
- Manage dependencies in the workspace
Cargo.toml. - Use the
panic!macro instead of falling back to meaningless dummy values or no-op implementations. - Use the
2024edition. - Keep the code free of compiler warnings and Clippy lints.
mise run clippyruns-D warnings, so any warning or lint fails it. - Import every item you name. A
crate::orsuper::path goes in auseitem at the top of the module; where the item is read, write its name.use crate::elaborator::sem::Ty;thenTy, nevercrate::elaborator::sem::Tyinline. Alias a collision (use crate::ast::Ty as AstTy;) rather than spelling the path out. A hook refuses an edit that writes one inline, andmise run check-rust-pathsgates the rest. - Avoid wildcard match arms (
_ => ...) unless absolutely necessary.
Signals
- GitHub stars
- 113
- Forks
- 2
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
rust-wado-lang- Source
- github.com/wado-lang/wado