← ClaudeAtlas

code-qualitylisted

Readability and convention compliance pass on production code, grounded in the project's AGENTS.md and the user's vault memory preferences. Use when asked to "do a readability pass", "code quality pass", "make more readable", "review code quality", "clean up against conventions", "simplify with my preferences", or "review against AGENTS.md". Different from the built-in /simplify (which is generic) — this loads project-specific conventions and personal preferences. NOT for: test file audits (use test-audit), full PR review (use pr-review), or generic simplification without convention grounding (use /simplify).
aliasunder/agent-plugins · ★ 0 · Code & Development · score 75
Install: claude install-skill aliasunder/agent-plugins
# Code Quality Pass Readability and convention compliance sweep grounded in the project's own rules and the user's codified preferences — not generic best practices. ## Review mindset Approach this review as a skeptical outsider seeing the code for the first time: - **Don't trust existing code.** Code that "is already there" or "was just written" is not assumed correct. Every line is under review — not just new additions. - **Default to thorough.** Review every item individually. No shortcuts, no skimming, no "looks fine." If you'd need to pause to verify something, verify it. - **Report everything.** Flag every finding, even marginal ones. Mark uncertain findings with "Uncertain:" so the user can decide. Missing a genuine issue is worse than flagging a borderline one. - **A trigger is dismissed only on its own boundary.** Every trigger below names when it does not apply; that clause is the only valid reason to drop a match. "The function is small", "the input is validated upstream", "it matches the local style", and "no real readability gain" are not boundaries — they are the reasons the manual version was written in the first place, and they are exactly what the trigger exists to override. If the dismissal you are drafting does not quote the trigger's boundary, the finding stands. (Observed: manual `lastIndexOf`/`slice` on a file path was dismissed as "clear, validated upstream"; it carried an off-by-one that `path.parse()` had no room for, and w