plan-reduce-max-lines
Installation
SKILL.md
Reduce Max Lines
Target threshold: $ARGUMENTS lines per file
If no argument provided, prompt the user for a target.
Step 1: Gather Requirements
- Read current config from eslint thresholds (eslint.thresholds.json or similar)
- Run lint with the new threshold to find violations:
bun run lint 2>&1 | grep "max-lines" - Note for each violation:
- File path
- Current line count
If no violations at $ARGUMENTS, report success and exit.