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


