What problem does it solve?
Manually applying the same change across many files is time-consuming and error-prone. This Skill automates systematic modifications, ensuring consistency and saving effort across your codebase.
Core Features & Use Cases
- Batch File Processing: Apply a specific operation (e.g., linting, type fixing, style unification) to all files matching a glob pattern.
- Progress Tracking: Initialize, add patterns, get next files, and mark completion, maintaining state across sessions.
- Use Case: Fix all guideline violations in
packages/**/*.tsx files, or unify code style across all src/**/*.ts files in a large codebase, ensuring every file meets your standards without manual oversight.
Quick Start
Initialize a new scan session for a specific purpose
python3 .claude/skills/full_scan/full_scan.py init "Fix guideline violations"
Add files to scan using a glob pattern
python3 .claude/skills/full_scan/full_scan.py add "packages/**/*.tsx"
Get the next 5 files to process
python3 .claude/skills/full_scan/full_scan.py next