special-chars-skill
Installation
SKILL.md
Special Characters Skill
This skill tests handling of special characters in $ARGUMENTS placeholder.
Test cases covered:
- HTML/XML special chars: < > & " '
- Shell metacharacters: $ ` ; | & ( ) [ ] { }
- Path traversal attempts: ../ ../../etc/passwd
- SQL injection patterns: ' OR '1'='1
- Command injection: ; rm -rf / ; $(whoami)
- Unicode and emoji: 你好 🎉 émoji
Usage: $ARGUMENTS
Expected Behavior
The ContentProcessor should safely substitute arguments without:
- Executing shell commands
- Interpreting special characters
- Allowing path traversal
- Enabling injection attacks
All input should be treated as literal text.
Related skills
More from maxvaega/skillkit
markdown-formatter
Format and clean up markdown documents following best practices
13csv-parser
Parse and analyze CSV files with data validation
8valid-unicode
A valid skill with Unicode and emoji content
8json-parser
Parse and validate JSON data with schema support
7code-reviewer
Review code for best practices, potential bugs, security vulnerabilities, and performance issues
6valid-basic
A minimal valid skill with all required fields
5