AgentSkillsCN

lang-rust

针对代理的 Rust 规范与可靠性检查清单(涵盖 Cargo、Clippy 以及各类测试)。

SKILL.md
--- frontmatter
name: lang-rust
description: Rust conventions and reliability checklist for agents using cargo, clippy, and tests.

Rust Conventions

  • Use cargo fmt and cargo clippy where available.
  • Prefer explicit error types and context; avoid unwrap() in production code.
  • Keep changes compiling at each step; run cargo test.
  • Be mindful of lifetimes/ownership; keep APIs simple.