Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:11,231
forks:541
updated:2026년 2월 6일 22:27
SKILL.md
Trigger a new lambda release, update build.rs with the new artifact URL and SHA256, and open a PR
Create a simple PR from staged changes with an auto-generated commit message
Run `make fmt` to check the code format.
Analyze Cargo.toml dependencies and attempt to remove unused features to reduce compile times and binary size
Bump tantivy to the latest commit on main branch, fix compilation issues, and open a PR
| name | fix-clippy |
| description | Fix all clippy lint warnings in the project |
Clippy issues are warnings, not errors. Never grep for error when looking for clippy issues.
Run make fix to automatically fix clippy warnings:
make fix
Check for remaining warnings that couldn't be auto-fixed:
cargo clippy --tests 2>&1 | grep "^warning:" | sort -u
For each remaining warning, find the exact location and fix it manually.