What problem does it solve? Cursor editor permission files and other non-code artifacts often get committed to feature branches, causing unnecessary merge conflicts during rebases. This Skill strips those noise files from the branch diff and stages the cleanup as a separate commit so the rebase proceeds cleanly. ## Core Features & Use Cases - Noise Detection: Scans the branch diff against the merge base with main to find .cursor files, .DS_Store, and .cursorrules artifacts. - Confirmed Cleanup: Shows the exact list of files to be removed and waits for user confirmation before making any changes. - Cleanup Commit: Restores noise files to their state on main, stages the changes, and commits them as a dedicated chore commit. - Use Case: You are about to rebase a feature branch onto main, but .cursor permission files keep causing conflicts. Run this Skill to strip them first, then rebase without interference. ## Quick Start Clean the cursor permission files from my current branch so I can rebase onto main without conflicts.