Agent Skills
› katanemo/plano
› check
check
GitHub对 Rust 代码变更执行本地检查,依次运行格式化、Clippy 静态分析和单元测试,修复问题并报告结果。
Trigger Scenarios
修改了 Rust 代码后
提交代码前需要验证
Install
npx skills add katanemo/plano --skill check -g -y
SKILL.md
Frontmatter
{
"name": "check",
"description": "Run Rust fmt, clippy, and unit tests. Use after making Rust code changes."
}
Run all local checks in order:
cd crates && cargo fmt --all -- --check— if formatting fails, runcargo fmt --allto fix itcd crates && cargo clippy --locked --all-targets --all-features -- -D warnings— fix any warningscd crates && cargo test --lib— ensure all unit tests pass
Report a summary of what passed/failed.
Version History
- 0.4.26 Current 2026-07-06 00:27


