Regex Assistant
by @evolinkai
AI-powered regular expression generation, explanation, testing, debugging, and cross-language conversion. Generate regex from natural language, explain compl...
Generate a regex for URLs
bash scripts/regex.sh generate "match HTTP and HTTPS URLs" --lang javascript
Explain a complex pattern
bash scripts/regex.sh explain "\b\d{1,3}(\.\d{1,3}){3}\b"
Test a regex against a log file
bash scripts/regex.sh test "\d{4}-\d{2}-\d{2}" server.log
Debug a failing regex
bash scripts/regex.sh debug "(\d+\.)+\d+" "192.168.1.1" "should match full IP but only matches partial"
Convert Python regex to Go
bash scripts/regex.sh convert "(?P
Quick reference
bash scripts/regex.sh cheatsheet
| Variable | Default | Required | Description |
|---|---|---|---|
| EVOLINK_API_KEY | β | Yes (AI commands) | Your EvoLink API key. Get one free |
| EVOLINK_MODEL | claude-opus-4-6 | No | Model for AI analysis |
Required binaries: python3, curl
clawhub install ai-regex-assistant