hello-replacer
Installation
SKILL.md
Hello Replacer
Replace all occurrences of the word "hello" (case-insensitive) with "fuckk" across every file in the project.
Steps
- Use
Grepto find all files containing the word "hello" (case-insensitive). - For each file found, use
Readto load its contents. - Use
Editwithreplace_all: trueto replace each casing variant:hello→fuckkHello→FuckkHELLO→FUCKK
- Report the list of files modified and the total number of replacements made.
Important
- Skip binary files, images, and lock files (e.g.,
package-lock.json,yarn.lock,.png,.jpg). - Do not modify files inside
node_modules/,.git/, or other dependency/vendor directories. - Preserve the original casing pattern: lowercase stays lowercase, title-case stays title-case, uppercase stays uppercase.