| name | fix-linter-error |
| description | fixing all violations of one or… |
| allowed-tools | ["Read","Bash","Glob","Grep"] |
Fix Linter Errors
Target cops: $ARGUMENTS
If no arguments provided, prompt the user for at least one RuboCop cop name.
Step 1: Gather Requirements
- Parse cops from $ARGUMENTS (space-separated)
- Run RuboCop to collect all violations:
bundle exec rubocop --format json 2>&1
- Group violations by cop, then by file, noting:
- File path and line numbers
- Violation count per file
- Sample offense messages
Step 2: Compile Brief and Delegate
Compile the gathered information into a structured brief:
Fix RuboCop violations for cops: $ARGUMENTS
Violations by cop:
- [CopName1]: X total violations across Y files
- [file]: N violations (lines: ...)
- ...
- [CopName2]: X total violations across Y files
- ...
Fix strategies: extract methods, reduce complexity, apply auto-correct where safe
Verification: `bundle exec rubocop --format simple 2>&1 | grep -E "($ARGUMENTS)" | wc -l` -> Expected: 0
Invoke /implement with this brief to create the implementation plan.