LaunchKit · 2026
Back to Skills

simple-redux

Formats text according to specified style guidelines.

0
0 downloads
by @tjade273

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
  1. 1Receives raw text from the user
  2. 2Passes text to scripts/formatter.py
  3. 3Script capitalizes the first letter of each sentence
  4. 4Script ensures single space after periods and strips trailing whitespace
  5. 5Returns the formatted string
OUTPUT

"Hello world. This is a test."