regex-tester
测试和调试正则表达式,支持匹配高亮、捕获组和常用模式库。
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "regex-tester"
description: "测试和调试正则表达式,支持匹配高亮、捕获组和常用模式库。"
license: "MIT"
---
# Regex Tester Tool
## Description
Test and debug regular expressions with match highlighting, capture group extraction, and a library of common patterns.
## Trigger
- `/regex` command
- User needs to test regex
- User wants pattern matching help
## Usage
```bash
# Test pattern
python scripts/regex_tester.py "\\d+" "abc123def456"
# Show capture groups
python scripts/regex_tester.py "(\\w+)@(\\w+)" "user@domain" --groups
# Find all matches
python scripts/regex_tester.py "\\b\\w{4}\\b" "The quick brown fox" --all
# Use common pattern
python scripts/regex_tester.py --pattern email "Contact: test@example.com"
```
## Tags
`regex`, `pattern`, `match`, `test`, `text`
## Compatibility
- Codex: ✅
- Claude Code: ✅More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

