code-quality-review-workspace/skill-snapshot/SKILL.md
Run a code quality review focused on maintainability, structure, abstraction quality, file growth, branching complexity, boundary cleanliness, and refactoring opportunities. Use when the user asks for code quality review, code review, maintainability review, architecture quality review, PR code quality feedback, 代码质量审查, 代码质量 review, 可维护性审查, 架构质量审查, or review comments about code structure. Do not use for pure security review, formatting-only review, performance profiling, or implementation tasks unless the user also asks for a code quality review.
npx skillsauth add bahayonghang/my-claude-code-settings code-quality-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to perform a strict, evidence-based review of code quality and maintainability. Focus on whether the change keeps the codebase easier to understand, modify, test, and extend.
Prioritize structural concerns over style nits: abstraction quality, branching complexity, file growth, boundary cleanliness, canonical-layer ownership, duplication, orchestration complexity, and refactoring opportunities that preserve behavior while simplifying the implementation.
Use this skill when the user asks for:
code quality review, code review, maintainability review, or architecture quality review代码质量审查, 代码质量 review, 可维护性审查, or 架构质量审查Do not use this skill as the primary guide for:
If the user asks to implement fixes after the review, switch from review mode to an explicit implementation plan before editing files.
git diff and staged diff) when safe and available.| Area | Flag when | Prefer |
| --- | --- | --- |
| Structural simplification | The change preserves incidental complexity or adds concepts without clear leverage. | Reframe the flow so branches, modes, helpers, or layers disappear. |
| Branching complexity | New conditionals, flags, modes, or special cases are scattered through unrelated paths. | Move policy into a focused helper, explicit model, state machine, or owned module. |
| File growth | A file grows past a healthy size boundary, especially near or beyond 1000 lines. | Split focused modules, helpers, components, or orchestration layers. |
| Abstraction quality | Wrappers, generic mechanisms, or pass-through helpers add indirection without reducing cognitive load. | Inline thin wrappers or deepen the abstraction so it hides real complexity. |
| Boundary and type contracts | any, unknown, casts, optionality, or silent fallback hide the real invariant. | Make the boundary explicit with a typed model, shared contract, or validated input shape. |
| Canonical ownership | Feature logic leaks into shared paths or duplicates existing utilities. | Reuse canonical helpers and move logic to the layer that owns the concept. |
| Orchestration and atomicity | Independent work is serialized needlessly, or related updates can leave half-applied state. | Simplify orchestration, parallelize independent work when clearer, and keep related updates atomic. |
Blocker: Clear structural regression that should not merge without redesign, such as major complexity growth, wrong-layer feature leakage, a file crossing a major size threshold without justification, or a contract that makes future changes unsafe.High: Maintainability degradation that is likely to spread or make future work harder, with a concrete remediation path.Medium: Local design smell or missed simplification worth addressing, but not necessarily merge-blocking.Low: Minor readability or organization issue. Include only when it is useful and does not distract from larger findings.Do not escalate speculative preferences. If evidence is incomplete, label the uncertainty and ask for missing context instead of presenting a guess as a finding.
Return the review in this structure:
## Verdict
REQUEST CHANGES | COMMENT ONLY | NEEDS SCOPE | NO MAJOR FINDINGS
One-sentence rationale.
## Findings
### 1. [Severity] Short finding title
- Location: path:line or file-level / architecture-level
- Evidence: quote or concise description of the relevant code/diff
- Why it matters: maintainability, abstraction, boundary, or complexity impact
- Recommended remediation: concrete structural alternative or next step
- Confidence: High | Medium | Low
## Checked but not flagged
- Major areas inspected that did not produce findings.
## Scope limitations
- Missing files, diff context, tests, or repository state that limited confidence.
If there are no meaningful findings, use NO MAJOR FINDINGS and still summarize what was checked. If the target is unclear, use NEEDS SCOPE and ask for the exact files, diff, PR, or subsystem.
development
Use only when the user explicitly asks for swarm, subagents, parallel agents, dynamic workflow, multi-agent orchestration, 多智能体编排, or when the task truly needs coordinated research plus implementation plus review plus verification packets. Do not use for ordinary code review, planning-only work, single-line bugfixes, routine audits, or migrations unless orchestration is requested or at least two independent workflow dimensions are present.
development
Plan-first brainstorming workflow that turns an idea into an approved Markdown implementation plan by default. Use when the user wants to brainstorm, design, scope, or plan a feature/spec before implementation. Spark explores project context, asks only blocking questions, writes the plan under the project root's .plannings/YYYY-MM-DD-feature-slug.md path, self-reviews it, and waits for user approval. Create an HTML or visual plan/spec only when the user explicitly asks for HTML, browser-viewable, or visual output; save the paired .html beside the Markdown plan.
development
Run a code quality review focused on maintainability, structure, abstraction quality, file growth, branching complexity, boundary cleanliness, and refactoring opportunities. Use when the user asks for code quality review, code review, maintainability review, architecture quality review, PR code quality feedback, 代码质量审查, 代码质量 review, 可维护性审查, 架构质量审查, or review comments about code structure. Do not use for pure security review, formatting-only review, performance profiling, or implementation tasks unless the user also asks for a code quality review.
tools
Modify the Beautiful Mermaid live editor itself rather than writing ordinary Mermaid diagrams. Use when the task mentions the Beautiful Mermaid repo, `editor.ts`, generated `editor.html`, config panel/options, themes or dark mode, zoom, PNG/SVG export, clipboard behavior, sample presets, or renderer wiring for the editor. Do not use for generic Mermaid syntax help or normal Markdown Mermaid authoring.