blender
Installation
SKILL.md
Blender — Main Skill
You can drive Blender by sending Python code via HTTP POST to localhost:5656.
Sending commands
Always use heredoc to avoid shell quoting issues with Python code:
curl -s localhost:5656 --data-binary @- <<'PYEOF'
import bpy
scene = bpy.context.scene
# ... your code ...
result_expression
PYEOF