← Back to Skills Marketplace
terrycarter1985

Quick UUID

by terrycarter1985 · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ Security Clean
11
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install quick-uuid
Description
Generate 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 a...
README (SKILL.md)

quick-uuid

A tiny helper for generating unique identifiers without extra dependencies.

Generate a UUID v4

# Linux (kernel-provided)
cat /proc/sys/kernel/random/uuid

# Portable (Python, always available with OpenClaw runtimes)
python3 -c "import uuid; print(uuid.uuid4())"

Generate a short random ID (8 chars, url-safe)

python3 -c "import secrets; print(secrets.token_urlsafe(6))"

Generate several at once

python3 -c "import uuid;[print(uuid.uuid4()) for _ in range(5)]"

Notes

  • UUID v4 is random; collision probability is negligible for practical use.
  • Prefer secrets over random for anything security-adjacent.
  • Short IDs are convenient for logs/correlation but are NOT collision-proof at scale.
Usage Guidance
This appears safe to install for generating local identifiers. Short random IDs are useful for convenience but are not guaranteed unique at large scale, as the skill itself discloses.
Capability Assessment
Purpose & Capability
The stated purpose is generating UUID v4 values and short random IDs, and the artifact only provides matching local command-line one-liners using /proc, Python uuid, and Python secrets.
Instruction Scope
Instructions are narrow and task-specific, with no hidden role changes, prompt overrides, unrelated automation, network calls, credential use, or broad file access.
Install Mechanism
The package contains only a single markdown SKILL.md file and no executable scripts or install-time hooks.
Credentials
Local randomness and Python standard-library commands are proportionate for ID generation and do not introduce external data flows.
Persistence & Privilege
The skill does not request persistence, background execution, privilege escalation, configuration changes, or access to sensitive stores.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install quick-uuid
  3. After installation, invoke the skill by name or use /quick-uuid
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial publish: UUID v4 + short ID one-liners
Metadata
Slug quick-uuid
Version 0.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Quick UUID?

Generate 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 a... It is an AI Agent Skill for Claude Code / OpenClaw, with 11 downloads so far.

How do I install Quick UUID?

Run "/install quick-uuid" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Quick UUID free?

Yes, Quick UUID is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Quick UUID support?

Quick UUID is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Quick UUID?

It is built and maintained by terrycarter1985 (@terrycarter1985); the current version is v0.1.0.

💬 Comments