Install
openclaw skills install paint-skillGenerate and save simple drawings as PNG images using Python with interactive and demo modes via Pillow and Tkinter.
openclaw skills install paint-skillGenerate simple drawings and save as PNG images using Python PIL/Pillow.
# Install conda/mamba if not available
brew install miniforge
# Create Python environment with tkinter support
mamba create -n py39 python=3.9 pip -y
mamba activate py39
pip install pillow
# Or use existing conda environment
conda install -n py39 pillow
# Activate conda environment
mamba activate py39
# Run the skill
python /path/to/paint_skill.py [options]
# Options:
# --demo Generate a demo rainbow image
# --park Generate park scene (boy, cat, dog)
# --custom Draw custom scene (specify in code)
paint_skill.py - Main Python scriptSKILL.md - This documentation