Use this skill whenever the user asks to generate one or more UUIDs or GUIDs.
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.
| Field | Type | Default | Description |
|---|---|---|---|
| ------- | ------ | --------- | ------------- |
version | string | "v4" | UUID version: "v1", "v4", or "v7" |
count | number | 1 | How many UUIDs to generate (1–10) |
Version guidance:
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
共 1 个版本