fix-detekt
Run detekt and fix reported issues
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run detekt and fix reported issues
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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.