svgo
Installation
SKILL.md
SVGO
SVG Optimizer. Removes editor metadata, collapses groups, shortens paths, and minifies without visual changes.
Setup
# Install SVGO as a CLI tool and Node.js library.
npm install -D svgo
CLI Usage
# Optimize a single SVG file and overwrite it.
npx svgo input.svg -o output.svg
# Optimize all SVGs in a directory recursively.
npx svgo -r -f ./icons --output ./icons-optimized