fix-detekt
스타9
포크0
업데이트2026년 2월 15일 07:02
Run detekt and fix reported issues
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Run detekt and fix reported issues
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Process issues sequentially: /dev per issue in isolated sub-agent → CI wait → merge → next
E2E development: investigate → dig → decompose → implement → test → review → PR
Break a task into ordered subtasks with dependencies
Investigate codebase for an issue in a forked context (context isolation)
Clarify ambiguities in plans with structured questions and auto-decide rules
Audit codebase for tech debt, code quality, and architecture issues — then create GitHub Issues
| name | fix-detekt |
| description | Run detekt and fix reported issues |
| user-invocable | true |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, Edit |
Run detekt, parse the output, and fix all reported issues.
./gradlew detekt and capture the output.LongMethod: Split the composable/function into smaller piecesMagicNumber: Extract to a named constantUnusedImport: Remove the importMaxLineLength: Break the line appropriately./gradlew detekt again — auto-correct may reorder imports, causing new issues on the first pass../gradlew detekt one more time to confirm zero issues.