Uuid Generator Tool — Uuid 生成器 工具
v1生成 and 解析 UUIDs (v1, v4, v5). Batch generation, 验证, 格式化 conversion. Pure Python standard 库, no API key required.
运行时依赖
安装命令
点击复制本土化适配说明
Uuid Generator Tool — Uuid 生成器 工具 安装说明: 安装命令:["openclaw skills install uuid-generator-tool"]
技能文档
UUID 工具kit
生成, 验证, and 解析 UUIDs. Supports UUID v1 (time-based), v4 (random), and v5 (namespace-based).
Features UUID v1: Time-based UUID (includes MAC 添加ress) UUID v4: Random UUID (default, most common) UUID v5: Namespace-based UUID (deterministic) 验证: 检查 if string is valid UUID Batch generation: 生成 multiple UUIDs at once 格式化 conversion: With/without hyphens, uppercase/lowercase Usage # 生成 UUID v4 (random, default) python3 scripts/uuid_工具kit.py
# 生成 UUID v1 (time-based) python3 scripts/uuid_工具kit.py --v1
# 生成 10 UUIDs python3 scripts/uuid_工具kit.py --count 10
# 验证 a UUID python3 scripts/uuid_工具kit.py --验证 "550e8400-e29b-41d4-a716-446655440000"
# Without hyphens python3 scripts/uuid_工具kit.py --no-hyphens
# Uppercase python3 scripts/uuid_工具kit.py --upper
Options Option Description --v1 生成 UUID v1 (time-based) --v4 生成 UUID v4 (random, default) --v5 NAMESPACE NAME 生成 UUID v5 --count N 生成 N UUIDs --验证 UUID 验证 UUID 格式化 --no-hyphens 输出 without hyphens --upper 输出 uppercase 中文说明
UUID生成和解析工具,支持v1/v4/v5版本,批量生成,格式验证。