← 返回 Skills 市场
terrycarter1985

Quick UUID

作者 terrycarter1985 · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ 安全检测通过
11
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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...
使用说明 (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.
安全使用建议
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install quick-uuid
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /quick-uuid 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial publish: UUID v4 + short ID one-liners
元数据
Slug quick-uuid
版本 0.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 11 次。

如何安装 Quick UUID?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install quick-uuid」即可一键安装,无需额外配置。

Quick UUID 是免费的吗?

是的,Quick UUID 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Quick UUID 支持哪些平台?

Quick UUID 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Quick UUID?

由 terrycarter1985(@terrycarter1985)开发并维护,当前版本 v0.1.0。

💬 留言讨论