Install
openclaw skills install @terrycarter1985/uuid-genGenerate UUIDs (v4) or short random base36 IDs on demand. Use when you need unique identifiers for records, filenames, test data, primary keys, slugs, tokens, or any situation that calls for a fresh random ID. Supports both standard UUIDs and shorter human-friendly IDs.
openclaw skills install @terrycarter1985/uuid-genGenerate one or more unique identifiers using the bundled script.
python3 scripts/gen_id.py # one UUID v4, e.g. 3f0a8b...
python3 scripts/gen_id.py --count 5 # five UUID v4s
python3 scripts/gen_id.py --short # one 10-char base36 id, e.g. k7m2p9xq1w
python3 scripts/gen_id.py --short --length 16 --count 3
--short): shorter, URL-safe, case-insensitive. Good for slugs, invite codes, filenames, test fixtures. Default length 10 (~52 bits of entropy); increase --length for lower collision odds.uuid.uuid4() and secrets.choice, both cryptographically random.scripts/gen_id.py relative to this skill's directory.