·code-quality
</>

code-quality

Maintain high code quality through formatting, linting, and static analysis. Use code-quality skill and scripts for rustfmt, clippy, or cargo audit.

16Installs·2Trend·@d-o-hub

Installation

$npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill code-quality

How to Install code-quality

Quickly install code-quality AI skill to your development environment via command line

  1. Open Terminal: Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.)
  2. Run Installation Command: Copy and run this command: npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill code-quality
  3. Verify Installation: Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Source: d-o-hub/rust-self-learning-memory.

SKILL.md

View raw

| 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 |

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill code-quality
Category
</>Dev Tools
Verified
First Seen
2026-02-23
Updated
2026-03-10

Browse more skills from d-o-hub/rust-self-learning-memory

Quick answers

What is code-quality?

Maintain high code quality through formatting, linting, and static analysis. Use code-quality skill and scripts for rustfmt, clippy, or cargo audit. Source: d-o-hub/rust-self-learning-memory.

How do I install code-quality?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill code-quality Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Where is the source repository?

https://github.com/d-o-hub/rust-self-learning-memory