Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기lint
스타4
포크0
업데이트2026년 7월 2일 11:46
Run all linters and formatters
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Run all linters and formatters
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Build the project and report any errors
Auto-fix formatting and linting issues
Work in iterations with implementation rounds followed by critical review passes
Split tasks among subagents for parallel execution
Review current changes for correctness, style, and potential issues
Run the test suite and report results
| description | Run all linters and formatters |
| name | lint |
| user_invocable | true |
Run all linters and formatters to check code quality.
cargo fmt -- --check to verify formatting.cargo clippy -- -D warnings to check for lint issues.poly fmt --check . and poly lint . to verify formatting and lint the codebase.