---
name: Simple Formatter
slug: simple-formatter
category: Writing
description: Simple Formatter formats text according to specified style guidelines, including sentence capitalization, spacing, and punctuation. Use it when raw text needs cleanup before publishing or further processing.
github: "https://github.com/cisco-ai-defense/skill-scanner/tree/main/evals/test_skills/safe/simple-formatter"
language: Python
stars: 2445
forks: 308
install: "npx degit https://github.com/cisco-ai-defense/skill-scanner/tree/main/evals/test_skills/safe/simple-formatter ~/.claude/skills/simple-formatter"
installs_to: ~/.claude/skills/simple-formatter
source_path: evals/test_skills/safe/simple-formatter/SKILL.md
collection_size: 21
category_size: 1012
collection_url: "https://dirskills.com/collections/cisco-ai-defense/skill-scanner"
added: 2026-08-18T06:57:57.073Z
last_synced: 2026-08-18T06:57:57.073Z
canonical_url: "https://dirskills.com/skills/simple-formatter"
---

# Simple Formatter

Simple Formatter formats text according to specified style guidelines, including sentence capitalization, spacing, and punctuation. Use it when raw text needs cleanup before publishing or further processing.

**Install:**

```bash
npx degit https://github.com/cisco-ai-defense/skill-scanner/tree/main/evals/test_skills/safe/simple-formatter ~/.claude/skills/simple-formatter
```

## README

# 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

## Example

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