Unity Probuilder logo

Unity Probuilder

CommunityPopular
Besty0728
unity-probuilder

Model editable meshes with ProBuilder for blockout

Overview

PublisherBesty0728
RepositoryUnity-Skills
Skill nameunity-probuilder
Stars
1.8K
Forks
164
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Besty0728 on GitHub. Read the source before you install it.

Installation

Install the Unity Probuilder AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.

Use it in TypingMind

Enable Unity Probuilder in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Unity Probuilder on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Unity Probuilder is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Before calling any skill in this module: if you are about to call a skill with parameters guessed from its name or description, STOP — read this file (or fetch its schema via GET /skills/recommend?includeSchema=true) first. If you already have the parameter definitions from recommend/schema, you may proceed straight to dryRun.

Triggers

  • Blocking out levels
  • Building or editing ProBuilder geometry
  • Prototyping shapes in-editor
  • 搭建关卡灰盒、创建或编辑 ProBuilder 几何体、在编辑器内快速搭形

Unity ProBuilder Skills

Use this module for editable ProBuilder meshes, not regular primitive GameObjects. It is best for blockout, level geometry, and procedural mesh refinement.

Requires: com.unity.probuilder package. Batch-first: For scene blockout or level generation, prefer probuilder_create_batch when creating 2+ shapes.

Guardrails

Operating Mode (v1.9 three-tier):

  • Approval (default): query skills (e.g. probuilder_get_info, probuilder_get_vertices) run directly. Create/modify skills are FullAuto — call once, get MODE_RESTRICTED, run the grant protocol; a successful /permission/grant executes the skill server-side and returns the result in the same response.
  • Auto / Bypass: SemiAuto and FullAuto run directly.
  • Auto-forbidden in this module: probuilder_combine_meshes (SkillOperation.Modify | Delete, the Delete bit triggers NeverInSemi). It is callable only under Bypass mode or after the user adds it to the Allowlist; the grant flow returns MODE_FORBIDDEN. Note probuilder_delete_faces is Operation = SkillOperation.Modify only and remains grantable under Approval/Auto.
  • When com.unity.probuilder is missing, every skill returns a package-missing diagnostic instead of executing.

DO NOT (common hallucinations):

  • probuilder_create_mesh does not exist -> use probuilder_create_shape
  • probuilder_edit_face does not exist -> use the specific face skills such as probuilder_extrude_faces, probuilder_delete_faces, probuilder_merge_faces
  • probuilder_set_material and probuilder_set_face_material are different -> whole object vs selected faces
  • Regular meshes do not become ProBuilder meshes automatically
  • Mesh rebuild calls (ToMesh() + Refresh()) are already handled by the skills. Do not invent a manual rebuild step

Routing:

  • For ordinary primitive objects without editable topology -> use gameobject_create
  • For material asset creation or shader work -> use material
  • For large blockout generation -> combine this module with material and light, but keep geometry creation here

Object Targeting

Most edit/query skills accept one of:

  • name
  • instanceId
  • path

Prefer instanceId when multiple scene objects share the same name.

Skills

Create and Batch

SkillUseKey parameters
probuilder_create_shapeCreate a parametric ProBuilder shapeshape, name?, x/y/z?, sizeX/Y/Z?, rotX/Y/Z?
probuilder_create_batchCreate multiple shapes in one callitems, defaultParent?

Supported shape values: Cube, Sphere, Cylinder, Cone, Torus, Prism, Arch, Pipe, Stairs, Door, Plane.

Face and Edge Editing

SkillUseKey parameters
probuilder_extrude_facesExtrude selected facestarget, faceIndexes?, distance?, method?
probuilder_delete_facesDelete faces by indextarget, faceIndexes
probuilder_merge_facesMerge faces into onetarget, faceIndexes?
probuilder_flip_normalsReverse face directiontarget, faceIndexes?
probuilder_detach_facesSplit faces from shared verticestarget, faceIndexes?, deleteSourceFaces?
probuilder_bevel_edgesChamfer edgestarget, edgeIndexes?, amount?
probuilder_extrude_edgesExtrude edges outwardtarget, edgeIndexes, distance?, extrudeAsGroup?
probuilder_bridge_edgesBridge two edges with new facetarget, edgeA, edgeB, allowNonManifold?

Mesh, Vertex, UV, Material

SkillUseKey parameters
probuilder_subdivideAdd detail by subdivisiontarget, faceIndexes?
probuilder_conform_normalsMake normals point consistently outwardtarget, faceIndexes?
probuilder_move_verticesOffset vertices by deltatarget, vertexIndexes, deltaX/Y/Z?
probuilder_set_verticesSet absolute vertex positionstarget, vertices
probuilder_get_verticesQuery vertex positionstarget, vertexIndexes?, verbose?
probuilder_weld_verticesMerge close verticestarget, vertexIndexes, radius?
probuilder_project_uvBox-project UVstarget, faceIndexes?, channel?
probuilder_set_face_materialAssign material to facestarget, faceIndexes?, materialPath?, submeshIndex?
probuilder_set_materialAssign whole-object material or quick colortarget, materialPath?, r/g/b/a?
probuilder_combine_meshesMerge multiple meshesnames

Query and Pivot

SkillUseKey parameters
probuilder_get_infoGet face/vertex/material statstarget
probuilder_center_pivotCenter or reposition pivottarget, worldX/Y/Z?

Blockout Workflow

  1. Create major volumes with probuilder_create_batch.
  2. Verify traversal and gameplay scale before adding detail.
  3. Refine surfaces with face/edge operations.
  4. Use vertex edits for ramps, slopes, and irregular silhouettes.
  5. Apply quick colors or real materials after layout stabilizes.

Minimal Example

python
import unity_skills

unity_skills.call_skill("probuilder_create_batch", items=[
    {"shape": "Cube", "name": "Ground", "sizeX": 20, "sizeY": 0.5, "sizeZ": 12, "y": -0.25},
    {"shape": "Cube", "name": "Platform_A", "sizeX": 3, "sizeY": 0.3, "sizeZ": 3, "x": 4, "y": 1.5},
    {"shape": "Cube", "name": "Ramp", "sizeX": 3, "sizeY": 1, "sizeZ": 5, "x": 8, "y": 0.5}
])

unity_skills.call_skill("probuilder_move_vertices",
    name="Ramp",
    vertexIndexes="4,5",
    deltaY=-0.8
)

unity_skills.call_skill("probuilder_set_material",
    name="Platform_A",
    r=0.2, g=0.6, b=1.0
)

Important Notes

  1. ProBuilder objects keep editable topology through ProBuilderMesh.
  2. Use probuilder_get_info before face edits and probuilder_get_vertices before vertex edits.
  3. MeshCollider on physics-driven props must be convex.
  4. Quick color assignment is fine for prototype passes; use material assets for production.
  5. Package missing errors are expected if ProBuilder is not installed.

Exact Signatures

Exact names, parameters, defaults, and returns are defined by GET /skills/schema or unity_skills.get_skill_schema(), not by this file. Load MODELING_REFERENCE.md for scene design heuristics, furniture decomposition, detailed examples, and extended modeling tips.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Unity Probuilder AI skill do?

Model editable meshes with ProBuilder for blockout

Why use Unity Probuilder on TypingMind?

Because you install it once and use it with any model. Unity Probuilder is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Unity Probuilder in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Besty0728/Unity-Skills/tree/main/SkillsForUnity/unity-skills~/skills/probuilder. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Unity Probuilder?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Unity Probuilder?

As many as you like. As long as a model supports skills, you can use Unity Probuilder with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Unity Probuilder AI skill free?

Yes. It is published on GitHub by Besty0728 under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇