Icon

v3.4.1

Generate and convert icons. Use when creating SVGs, building sprite sheets, converting ICO/PNG/SVG, or generating favicon sets.

0· 395·2 current·2 all-time
byBytesAgain2@ckchzh

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for ckchzh/icon.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Icon" (ckchzh/icon) from ClawHub.
Skill page: https://clawhub.ai/ckchzh/icon
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 icon

ClawHub CLI

Package manager switcher

npx clawhub@latest install icon
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (icon generation, conversion, sprites, favicons) matches the included SKILL.md and the bash script which implements generate, sprite, convert, search, resize, and favicon operations. No unrelated services, credentials, or binaries are requested.
Instruction Scope
SKILL.md directs the agent to run the included bash script with explicit arguments. The script only reads user-specified files/directories and writes outputs to user-specified output paths; it does not attempt to read unrelated system configuration, environment secrets, or contact external endpoints.
Install Mechanism
There is no install spec; the skill is instruction + a local shell script. No remote downloads or archive extraction are performed by the skill itself.
Credentials
The skill declares no required environment variables or credentials, and the script does not access external secrets. It does call external image tools if available (ImageMagick 'convert', librsvg 'rsvg-convert'), which is appropriate for image conversion features.
Persistence & Privilege
always is false and the skill does not request permanent or elevated platform privileges or modify other skills' configurations. It operates locally and on files/paths provided by the user.
Assessment
This skill appears to do what it says: a self-contained bash script for creating and converting icons. Before running it, review the script (you already have it), run it on directories you control, and avoid running it as root. The convert path uses external tools (ImageMagick 'convert' or 'rsvg-convert') — ensure those are from trusted packages and be cautious processing untrusted images because past ImageMagick vulnerabilities have allowed code execution. Note the script expects GNU-style utilities (example: grep -oP for PCRE); behavior may vary on some systems. If you need higher assurance, run the script in an isolated environment (container) and verify any third-party binaries it invokes are up-to-date.

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

latestvk97bv5ytswmeyt4zn8caafcmwd8337xq
395downloads
0stars
14versions
Updated 1mo ago
v3.4.1
MIT-0

Icon

Generate, convert, and manage icons for web and app projects.

Commands

generate

Generate an SVG icon from a name and optional style parameters.

bash scripts/script.sh generate --name "arrow-right" --size 24 --color "#333" --output icons/

sprite

Combine multiple SVG icons into a single SVG sprite sheet.

bash scripts/script.sh sprite --input icons/ --output sprite.svg --prefix "icon-"

convert

Convert icons between ICO, PNG, and SVG formats.

bash scripts/script.sh convert --input icon.svg --format png --sizes "16,32,64"

search

Search available icon names by keyword.

bash scripts/script.sh search --query "arrow" --style outline

resize

Batch resize icons to specified dimensions.

bash scripts/script.sh resize --input icons/ --sizes "16,24,32,48" --output resized/

favicon

Generate a full favicon set (ICO, PNG, Apple Touch, manifest) from a source image.

bash scripts/script.sh favicon --input logo.svg --output favicons/

Output

  • generate: SVG file written to output directory
  • sprite: Single SVG sprite sheet with <symbol> elements
  • convert: Converted files in target format and sizes
  • search: List of matching icon names printed to stdout
  • resize: Resized icon files in output directory
  • favicon: favicon.ico, apple-touch-icon.png, android-chrome PNGs, site.webmanifest

Requirements

  • bash 4+

Feedback

https://bytesagain.com/feedback/


Powered by BytesAgain | bytesagain.com

Comments

Loading comments...