Setup & Installation
openclaw skills install @tjade273/simple-redux
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
npx clawhub install simple-redux
What This Skill Does
Formats plain text by capitalizing sentences, normalizing spacing, and fixing punctuation. Delegates processing to a Python script rather than performing the conversion inline.
When to use it
- Cleaning up user-submitted form text before storing
- Standardizing pasted content before publishing
- Fixing spacing and capitalization in exported data
- Normalizing rough notes into readable prose
- Preprocessing text before inserting into documents
Example Workflow
Here's how your AI assistant might use this skill in practice.
INPUT
User asks: "Format this: 'hello world.this is a test.'"
AGENT
- 1Receives raw text from the user
- 2Passes text to scripts/formatter.py
- 3Script capitalizes the first letter of each sentence
- 4Script ensures single space after periods and strips trailing whitespace
- 5Returns the formatted string
OUTPUT
"Hello world. This is a test."