원클릭으로
wrong-kind-of-comment
Flag comments that describe *what* the code does instead of *why* it does it.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Flag comments that describe *what* the code does instead of *why* it does it.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build and manage a kind cluster for Workload-Aware Scheduling (WAS) e2e tests. Use when the user wants to set up, run tests against, or tear down a WAS test cluster built from Kubernetes main.
Flag solutions more elaborate than the problem requires — complexity that exists only because the author reached for a pattern.
Flag identical (or near-identical) blocks across types/adapters/call sites that should live in a shared helper — and newly extracted helpers with only one caller.
Flag code organization that a future maintainer will struggle to follow, modify, or extend.
Flag code put somewhere a reader would not expect to find it — cleanup scattered across callers, validation deep in business logic.
Flag unnecessary indirection, mismatched abstractions, or confusing data flow that obscures what the code is doing.
| name | wrong-kind-of-comment |
| description | Flag comments that describe *what* the code does instead of *why* it does it. |
| license | Apache-2.0 |
| metadata | {"copyright":"The Kubernetes Authors"} |
Wrong kind of comment — comments that describe what the code does instead of why it does it. Useful comments explain non-obvious motivation, hidden constraints, or the theoretical background a reader could not infer from the code itself.