Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
alirezarezvani avatar

Skill Tester

  • 585 installs
  • 23.5k repo stars
  • Updated July 17, 2026
  • alirezarezvani/claude-skills

skill-tester is a Claude Code skill that smoke-tests another skill's text-processing behavior using bundled sample text and CSV fixtures with expected word-count stats for developers who need repeatable skill validation

About

skill-tester is a Claude Code skill from alirezarezvani/claude-skills that validates text-processing skills against bundled fixtures. The skill runs sample plain-text files and CSV inputs through a target skill, then compares output against expected word-count statistics for word counting, character analysis, line counting, and text transformations. Developers reach for skill-tester when authoring or refactoring agent skills that parse, count, or transform text and need a deterministic regression check without writing a full test harness. The bundled fixtures include multi-line prose, punctuation, numbers, special characters, and mixed-case tokens to exercise common edge cases.

  • Sample plain-text file with mixed punctuation, cases, and lorem content for processor checks
  • Companion CSV rows with headers for structured-data parsing tests
  • Embedded expected stats snapshot (e.g., total_words 116, unique_words 87) for regression comparison
  • Documents five test dimensions: word count, character analysis, lines, transforms, statistics

Skill Tester by the numbers

  • 585 all-time installs (skills.sh)
  • Ranked #92 of 782 Skill Development skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/alirezarezvani/claude-skills --skill skill-tester

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs585
repo stars23.5k
Security audit3 / 3 scanners passed
Last updatedJuly 17, 2026
Repositoryalirezarezvani/claude-skills

How do you smoke-test a Claude skill's text output?

Smoke-test another skill’s text-processing behavior using bundled sample text and CSV fixtures plus expected word-count stats.

Who is it for?

Developers authoring Claude Code text-processing skills who need quick fixture-based regression checks before publishing.

Skip if: Teams validating REST APIs, database queries, or UI components should use framework test runners instead of skill-tester.

When should I use this skill?

A developer asks to verify, regression-test, or smoke-test a skill's text-processing or word-count behavior.

What you get

Pass or fail validation against expected word-count statistics on bundled text and CSV fixtures.

  • Pass/fail smoke-test result
  • Word-count comparison against expected stats

By the numbers

  • Bundled fixtures test five text-processing capabilities: word counting, character analysis, line counting, text transfor

Files

assets/sample-skill/SKILL.mdMarkdownGitHub ↗

Sample Text Processor

---

Name: sample-text-processor Tier: BASIC Category: Text Processing Dependencies: None (Python Standard Library Only) Author: Claude Skills Engineering Team Version: 1.0.0 Last Updated: 2026-02-16

---

Description

The Sample Text Processor is a simple skill designed to demonstrate the basic structure and functionality expected in the claude-skills ecosystem. This skill provides fundamental text processing capabilities including word counting, character analysis, and basic text transformations.

This skill serves as a reference implementation for BASIC tier requirements and can be used as a template for creating new skills. It demonstrates proper file structure, documentation standards, and implementation patterns that align with ecosystem best practices.

The skill processes text files and provides statistics and transformations in both human-readable and JSON formats, showcasing the dual output requirement for skills in the claude-skills repository.

Features

Core Functionality

  • Word Count Analysis: Count total words, unique words, and word frequency
  • Character Statistics: Analyze character count, line count, and special characters
  • Text Transformations: Convert text to uppercase, lowercase, or title case
  • File Processing: Process single text files or batch process directories
  • Dual Output Formats: Generate results in both JSON and human-readable formats

Technical Features

  • Command-line interface with comprehensive argument parsing
  • Error handling for common file and processing issues
  • Progress reporting for batch operations
  • Configurable output formatting and verbosity levels
  • Cross-platform compatibility with standard library only dependencies

Usage

Basic Text Analysis

python text_processor.py analyze document.txt
python text_processor.py analyze document.txt --output results.json

Text Transformation

python text_processor.py transform document.txt --mode uppercase
python text_processor.py transform document.txt --mode title --output transformed.txt

Batch Processing

python text_processor.py batch text_files/ --output results/
python text_processor.py batch text_files/ --format json --output batch_results.json

Examples

Example 1: Basic Word Count

$ python text_processor.py analyze sample.txt
=== TEXT ANALYSIS RESULTS ===
File: sample.txt
Total words: 150
Unique words: 85
Total characters: 750
Lines: 12
Most frequent word: "the" (8 occurrences)

Example 2: JSON Output

$ python text_processor.py analyze sample.txt --format json
{
  "file": "sample.txt",
  "statistics": {
    "total_words": 150,
    "unique_words": 85,
    "total_characters": 750,
    "lines": 12,
    "most_frequent": {
      "word": "the",
      "count": 8
    }
  }
}

Example 3: Text Transformation

$ python text_processor.py transform sample.txt --mode title
Original: "hello world from the text processor"
Transformed: "Hello World From The Text Processor"

Installation

This skill requires only Python 3.7 or later with the standard library. No external dependencies are required.

1. Clone or download the skill directory 2. Navigate to the scripts directory 3. Run the text processor directly with Python

cd scripts/
python text_processor.py --help

Configuration

The text processor supports various configuration options through command-line arguments:

  • --format: Output format (json, text)
  • --verbose: Enable verbose output and progress reporting
  • --output: Specify output file or directory
  • --encoding: Specify text file encoding (default: utf-8)

Architecture

The skill follows a simple modular architecture:

  • TextProcessor Class: Core processing logic and statistics calculation
  • OutputFormatter Class: Handles dual output format generation
  • FileManager Class: Manages file I/O operations and batch processing
  • CLI Interface: Command-line argument parsing and user interaction

Error Handling

The skill includes comprehensive error handling for:

  • File not found or permission errors
  • Invalid encoding or corrupted text files
  • Memory limitations for very large files
  • Output directory creation and write permissions
  • Invalid command-line arguments and parameters

Performance Considerations

  • Efficient memory usage for large text files through streaming
  • Optimized word counting using dictionary lookups
  • Batch processing with progress reporting for large datasets
  • Configurable encoding detection for international text

Contributing

This skill serves as a reference implementation and contributions are welcome to demonstrate best practices:

1. Follow PEP 8 coding standards 2. Include comprehensive docstrings 3. Add test cases with sample data 4. Update documentation for any new features 5. Ensure backward compatibility

Limitations

As a BASIC tier skill, some advanced features are intentionally omitted:

  • Complex text analysis (sentiment, language detection)
  • Advanced file format support (PDF, Word documents)
  • Database integration or external API calls
  • Parallel processing for very large datasets

This skill demonstrates the essential structure and quality standards required for BASIC tier skills in the claude-skills ecosystem while remaining simple and focused on core functionality.

Related skills

How it compares

Pick skill-tester over generic unit-test skills when validating Claude skill text output with zero custom harness setup.

FAQ

What does skill-tester validate?

skill-tester validates another Claude Code skill's text-processing behavior by running bundled sample text and CSV fixtures and comparing results to expected word-count statistics for counting, character analysis, lines, and transformations.

What fixtures does skill-tester include?

skill-tester ships bundled sample plain-text files and CSV inputs containing multi-line prose, punctuation, numbers, special characters, and mixed-case tokens such as CamelCase and snake_case for edge-case coverage.

Is Skill Tester safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.