Code Rename Skill Safely rename symbols across a codebase. This skill covers the full workflow from finding occurrences to applying changes. Workflow Overview 1. Find all occurrences (definition + usages) 2. Review matches (verify no false positives) 3. Apply changes (Edit tool or bulk rename) 4. Verify (run tests, lint) --- Clojure Rename Use clj-kondo to find all occurrences, then Edit tool to apply changes. Step 1: Find All Occurrences Step 2: Review Matches Check the output for: - Is the definition found? - Are all usages in expected files? - Any matches in strings/comments to skip? Step…