Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Blender Tooling

ASecurity

Build Blender Python add-ons, asset validators, exporters and pipeline automation. Use when writing Python scripts, add-ons, or batch tools for Blender.

4 stars
0 votes
0 copies
0 views
Added 9/22/2026
developmentpythongobashapici/cdperformance

Works with

cliapi

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add poorvith-mp/skills-gamedev --skill blender-tooling --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Blender Tooling?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Blender Tooling
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/poorvith-mp-blender-tooling/badge)](https://www.skillsdirectory.com/skills/poorvith-mp-blender-tooling)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: blender-tooling
last_reviewed: 2026-09-06
group: 3D assets
description: >-
  Build Blender Python add-ons, asset validators, exporters and pipeline automation. Use when
  writing Python scripts, add-ons, or batch tools for Blender.
---

# blender-tooling

## Core Philosophy
Manual 3D asset preparation—clicking through 14 menus to apply transforms, rename 40 bones, fix inverted normals, and export FBX files one by one—is an enormous drain on game studio productivity. High-performance art pipelines rely on custom Python automation within Blender (`bpy`). Professional Blender tooling builds robust, headless CLI batch exporters, automated asset validation linters, custom UI panels, and asset post-processors that eliminate human error.

---

## 4-Step Blender Python Tooling Architecture

### Step 1: The Blender Python API Anatomy (`bpy`)
1. **Core Submodules**:
   - `bpy.context`: Active selection, active mode, active scene.
   - `bpy.data`: Datablocks (meshes, armatures, materials, textures, actions).
   - `bpy.ops`: Operator execution (e.g. `bpy.ops.object.transform_apply()`).
   - `bpy.types`: Base classes for creating custom Operators, Panels, and Property Groups.
2. **The Safe Operator Rule**:
   - Avoid calling `bpy.ops` inside heavy loops (it is slow and requires active 3D context). Mutate `bpy.data` and mesh attributes directly via Python data APIs where possible.

### Step 2: Automated Asset Validation Linters
1. **Pre-Export Linter Checks**:
   - Write automated scripts that assert:
     - Unapplied Scale: `obj.scale != Vector((1.0, 1.0, 1.0))`.
     - Ngon Count: `any(len(poly.vertices) > 4 for poly in mesh.polygons)`.
     - Missing Materials / Textures: Materials with missing image filepaths.
     - Origin Alignment: Origin not at `(0, 0, 0)` for static props.
2. **The Hard Blocker Gate**:
   - If a validation check fails, abort export and display an error modal listing exact offender object names.

### Step 3: Custom Add-On Development (`bl_info` Standard)
1. **Add-On Architecture**:
   - Structure add-ons with formal registration:
     ```python
     bl_info = {
         "name": "Studio Pipeline Exporter",
         "author": "Technical Art Team",
         "version": (1, 2, 0),
         "blender": (4, 1, 0),
         "category": "Pipeline",
     }
     ```
2. **Custom UI Panels in the 3D Viewport**:
   - Create a dedicated sidebar tab (`N-Panel`) exposing 1-click batch actions: "Sanitize Asset", "Bake Normal Map", "Export Game-Ready FBX".

### Step 4: Headless CLI Batch Processing
1. **Headless Execution**:
   - Run Blender without GUI in CI/CD or build servers to process hundreds of assets overnight:
     ```bash
     blender -b assets/character.blend -P scripts/batch_export.py -- --output-dir ./dist/fbx
     ```
2. **CLI Argument Parsing**:
   - Use `sys.argv[sys.argv.index("--") + 1:]` to parse custom command-line arguments passed after Blender's native flags.

---

## Deliverable Format: Blender Python Add-on Template (`studio_exporter.py`)

```python
# -*- coding: utf-8 -*-
bl_info = {
    "name": "Game Asset Validator & Exporter",
    "author": "Tech Art",
    "version": (1, 0, 0),
    "blender": (4, 0, 0),
    "location": "View3D > Sidebar > Game Pipeline",
    "category": "Pipeline",
}

import bpy
from mathutils import Vector

class OBJECT_OT_validate_game_asset(bpy.types.Operator):
    '''Validate active object for game-engine readiness'''
    bl_idname = "object.validate_game_asset"
    bl_label = "Validate Active Asset"

    def execute(self, context):
        obj = context.active_object
        if not obj or obj.type != 'MESH':
            self.report({'ERROR'}, "No mesh object selected!")
            return {'CANCELLED'}

        # 1. Check Unapplied Scale
        if obj.scale != Vector((1.0, 1.0, 1.0)):
            self.report({'ERROR'}, f"Unapplied scale: {obj.scale}. Press Ctrl+A to apply.")
            return {'CANCELLED'}

        # 2. Check for Ngons (> 4 vertices)
        mesh = obj.data
        ngon_count = sum(1 for poly in mesh.polygons if len(poly.vertices) > 4)
        if ngon_count > 0:
            self.report({'ERROR'}, f"Asset contains {ngon_count} ngons! Triangulate or retopologize.")
            return {'CANCELLED'}

        self.report({'INFO'}, "Asset passed all game-ready checks!")
        return {'FINISHED'}

class VIEW3D_PT_game_pipeline_panel(bpy.types.Panel):
    '''Custom sidebar panel in 3D Viewport'''
    bl_label = "Game Pipeline Tools"
    bl_idname = "VIEW3D_PT_game_pipeline_panel"
    bl_space_type = 'VIEW_3D'
    bl_region_type = 'UI'
    bl_category = "Game Pipeline"

    def draw(self, context):
        layout = self.layout
        layout.operator("object.validate_game_asset", icon='CHECKMARK')

def register():
    bpy.utils.register_class(OBJECT_OT_validate_game_asset)
    bpy.utils.register_class(VIEW3D_PT_game_pipeline_panel)

def unregister():
    bpy.utils.unregister_class(OBJECT_OT_validate_game_asset)
    bpy.utils.unregister_class(VIEW3D_PT_game_pipeline_panel)

if __name__ == "__main__":
    register()
```

---

## Worked Example: Automated 500-Prop Batch FBX Exporter

- **Challenge**: Artists spent 2 days manually opening 500 individual `.blend` files to re-export FBX files after an engine coordinate axis change.
- **Solution**: Wrote a 60-line headless Python script that opened Blender in background mode, sanitized scales, aligned origins, and exported FBX assets in 12 minutes.
- **Outcome**: Saved 16 hours of artist labor; eliminated 100% of human export coordinate mistakes.

---

## Verification Checklist

- [ ] Add-on defines compliant `bl_info` dictionary.
- [ ] Operators use `register()` and `unregister()` lifecycle hooks cleanly.
- [ ] Validation functions check for unapplied transforms, ngons, and missing textures.
- [ ] Scripts can execute headlessly in background mode (`blender -b -P script.py`).
- [ ] Custom script arguments parsed safely after the `--` delimiter.

---

## Anti-Patterns

- **Hardcoding Absolute Filepaths**: Hardcoding `C:/Users/artist/Desktop` inside Blender Python tools.
- **Ignoring Context**: Invoking `bpy.ops` commands that require active 3D Viewport selections inside background headless runs.
- **Destructive Batch Operations**: Overwriting original `.blend` source files without automated backup checkpoints.

Attribution

poorvith-mppoorvith-mp
View sourceMore from poorvith-mp →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →