← ClaudeAtlas

code-teamlisted

Deploy the code-quality agents (code-quality-reviewer, code-architect) alongside the /code-review skill to answer "is this code well-built?" — clean code, SOLID, structure, maintainability, refactoring. Advisory-first. Use standalone ("review this module's quality", "how should this be structured?", "is this refactor sound?") or as the quality lane inside a plan/body-of-work. Complements test/correctness review for "is it proven correct?".
hjr15/claude-kit · ★ 0 · Code & Development · score 76
Install: claude install-skill hjr15/claude-kit
# /code-team — "Is this code well-built?" ## Overview The quality lane — distinct from, and run alongside, the testing lane: | Tool | Answers | |---|---| | `/code-review` skill | **Correctness + reuse/simplification** on the *diff* (bugs, dead code, efficiency) — the existing, primary review entry point | | `code-quality-reviewer` agent | **Clean code / maintainability** — readability, SOLID, code smells, complexity, DRY, with concrete refactoring guidance | | `code-architect` agent | **Structure** — folder/module organisation, layering, boundaries (shared with `architect-team`) | **Boundary:** `code-team` = *is it well-built and maintainable?* The **testing-team** = *is it proven correct?* They run separately and compose; don't fold one into the other (your call — sharper focus, lower per-task token cost). ## Adaptive agent selection (token discipline) Deploy **only what the task needs**: - *review a PR/diff* → start with the `/code-review` skill; add `code-quality-reviewer` when maintainability/refactoring (not just correctness) is the concern. - *"how should this be organised?"* / new module layout → `code-architect`. - *"is this code healthy?"* on existing code → `code-quality-reviewer`. - *big refactor* → `code-architect` (structure) + `code-quality-reviewer` (smells), then testing-team to lock behaviour. One tool is the norm. Don't run all three for a small change. ## When to Use - Standalone: "review this module's quality", "is this refactor sound?", "where a