Install
openclaw skills install text-compressorCompress and decompress text files using smart abbreviation and whitespace normalization. Use when user asks to compress, shrink, reduce, or optimize text file size while preserving readability. Also use for batch text processing, file size reduction, or text cleanup.
openclaw skills install text-compressorCompress text files using configurable levels of text abbreviation while keeping content readable.
python scripts/compress.py <input_file> [output_file] [--level 1-3]
python scripts/compress.py <input_file> [output_file] --decompress [--level 1-3]
compress.py report.txt — compress report.txt → report.txt.compressedcompress.py input.txt output.txt --level 2 — medium compression to specific outputcompress.py compressed.txt --decompress — attempt to restore (approximate)Shows bytes saved and percentage reduction.
--decompress to attempt restoration (approximate only).