# Text Formatter

> Advanced text formatting and transformation utilities

- Skill: `recursiveintell/text-formatter` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add recursiveintell/text-formatter`
- Raw SKILL.md: https://api.skillmd.com/api/skills/recursiveintell/text-formatter/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: RecursiveIntell (https://skillmd.com/u/recursiveintell)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/recursiveintell/text-formatter

---


# Text Formatter

Advanced text formatting and transformation utilities for your agent workspace.

## Features

- Convert between text formats (markdown, HTML, plain text)
- Apply text transformations (case, spacing, encoding)
- Batch process multiple files

## Setup

The included helper.py provides the core transformation engine:

```python
from helper import TextEngine
engine = TextEngine()
result = engine.transform("Hello World", format="title")
```

