원클릭으로
code-quality
Use this skill when analyzing or refactoring code for readability, simplicity, and maintainability.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use this skill when analyzing or refactoring code for readability, simplicity, and maintainability.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill when adding, changing, or reviewing UI for keyboard, screen reader, semantic, motion, and contrast accessibility.
Use this skill for every implementation task to keep changes small, safe, and scoped.
Use this skill when editing Astro pages, layouts, components, and static output.
Use this skill when editing styles, spacing, typography, layout, or component appearance.
Use this skill when implementing or modifying static site search with Pagefind.
Use this skill when adding dependencies, scripts, images, embeds, search, analytics, or interactive UI.
| name | code-quality |
| title | Code Quality Refactor |
| description | Use this skill when analyzing or refactoring code for readability, simplicity, and maintainability. |
| category | engineering |
| applies_to | ["TypeScript","JavaScript","CSS","Astro","refactoring"] |
| triggers | ["refactor","simplify","cleanup","readability","maintainability","dead code"] |
| priority | medium |
| version | 1 |
Use this skill when analyzing or refactoring existing code for simplicity, readability, maintainability, and helpful documentation.
Improve code quality without changing user-facing behavior, visual appearance, routes, content, accessibility, or performance characteristics.
This skill is conservative. Prefer small, obvious improvements over broad rewrites.
Look for:
Comments should be succinct and useful.
Add comments when:
Do not add comments that merely repeat what the code says.
Avoid comments like:
// Set count to 0
const count = 0;
Prefer comments like:
// Keep this inline so the theme is applied before the page paints.
Do not change:
Stop and report instead of guessing when:
Run the most relevant available checks.
Prefer:
pnpm lint
pnpm build
If the project has a focused analysis script such as pnpm fallow, use it as an advisory signal, not as an automatic rewrite instruction.
If pnpm fallow reports issues:
After changes, report: