Text processing toolkit - format, clean, convert, analyze text. Includes markdown formatting, text cleaning, word count, case conversion, find/replace, text...
Documents
text-util
Try itLightweight 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.
What it does
Lightweight 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.
The skill document
Text Util
Quick text transformations from the command line.
Commands
| Command | Description |
|---|---|
upper | Convert to UPPERCASE |
lower | Convert to lowercase |
reverse | Reverse character order |
count | Count chars, words, lines |
Example
$ ./scripts/run.sh upper "hello world"
HELLO WORLD
$ ./scripts/run.sh count "hello world\nfoo bar"
chars: 19 words: 4 lines: 2
Install
No dependencies. Run the shell script directly.
Related skills
Count words, characters, lines, and estimate reading time for any text. Use when you need quick text analytics on a file or pasted content.
Compress and decompress text files using smart abbreviation and whitespace normalization. Use when user asks to compress, shrink, reduce, or optimize text fi...
Text Manipulation and Converter: Manipulate text: case conversion (11 formats), whitespace handling, line operations, sorting, deduplication, wrapping, chara...
Compute SHA-256 or MD5 hashes of text strings. Useful for quick integrity checks, deduplication, and content fingerprinting without leaving the terminal.
Count string length deterministically for text with hard limits. Use this skill when a post, reply, caption, commit message, or other text must stay within a...