Install
openclaw skills install text-tools-proText processing toolkit - format, clean, convert, analyze text. Includes markdown formatting, text cleaning, word count, case conversion, find/replace, text comparison, and more. Use when users need to process, format, clean, or analyze text content.
openclaw skills install text-tools-proA comprehensive text processing toolkit for everyday text manipulation tasks.
text-tools clean --input file.txt --output clean.txt
text-tools case --input file.txt --to upper # upper, lower, title, sentence
text-tools count --input file.txt
text-tools replace --input file.txt --find "old" --replace "new" --output result.txt
text-tools diff --file1 a.txt --file2 b.txt --output diff.html
text-tools extract --input file.txt --type urls # urls, emails, phones
All functionality available in scripts/:
text_clean.py - Text cleaning and normalizationtext_convert.py - Format and case conversiontext_analyze.py - Text analysis and statisticstext_replace.py - Find and replace operationstext_diff.py - Text comparisontext_extract.py - Data extraction from text