Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

AceToolz UUID Generator

v1.0.1

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

0· 95·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for acetoolz/acetoolz-uuid.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "AceToolz UUID Generator" (acetoolz/acetoolz-uuid) from ClawHub.
Skill page: https://clawhub.ai/acetoolz/acetoolz-uuid
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install acetoolz-uuid

ClawHub CLI

Package manager switcher

npx clawhub@latest install acetoolz-uuid
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the runtime instructions: the skill's sole capability is to request UUIDs from acetoolz.com. While generating UUIDs locally would also be possible, using an external API is a coherent design choice and not disproportionate.
Instruction Scope
SKILL.md instructs only to make POST requests to https://www.acetoolz.com/api/openclaw/uuid-generator and to validate parameters (version, count). It does not request access to files, environment variables, or unrelated services. Note: calling the external API will reveal the agent's network-level metadata (IP, user-agent) to AceToolz.
Install Mechanism
No install spec or code files are present (instruction-only). Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill requests no environment variables, credentials, or config paths. There are no disproportionate secret or config requirements.
Persistence & Privilege
The skill is not always-on and does not request elevated persistence or modify other skills or system settings. Autonomous invocation is allowed (platform default) but not accompanied by other risky privileges.
Assessment
This skill appears to do what it claims: it calls AceToolz’s UUID API and returns results. Consider privacy and availability tradeoffs before installing: each API call goes over the network to an external service (your IP and request metadata may be logged by AceToolz), and for v1 UUIDs the generator may include timestamp/MAC-derived semantics. If you need offline or privacy-preserving generation, generate UUIDs locally instead (most platforms/languages can produce v4/v1/v7 UUIDs without an external call). If you proceed, verify the HTTPS endpoint and review AceToolz’s privacy policy if leakage of request metadata is a concern.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🆔 Clawdis
acetoolzvk9759q2dn7sjj2mrzn68qba429846dmwdeveloper-toolsvk9759q2dn7sjj2mrzn68qba429846dmwguidvk9759q2dn7sjj2mrzn68qba429846dmwlatestvk9759q2dn7sjj2mrzn68qba429846dmwrandomvk9759q2dn7sjj2mrzn68qba429846dmwunique-idvk9759q2dn7sjj2mrzn68qba429846dmwuuidvk9759q2dn7sjj2mrzn68qba429846dmw
95downloads
0stars
2versions
Updated 3w ago
v1.0.1
MIT-0

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.

Comments

Loading comments...