simple-formatter · git:20260919.09fb8dd · 2026-09-19 · sha256 4fac14a9e0796c04

simple-formatter git:20260919.09fb8ddA

Immutable. This exact content is served forever at /api/v1/blob/4fac14a9e0796c04.

---
name: simple-formatter
description: Formats text according to specified style guidelines. A clean example skill with no security issues.
license: MIT
---

# Simple Text Formatter

This skill formats text according to style guidelines.

## Features

- Capitalize sentences
- Fix spacing
- Apply punctuation rules

## Usage

When the user provides text to format, apply the following rules:
1. Capitalize first letter of sentences
2. Ensure single space after periods
3. Remove trailing whitespace

In most cases, you should use the python tool in `scripts/formatter.py` rather
than attempting the conversion yourself.

## Example

Input: "hello world.this is a test."
Output: "Hello world. This is a test."