/install axiom-uuid-analyzer
axiom-uuid-analyzer
Version: 0.1.2 Axioma Tools
Inspects UUIDs and extracts their semantic content.
What this skill does
- Validates UUID format (8-4-4-4-12 hex)
- Extracts version (1-8)
- Extracts variant (RFC 4122, Microsoft, NCS, Future)
- For v1: extracts timestamp + MAC address
- For v7: extracts unix timestamp
When to use this skill
- ✅ Analyze a UUID you didn't generate
- ✅ Audit DB for UUID version consistency
- ✅ Extract timestamp from time-based UUIDs
- ✅ Validate UUIDs in user input
- ❌ Generate UUIDs (use uuid module directly)
Usage
python3 axiom_uuid_analyzer.py "550e8400-e29b-41d4-a716-446655440000"
python3 axiom_uuid_analyzer.py uuid-list.txt --json
from axiom_uuid_analyzer import analyze_uuid
info = analyze_uuid('550e8400-e29b-41d4-a716-446655440000')
# {'version': 4, 'variant': 'RFC 4122', 'timestamp': None, 'mac': None}
Validation
| Check | Status |
|---|---|
| Unit tests | 30+ 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-uuid-analyzer - After installation, invoke the skill by name or use
/axiom-uuid-analyzer - Provide required inputs per the skill's parameter spec and get structured output
What is axiom-uuid-analyzer?
UUID inspector — parse any UUID and extract version (1-8), variant (RFC 4122, Microsoft, NCS, Future), timestamp (v1, v7), MAC address (v1). Use when you nee... It is an AI Agent Skill for Claude Code / OpenClaw, with 51 downloads so far.
How do I install axiom-uuid-analyzer?
Run "/install axiom-uuid-analyzer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is axiom-uuid-analyzer free?
Yes, axiom-uuid-analyzer is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does axiom-uuid-analyzer support?
axiom-uuid-analyzer is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created axiom-uuid-analyzer?
It is built and maintained by Kofna3369 (@kofna3369); the current version is v0.1.2.