Loading...
Loading...
Provides intuitive find & replace CLI with JavaScript regex and string-literal mode. Use this skill when performing text replacements, batch transformations, or need JavaScript-style regex syntax
npx skill4agent add iota9star/my-skills replacing-text-F$1, $2${var}--preview---$$$cat file | sd "old" "new"fd → sdripgrep | sdjq | sdcat file | sd | bat# Find and replace across project
fd -e js -x sd "oldPattern" "newPattern" --preview
# Chain transformations
cat config.json | jq '.version' | sd '"v' '' | sd '"' '' | xargs git tag
# Interactive replacement with preview
rg "deprecated" -l | fzf --multi | xargs sd "deprecated" "legacy" --preview | bat