Install
openclaw skills install quick-uuidGenerate UUIDs (v4) and short random IDs from the command line. Use when you need a unique identifier for files, records, test fixtures, or correlation IDs and want a zero-dependency one-liner.
openclaw skills install quick-uuidA tiny helper for generating unique identifiers without extra dependencies.
# Linux (kernel-provided)
cat /proc/sys/kernel/random/uuid
# Portable (Python, always available with OpenClaw runtimes)
python3 -c "import uuid; print(uuid.uuid4())"
python3 -c "import secrets; print(secrets.token_urlsafe(6))"
python3 -c "import uuid;[print(uuid.uuid4()) for _ in range(5)]"
secrets over random for anything security-adjacent.