Skill flagged — suspicious patterns detected

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

Cartoon Pet Generator

v1.0.0

Generate cute cartoon-style pet images (dogs, cats, etc.) using code. Use when user asks for cartoon pet drawings, cute animal illustrations, or simple pet a...

0· 349·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 juliantsaiii/cartoon-pet-generator.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Cartoon Pet Generator" (juliantsaiii/cartoon-pet-generator) from ClawHub.
Skill page: https://clawhub.ai/juliantsaiii/cartoon-pet-generator
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

Canonical install target

openclaw skills install juliantsaiii/cartoon-pet-generator

ClawHub CLI

Package manager switcher

npx clawhub@latest install cartoon-pet-generator
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description match the deliverables. The SKILL.md and the included Node.js script implement SVG generation for multiple pet types and convert SVG → PNG using rsvg-convert or ImageMagick, which is coherent with the stated purpose.
Instruction Scope
Runtime instructions are narrowly focused: run the Node script to create an SVG and convert it to PNG, then return/send the image. The SKILL.md does not instruct reading unrelated files, sending data to external endpoints, or accessing environment secrets.
Install Mechanism
No install spec is provided (instruction-only skill). The only runtime dependencies are Node.js and an SVG-to-PNG converter (rsvg-convert or convert), which is reasonable and proportionate for the functionality.
Credentials
The skill requires no environment variables, credentials, or config paths. The script uses child_process.execSync to call external converters, which is expected for invoking rsvg-convert/convert; no secrets are requested.
Persistence & Privilege
always is false and the skill does not request persistent or elevated platform privileges. It does not attempt to modify other skills or global agent configuration.
Assessment
This skill appears coherent and limited to generating SVG pets and converting them to PNG. Before installing or running it: (1) ensure Node.js and an SVG converter (rsvg-convert or ImageMagick convert) are installed; (2) review the script's use of child_process.execSync—avoid passing untrusted input into command-line arguments to prevent command injection (the script parses CLI args and then invokes external converters); (3) note the default output path (/tmp) and avoid running with elevated privileges; and (4) if you plan to serve generated images to users, consider sanitizing or validating inputs (colors/paths) to avoid unexpected content in SVGs. If you want higher assurance, paste the remainder of the script (the truncated tail) so it can be re-reviewed for any additional shell/network operations.

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

latestvk97c9ae4w6q6ndver92c2cgakd82gk9n
349downloads
0stars
1versions
Updated 19h ago
v1.0.0
MIT-0

Cartoon Pet Generator

Generate adorable cartoon-style pet images programmatically without any AI image generation API.

What This Skill Does

Creates SVG-based cartoon pets (dogs, cats, rabbits, etc.) and converts them to PNG format. Works entirely with code - no external APIs or image generation services needed.

Quick Start

Generate a Cartoon Dog

node /path/to/scripts/generate_pet.js dog /tmp/dog.png

Generate a Cartoon Cat

node /path/to/scripts/generate_pet.js cat /tmp/cat.png

Custom Colors

node /path/to/scripts/generate_pet.js dog /tmp/dog.png --body-color "#FFB347" --ear-color "#FF8C00"

Supported Pets

  • dog - Cute cartoon dog
  • cat - Adorable cartoon cat
  • rabbit - Fluffy cartoon rabbit
  • bear - Cuddly cartoon bear

Customization Options

OptionDescriptionExample
--body-colorMain body color#D2691E
--ear-colorEar color#8B4513
--bg-colorBackground color#87CEEB
--sizeImage size (width)400

How It Works

  1. Generate SVG - Node.js creates an SVG with the pet design
  2. Convert to PNG - Uses rsvg-convert (or convert) to convert SVG → PNG
  3. Output - Returns the path to the PNG file

Requirements

  • Node.js (for SVG generation)
  • rsvg-convert or ImageMagick convert (for SVG to PNG conversion)

Example Usage in Conversation

User: "给我画一只小狗"

Response: Run the script and send the image:

node scripts/generate_pet.js dog /tmp/cute_dog.png

Then send with: <qqimg>/tmp/cute_dog.png</qqimg>

Comments

Loading comments...