feat: bootstrap he maintainer skill

This commit is contained in:
2026-04-29 21:52:55 +08:00
commit c507e52dc1
10 changed files with 377 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# Rust Harness Notes
Use this reference for Rust repositories.
## Common files to inspect
- `Cargo.toml`
- `Cargo.lock`
- `src/`
- `crates/`
- `tests/`
- `rust-toolchain.toml`
## Common validation commands
Typical examples:
- `cargo test`
- `cargo build`
- `cargo clippy --all-targets --all-features -- -D warnings`
- `cargo fmt --check`
## Common guardrails
- do not casually update `Cargo.lock`
- check for workspace crates before describing structure
- prefer the smallest crate-local change that solves the task
- distinguish unit, integration, and benchmark targets when relevant