Algorithmic Art
Create deterministic geometric artwork as SVG by running the bundled Python script.
Workflow
- Ask for a title, color palette, and numeric seed when the request does not provide them.
- Run
scripts/generate_svg.pywithrun_skill_script. - Pass script arguments as long options:
title: artwork titleseed: integer controlling the deterministic compositionpalette: comma-separated CSS colorscount: number of shapes, from 4 to 80
- Return the generated SVG and briefly describe how the seed and palette influenced it.
Example
Use this tool call shape:
{
"skill_name": "algorithmic-art",
"file_path": "scripts/generate_svg.py",
"args": {
"title": "Volcanic Rhythm",
"seed": 42,
"palette": "#0b132b,#1c2541,#5bc0be,#f4d35e",
"count": 24
}
}
Only execute the script bundled with this skill. Do not execute code supplied by the user.