Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Sample Skill
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use as a reference implementation for basic text processing: word counting, character analysis, transformations, batch processing with dual JSON and human-readable output formats.
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
---
name: Sample Skill
description: Use as a reference implementation for basic text processing: word counting, character analysis, transformations, batch processing with dual JSON and human-readable output formats.
category: Engineering
version: 1.0.0
tools: []
---
# Sample Text Processor
Reference implementation for text processing with dual output formats (JSON and human-readable).
## Features
**Core Functionality**
- Word count analysis (total, unique, frequency)
- Character statistics (character count, line count, special characters)
- Text transformations (uppercase, lowercase, title case)
- File processing (single files or batch directories)
- Dual output formats (JSON and human-readable)
**Technical Features**
- Command-line interface with argument parsing
- Error handling for file and processing issues
- Progress reporting for batch operations
- Configurable output formatting and verbosity
- Cross-platform compatibility (standard library only)
## Usage
Text analysis:
- Analyze document with statistics output
- Save results to JSON or text
Text transformation:
- Transform text to uppercase, lowercase, or title case
- Save to output file
Batch processing:
- Process directories of text files
- Generate results in JSON or human-readable format
## Output Examples
Text analysis produces:
- File name and path
- Total word count, unique word count
- Character count, line count
- Most frequent word with occurrence count
JSON output structure:
```json
{
"file": "filename",
"statistics": {
"total_words": 150,
"unique_words": 85,
"total_characters": 750,
"lines": 12,
"most_frequent": {"word": "the", "count": 8}
}
}
```
## Architecture
Modular design with components:
- **TextProcessor Class**: Core processing and statistics calculation
- **OutputFormatter Class**: Dual format generation (JSON and text)
- **FileManager Class**: File I/O and batch processing
- **CLI Interface**: Argument parsing and user interaction
## Configuration Options
- `--format`: Output format (json, text)
- `--verbose`: Enable verbose output and progress
- `--output`: Specify output file or directory
- `--encoding`: Text file encoding (default: utf-8)
## Error Handling
Comprehensive error handling for:
- File not found or permission errors
- Invalid encoding or corrupted text
- Memory limitations for large files
- Output write permissions
- Invalid arguments
## Performance Considerations
- Efficient memory usage through streaming
- Optimized word counting with dictionary lookups
- Batch processing with progress reporting
- Configurable encoding detection
## Best Practices
1. Follow PEP 8 coding standards
2. Include comprehensive docstrings
3. Add test cases with sample data
4. Update documentation for new features
5. Ensure backward compatibility
## Tier Level
This is a BASIC tier skill demonstrating essential structure and quality standards. Advanced features (sentiment analysis, complex file formats, database integration, parallel processing) are intentionally omitted to keep focus on core functionality.
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/alirezarezvani/claude-skills/blob/main/engineering/skills/skill-tester/assets/sample-skill/SKILL.md
Open Source LinkRelated Skills
a11y-audit
Use when auditing WCAG 2.2 Level A/AA accessibility, fixing violations in React, Next.js, Vue, Angular...
Engineeringadversarial-reviewer
Use when reviewing recent code changes or a PR before merge and you want a genuinely critical review, not...
Engineeringagent-designer
Use when architecting multi-agent systems, selecting orchestration patterns, or evaluating agent performance.
Engineeringagent-harness
Use when building bounded agentic loops with verified task execution and state machines.