Install
openclaw skills install @terrycarter1985/text-utilLightweight text transformation utilities. Uppercase, lowercase, reverse, and count characters/words/lines in any text input. Use when a prompt asks to convert case, reverse a string, or quickly count elements without writing a script.
openclaw skills install @terrycarter1985/text-utilQuick text transformations from the command line.
| Command | Description |
|---|---|
upper <text> | Convert to UPPERCASE |
lower <text> | Convert to lowercase |
reverse <text> | Reverse character order |
count <text> | Count chars, words, lines |
$ ./scripts/run.sh upper "hello world"
HELLO WORLD
$ ./scripts/run.sh count "hello world\nfoo bar"
chars: 19 words: 4 lines: 2
No dependencies. Run the shell script directly.