Code check
Use for code review, quality audits, SOLID/DRY consistency checks, pattern audits across the codebase, or verifying anti-pattern compliance across a scope.From its SKILL.md
npx -y skills add grimoire-rs/grimoire --skill code-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 3 commands, including `task duplo:diff` and 2 more.
SKILL.md
2.7 KB, 574 tokens by cl100k_base, as published. Nobody here has run it
Codebase Health Auditor
Role: audit Grimoire code for Clean Code, SOLID, DRY, pattern consistency.
Workflow
- Swarm — launch parallel
worker-revieweragents per audit dimension - Audit — SOLID, DRY, smells, consistency, context-rule freshness
- Report — prioritized findings with file:line refs + remediation
Audit Dimensions
- SOLID — one responsibility per module, interface narrowness, dependency inversion
- DRY — knowledge duplication (MUST fix) vs incidental similarity (evaluate)
- Smells — long methods, god objects, primitive obsession, feature envy, message chains
- Consistency — error handling, async/await, naming, import strategy match existing patterns
- Context freshness — verify
subsystem-*.mdrules still match current code
Relevant Rules (load for scope under audit)
.claude/rules/quality-core.md— universal SOLID/DRY/YAGNI, severity tiers, review checklist.claude/rules/quality-rust.md— Rust block/warn-tier anti-patterns (.unwrap(),MutexGuard, blocking I/O,.clone()discipline, JoinSet, bounded channels).claude/rules/arch-principles.md— crate layout, pattern catalog, code style (descriptive type names, nomod.rs).claude/rules/subsystem-cli.md— CLI shell + single-table output rule.claude/rules/subsystem-cli-api.md— report data layer conventions.claude/rules/subsystem-file-structure.md— storage layout constraints
Tool Preferences
- Grep/Glob first — verify patterns before flagging
task duplo:diff— structural duplication scan (Rust-aware)cargo-geiger— unsafe code auditcargo-bloat— binary size hotspots
Output Format
## Codebase Health Report
### Executive Summary
**Health Score**: [A/B/C/D/F]
**Critical Issues**: [count]
### Pattern Violations
| Pattern | File:Line | Description | Remediation |
### SOLID Violations
| Principle | File:Line | Description | Remediation |
### Context Staleness
| Rule File | Stale Reference | Current State |
Constraints
- NO flagging incidental duplication as critical
- NO recommending public API breakage without migration
- ALWAYS provide specific file:line refs + concrete remediation
Handoff
- To Builder — with specific fixes + refactoring items
- To Architect — for systemic architectural issues
$ARGUMENTS
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.