blender5-code
Generate Python bpy scripts, add-ons, and Geometry Nodes code fully compatible with Blender 5.0's breaking API changes.
- Migrate Blender 4.x add-ons to 5.0 API
- Generate Blender 5.0 Python scripts from natural language
- Create Geometry Nodes setups with volumes and SDF in Python
$30
One-time purchase
Included in download
- Migrate Blender 4.x add-ons to 5.0 API
- Generate Blender 5.0 Python scripts from natural language
- Ready for Codex CLI
- Includes example output and usage patterns
See it in action
# 5.0 Transformation Pattern
import bpy
from mathutils import Matrix
obj = bpy.context.active_object
# New 5.0 attribute access and transform methods
new_mat = Matrix.Translation((0, 5, 0)) @ obj.get_transform()
obj.set_transform(new_mat)
print(f"Moved {obj.name} via set_transform")blender5-code
Generate Python bpy scripts, add-ons, and Geometry Nodes code fully compatible with Blender 5.0's breaking API changes.
$30
One-time purchase
⚡ Also available via Agensi MCP — your AI agent can load this skill on demand via MCP. Learn more →
Included in download
- Migrate Blender 4.x add-ons to 5.0 API
- Generate Blender 5.0 Python scripts from natural language
- Ready for Codex CLI
- Includes example output and usage patterns
- Instant install
See it in action
# 5.0 Transformation Pattern
import bpy
from mathutils import Matrix
obj = bpy.context.active_object
# New 5.0 attribute access and transform methods
new_mat = Matrix.Translation((0, 5, 0)) @ obj.get_transform()
obj.set_transform(new_mat)
print(f"Moved {obj.name} via set_transform")About This Skill
Blender 5.0 Code
Generate production-ready Python bpy code for Blender 5.0, with full awareness of every breaking change from 4.x.
What it does
Generates scripts: procedural modeling, materials, Geometry Nodes, animation, compositing
Creates add-ons: operators, panels, menus, PropertyGroups, with correct register/unregister
Migrates 4.x → 5.0: detects deprecated calls and rewrites them automatically
Knows the new APIs: volumes/SDF nodes, ACES/HDR pipeline, new Action API (layers/strips/channelbag), Annotations (ex-Grease Pencil)
Domains
Procedural modeling · Geometry Nodes · Volumes & SDF · Cycles/EEVEE rendering · ACES & HDR color pipeline · Animation & keyframes · Grease Pencil / Annotations · Compositing · Add-on development · Script migration
Use Cases
- Migrate Blender 4.x add-ons to 5.0 API
- Generate Blender 5.0 Python scripts from natural language
- Create Geometry Nodes setups with volumes and SDF in Python
- Build add-ons with operators, panels, and custom properties
- Configure ACES/HDR render pipelines via script
- Detect deprecated bpy API calls with static analysis
- Procedural mesh and material generation
- Automate Cycles/EEVEE render settings
Known Limitations
- Node type names (e.g., GeometryNodeVolumeSphereSDF) are based on Blender 5.0.1 release notes and community documentation — some may differ slightly in future 5.x point releases. - The static analyzer (validate_bpy5.py) uses regex + AST heuristics, not full type inference. Dict-like access detection may produce false positives on raw ID properties (which remain valid). - Does not cover Blender's C/C++ source or build system — Python bpy API only. - Grease Pencil Object (2D animation) namespace changes are partially covered; the focus is on the Annotations rename. - ACES OCIO config paths assume Blender's bundled config. Custom studio OCIO configs may need manual adjustment.
How to Install
mkdir -p ~/.claude/skills && curl -sL https://www.agensi.io/api/install/blender5-code | tar xz -C ~/.claude/skills/Free skills install directly. Paid skills require purchase - use the download button above after buying.
Reviews
No reviews yet - be the first to share your experience.
Only users who have downloaded or purchased this skill can leave a review.
Early access skill
Be the first to review this skill.
Only users who have downloaded or purchased this skill can leave a review.
Security Scanned
Passed automated security review
Permissions
No special permissions declared or detected
Targets Blender 5.0+ Python API (bpy). Works with Claude Code, Codex CLI, Cursor, and any SKILL.md-compatible agent. The included validator requires Python 3.10+.
Creator
Augmented Developer for 4 years, specializing in cutting-edge tool integration to supercharge workflows. Always chasing peak efficiency, I'm here to create and share skills that make an everyday difference.
Frequently Asked Questions
Learn More About AI Agent Skills
Similar Skills
code-reviewer
Reviews your code for bugs, security vulnerabilities, logic errors, performance issues, and style violations. Organizes findings by severity and suggests fixes with code examples.
git-commit-writer
Writes conventional commit messages by analyzing your staged git changes. Detects commit type, scope, and breaking changes automatically.
readme-generator
Generates a complete, polished README.md by scanning your actual project structure, dependencies, and code.
env-doctor
Diagnoses why your project will not start. Checks runtime versions, dependencies, environment variables, databases, ports, and build artifacts systematically.