Loading...
Loading...
Build, test, and explain regular expressions against sample text or files using CLI tools (rg, python) and specific regex flavors. Use when asked to craft, debug, or validate regexes or search patterns.
npx skill4agent add jmerta/codex-skills regex-builderrg --filesrg -nrgrg -Prg -n "<regex>" path\\to\\filerg -n -P "<regex>" path\\to\\filepython -c "import re,sys;pat=re.compile(r'<regex>');data=sys.stdin.read();print([m.group(0) for m in pat.finditer(data)])" < path\\to\\file