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


