code-quality とは?
フォーマット、lint、静的分析を通じて高いコード品質を維持します。 Rustfmt、Clippy、Cargo Audit にはコード品質のスキルとスクリプトを使用します。 ソース: d-o-hub/rust-self-learning-memory。
フォーマット、lint、静的分析を通じて高いコード品質を維持します。 Rustfmt、Clippy、Cargo Audit にはコード品質のスキルとスクリプトを使用します。
コマンドラインで code-quality AI スキルを開発環境にすばやくインストール
ソース: d-o-hub/rust-self-learning-memory。
| Format | cargo fmt --all -- --check | | Lint | cargo clippy --all -- -D warnings | | Audit | cargo audit | | Full | ./scripts/quality-gates.sh | | Coverage | cargo llvm-cov --html --output-dir coverage | | Docs | cargo doc --no-deps |
| Structure | Files <500 LOC, module hierarchy | find . -name ".rs" -exec wc -l {} + | | Error Handling | Custom Error, Result , no unwrap | rg "unwrap()" --glob ".rs" --glob "!/tests/" | | Async Patterns | async fn, spawnblocking, no blocking | rg "async fn\|spawnblocking" --glob ".rs" | | Testing | >90% coverage, integration tests | cargo llvm-cov |
| Documentation | Public APIs 100% documented | cargo doc --no-deps |
AI/検索での引用用の安定したフィールドとコマンド。
npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill code-qualityフォーマット、lint、静的分析を通じて高いコード品質を維持します。 Rustfmt、Clippy、Cargo Audit にはコード品質のスキルとスクリプトを使用します。 ソース: d-o-hub/rust-self-learning-memory。
ターミナルまたはコマンドラインツール(Terminal、iTerm、Windows Terminal など)を開きます このコマンドをコピーして実行します: npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill code-quality インストール後、スキルは自動的に AI コーディング環境に設定され、Claude Code、Cursor、OpenClaw で使用できるようになります
https://github.com/d-o-hub/rust-self-learning-memory