api-reference

Main class for text processing operations.

Content Preview
# Text Processor API Reference

## Classes

### TextProcessor

Main class for text processing operations.

#### `__init__(self, encoding: str = 'utf-8')`

Initialize the text processor with specified encoding.

**Parameters:**
- `encoding` (str): Character encoding for file operations. Default: 'utf-8'

#### `analyze_text(self, text: str) -> Dict[str, Any]`

Analyze text and return comprehensive statistics.

**Parameters:**
- `text` (str): Text content to analyze

**Returns:**
- `dict`: Statisti
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/api-reference.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/skill-tester/assets/sample-skill/references/api-reference.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering/skill-tester/assets/sample-skill/references/api-reference.md

Related Skills