安全

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...

它能做什么

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 need to analyze, validate, or audit UUIDs. Pure stdlib, no LLM.

技能文档

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

CheckStatus
Unit tests30+ cases
Performance<100ms
SecurityPure stdlib, no injection
DeterminismByte-to-byte stable
LicenseApache-2.0

Last updated: 2026-06-14

相关技能

Luhn algorithm validator — credit cards (Visa, MC, Amex, Discover), SIRET/SIREN, IMEI, ISBN-10/13. Use when you need to validate any number that uses Luhn. P...

4 次安装

Phone number normalizer — convert any phone number to E.164 international format. Use when you need a canonical phone representation for storage or compariso...

5 次安装

Regex visualizer — parse any regex and visualize its structure (groups, quantifiers, anchors, character classes). Use when you need to understand or document...

4 次安装

IBAN validator — check IBAN format and mod-97 checksum for 100+ countries. Use when you need to validate international bank account numbers. Pure stdlib, no...

4 次安装

Markdown link auditor — find broken internal links, flag dead external links (HEAD requests), report orphan pages. Use when you maintain docs. Pure stdlib +...

4 次安装

Multi-algorithm hash generator (MD5/SHA-1/SHA-256/SHA-512/BLAKE2b) — deterministic, byte-to-byte, zero dependencies. Use when you need to hash a file or stri...

4 次安装