regex-tester
Installation
SKILL.md
Regex Tester Tool
Description
Test and debug regular expressions with match highlighting, capture group extraction, and a library of common patterns.
Trigger
/regexcommand- User needs to test regex
- User wants pattern matching help
Usage
# Test pattern
python scripts/regex_tester.py "\\d+" "abc123def456"
# Show capture groups
python scripts/regex_tester.py "(\\w+)@(\\w+)" "user@domain" --groups