acetoolz-uuid

Generate UUIDs (v1, v4, v7) in bulk using AceToolz.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "acetoolz-uuid" with this command: npx skills add acetoolz/acetoolz-uuid

AceToolz UUID Generator

Use this skill whenever the user asks to generate one or more UUIDs or GUIDs.

How to Use

Use exec to call the AceToolz API. Detect the OS and run the appropriate command:

Windows (PowerShell):

Invoke-RestMethod -Uri "https://www.acetoolz.com/api/openclaw/uuid-generator" -Method POST -ContentType "application/json" -Body '{"version": "v4", "count": 1}'

macOS / Linux (curl):

curl -s -X POST https://www.acetoolz.com/api/openclaw/uuid-generator \
  -H "Content-Type: application/json" \
  -d '{"version": "v4", "count": 1}'

Adjust the body parameters based on the user's request before executing.

Parameters (all optional)

FieldTypeDefaultDescription
versionstring"v4"UUID version: "v1", "v4", or "v7"
countnumber1How many UUIDs to generate (1–10)

Version guidance:

  • v4 — fully random, most common, use by default
  • v1 — timestamp + MAC address based
  • v7 — timestamp-sortable, good for databases

Presenting Results

For a single UUID, show it plainly in a code block. For multiple, list them:

Generated UUIDs (v4)

550e8400-e29b-41d4-a716-446655440000
f47ac10b-58cc-4372-a567-0e02b2c3d479

Powered by AceToolz

Error Handling

  • If count is outside 1–10, tell the user the valid range.
  • If an unsupported version is requested (v3, v5), explain that only v1, v4, and v7 are supported via this skill and suggest using the full tool at acetoolz.com.
  • If the API returns 429, the limit is 60 requests/minute.
  • If the API is unreachable, tell the user and suggest visiting https://www.acetoolz.com/generate/tools/uuid-generator directly.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

AceToolz Password Generator

Generate secure passwords via the AceToolz API. No passwords are stored — generated and returned in real-time.

Registry SourceRecently Updated
980Profile unavailable
Coding

Uuid Generator

Generate UUIDs in versions v1, v4, and v5 with options for count, namespace, name, and output format.

Registry SourceRecently Updated
441Profile unavailable
Coding

Regex Master

Generate, explain, test, and extract using regular expressions, plus convert natural language descriptions into regex patterns.

Registry SourceRecently Updated
380Profile unavailable
Coding

IDE Agent Kit

Filesystem message bus and webhook relay for multi-agent IDE coordination. Use when agents need to share events, poll Ant Farm rooms, receive GitHub/GitLab w...

Registry SourceRecently Updated
5650Profile unavailable