Add Ellipse
Adds an ellipse to an existing SVG file.
Usage
node .claude/skills/add-ellipse/index.js <svg-file> <cx> <cy> <rx> <ry> <fill>
Parameters
svg-file- Path to the SVG file to modifycx- Center X coordinatecy- Center Y coordinaterx- Horizontal radiusry- Vertical radiusfill- Fill color as hex (default: #E53935)
Example
node .claude/skills/add-ellipse/index.js output/art.svg 250 200 100 50 '#1E88E5'