Install
openclaw skills install tr-toolTranslate or delete characters from input streams. Use for character substitution, deletion, and squeezing repeated characters.
openclaw skills install tr-toolTranslate, squeeze, or delete characters from standard input. Replaces specified characters with alternatives or removes them entirely.
tr-tool [options] <set1> [set2]
'a-z' 'A-Z': Convert lowercase to uppercase'\n' ' ': Replace newlines with spaces-d 'aeiou': Delete all vowels-s ' ': Squeeze repeated spacesecho "hello" | tr-tool 'a-z' 'A-Z'
echo "foo bar" | tr-tool -d ' '
echo "hello world" | tr-tool -s ' '