/install axiom-regex-visualizer
axiom-regex-visualizer
Version: 0.1.2 Axioma Tools
Parses regular expressions and shows their structure visually.
What this skill does
- Visual tree of regex components
- Plain-English explanation of each part
- Highlights groups, quantifiers, anchors
- Supports Python re syntax (basic + extensions)
When to use this skill
- ✅ Understand a regex you didn't write
- ✅ Document a complex pattern
- ✅ Debug regex matching issues
- ❌ Test if regex matches a string (use re.match)
- ❌ Support Perl/PCRE-only features
Usage
python3 axiom_regex_visualizer.py "^(?:[a-z0-9!#$%&*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&*+/=?^_`{|}~-]+)*)@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$"
from axiom_regex_visualizer import parse, explain
tree = parse(r'\b\d{3}-\d{4}\b')
explain(tree) # 'Word boundary, exactly 3 digits, dash, exactly 4 digits, word boundary'
Validation
| Check | Status |
|---|---|
| Unit tests | 20+ cases |
| Performance | \x3C100ms |
| Security | Pure stdlib, no injection |
| Determinism | Byte-to-byte stable |
| License | Apache-2.0 |
Last updated: 2026-06-14
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install axiom-regex-visualizer - After installation, invoke the skill by name or use
/axiom-regex-visualizer - Provide required inputs per the skill's parameter spec and get structured output
What is Axiom Regex Visualizer?
Regex visualizer — parse any regex and visualize its structure (groups, quantifiers, anchors, character classes). Use when you need to understand or document... It is an AI Agent Skill for Claude Code / OpenClaw, with 38 downloads so far.
How do I install Axiom Regex Visualizer?
Run "/install axiom-regex-visualizer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Axiom Regex Visualizer free?
Yes, Axiom Regex Visualizer is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Axiom Regex Visualizer support?
Axiom Regex Visualizer is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Axiom Regex Visualizer?
It is built and maintained by Kofna3369 (@kofna3369); the current version is v0.1.2.