fix-detekt
النجوم٩
التفرعات٠
آخر تحديث١٥ فبراير ٢٠٢٦ في ٠٧:٠٢
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 ويثبّتها لك.
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
استنادا إلى تصنيف SOC المهني
| 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.