Automated code improvement and cleanup.
Scanned 6/1/2026
Install via CLI
openskills install tools-only/X-Skills# ZERG Refactor
Automated code improvement and cleanup.
## Usage
```bash
/zerg:refactor [--transforms dead-code,simplify,types,patterns,naming]
[--dry-run]
[--interactive]
```
## Transforms
### dead-code
Remove unused imports, variables, and functions.
### simplify
Simplify complex expressions:
- `if x == True:` → `if x:`
- `if x == None:` → `if x is None:`
- Redundant parentheses
- Unnecessary else after return
### types
Strengthen type annotations:
- Add missing type hints
- Replace `Any` with specific types
- Add return type annotations
### patterns
Apply common design patterns:
- Extract repeated code
- Apply guard clauses
- Use early returns
### naming
Improve variable and function names:
- Replace single-letter names
- Fix casing conventions
- Make names more descriptive
## Examples
```bash
# Run all transforms (dry-run)
/zerg:refactor --transforms dead-code,simplify --dry-run
# Interactive mode
/zerg:refactor --interactive
# Specific transforms
/zerg:refactor --transforms types,naming
```
## Output
```
Refactor Results
========================================
Files Analyzed: 15
Suggestions: 23
Applied: 0
Suggestions:
simplify:
auth.py:42
- if authenticated == True:
+ if authenticated:
```
## Task Tracking
On invocation, create a Claude Code Task to track this command:
Call TaskCreate:
- subject: "[Refactor] Apply {transforms}"
- description: "Applying refactoring transforms: {transforms}. Dry-run: {dry_run}."
- activeForm: "Refactoring code"
Immediately call TaskUpdate:
- taskId: (the Claude Task ID)
- status: "in_progress"
On completion, call TaskUpdate:
- taskId: (the Claude Task ID)
- status: "completed"
## Help
When `--help` is passed in `$ARGUMENTS`, display usage and exit:
```
/zerg:refactor — Automated code improvement and cleanup.
Flags:
--transforms LIST Comma-separated transforms: dead-code,simplify,types,patterns,naming
--dry-run Preview changes without applying
--interactive Approve changes one by one
--help Show this help message
```
## Exit Codes
- 0: No issues (or all applied)
- 1: Suggestions available
- 2: Error during analysis
No comments yet. Be the first to comment!