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
  • 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.

Back to skills

Godmode 3d Creation

ASecurity

Use when generating 3D meshes, executing text-to-CAD, or reconstructing scenes via TRELLIS, TripoSR, or Text-to-CAD local engines.

6 stars
0 votes
0 copies
0 views
Added 9/19/2026
ai-agentsgoapibackendperformance

Works with

apimcp

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add hybridlabor-api/aos --skill godmode-3d-creation --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Godmode 3d Creation?

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

Security grade badge for Godmode 3d Creation
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/hybridlabor-api-godmode-3d-creation/badge)](https://www.skillsdirectory.com/skills/hybridlabor-api-godmode-3d-creation)

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

Download Zip
Files
SKILL.md
---
name: godmode-3d-creation
description: "Use when generating 3D meshes, executing text-to-CAD, or reconstructing scenes via TRELLIS, TripoSR, or Text-to-CAD local engines."
category: media-eventtech
---

# 🧊 Godmode 3D Creation: MCP-First 3D Pipeline

You are the Mastermind for all 3D generation, modeling, and CAD workflows within the BDB Creator OS. This skill operates on an **MCP-First paradigm**, converting natural language prompts, concept images, or technical specifications into explicit JSON tool call payloads for 3D asset generation engines.

---

## 1. Engine & Local Backend Architecture

The core local 3D generation backends are hosted within the Creator Extension:
`bdb-dev-creator-extension/engines/3d/`

### Primary Engines & Local Modules:
* **TRELLIS** (`engines/3d/trellis`): High-fidelity Image-to-3D generation producing 3D Gaussian Splats, textured UV meshes, and radiance fields.
* **TripoSR** (`engines/3d/triposr`): Ultra-fast single-image 3D reconstruction for rapid mesh prototyping (under 0.5s execution time).
* **Text-to-CAD** (`engines/3d/text-to-cad`): Parametric engineering modeling producing precise STEP, IGES, or B-Rep CAD files.

---

## 2. Concrete MCP Tool Call Specifications

When executing 3D workflows, construct valid JSON payloads for the targeted MCP servers.

### A. TRELLIS MCP (`trellis_mcp`)
Use `generate_3d_model` for high-quality Image-to-3D mesh generation, Gaussian Splats, and PBR textures.

```json
{
  "tool": "generate_3d_model",
  "server": "trellis_mcp",
  "arguments": {
    "image_path": "./assets/concepts/hero_prop_concept.png",
    "output_format": "glb",
    "ss_sampling_steps": 12,
    "slat_sampling_steps": 12,
    "mesh_simplify": 0.95,
    "texture_size": 2048,
    "generate_color": true,
    "generate_normal": true,
    "output_dir": "./projects/stage_assets/models/"
  }
}
```

### B. TripoSR MCP (`triposr_mcp`)
Use `rapid_mesh_generation` for instant single-image 3D mesh reconstruction intended for draft viewports or real-time performance proxies.

```json
{
  "tool": "rapid_mesh_generation",
  "server": "triposr_mcp",
  "arguments": {
    "image_path": "./assets/concepts/quick_chair_sketch.png",
    "output_format": "obj",
    "mc_resolution": 256,
    "foreground_ratio": 0.85,
    "bake_texture": true,
    "output_path": "./projects/stage_assets/proxies/chair_proxy.obj"
  }
}
```

### C. Text-to-CAD MCP (`text_to_cad_mcp`)
Use `generate_parametric_cad` to build precise CAD geometries, engineering parts, or architectural structures from textual dimensions and constraints.

```json
{
  "tool": "generate_parametric_cad",
  "server": "text_to_cad_mcp",
  "arguments": {
    "prompt": "Aluminum stage truss mounting bracket with 50mm clamp holes and 5mm chamfered edges",
    "file_format": "step",
    "unit": "mm",
    "tolerance": 0.01,
    "output_dir": "./projects/stage_assets/cad/"
  }
}
```

---

## 3. Workflow Routing Logic

Select the appropriate MCP tool based on input type and target use case:

1. **High-Fidelity Visual Props & Assets:**
   - Route concept image to `trellis_mcp` (`generate_3d_model`).
   - Output: `.glb` / `.gltf` with full PBR textures for Unreal Engine or TouchDesigner.
2. **Rapid Real-Time Proxies / Draft Meshes:**
   - Route quick sketch or photo to `triposr_mcp` (`rapid_mesh_generation`).
   - Output: Lightweight `.obj` for immediate stage layout placement.
3. **Parametric Engineering & Mechanical Parts:**
   - Route geometric specs to `text_to_cad_mcp` (`generate_parametric_cad`).
   - Output: Precise `.step` file suitable for Rhino NURBS editing or CNC fabrication.


## Overview
Godmode 3D Creation translates user prompts and concept images into explicit MCP tool payloads for local 3D engines like TRELLIS, TripoSR, and Text-to-CAD.

## When to Use
- **Trigger:** The user asks to generate a 3D mesh, create a 3D Gaussian Splat, or construct a parametric CAD file.
- **Exclude:** Do not use for creating 2D video timelines or live show topologies.

## Core Process
1. Identify the input type (sketch/photo for TripoSR, high-fidelity concept for TRELLIS, or dimensional specs for Text-to-CAD).
2. Construct the exact JSON payload for the target MCP server (`trellis_mcp`, `triposr_mcp`, or `text_to_cad_mcp`).
3. Call the MCP tool and save the resulting `.glb`, `.obj`, or `.step` file to the project directory.

## Common Rationalizations

| Rationalization | Reality |
|---|---|
| "I'll use TRELLIS for this quick draft." | TRELLIS takes time and resources; use TripoSR for sub-second rapid mesh generation instead. |
| "I'll just guess the Text-to-CAD dimensions." | Parametric CAD requires strict units and tolerances; guessing leads to broken assemblies. |
| "It previewed fine as an OBJ, we don't need textures." | High-fidelity assets require PBR textures and UV mapping; OBJ alone is insufficient for hero props. |

## Red Flags

- Calling `trellis_mcp` for a rough layout proxy instead of `triposr_mcp`.
- Passing vague natural language directly to Text-to-CAD without explicit millimeter dimensions.
- Failing to check the output file existence after MCP tool execution.

## Verification

- [ ] The correct MCP server was selected based on fidelity requirements.
- [ ] Tool payload includes correct output format (e.g., `.glb`, `.step`).
- [ ] The generated 3D asset file exists in the target directory.

Attribution

hybridlabor-apihybridlabor-api
View sourceMore from hybridlabor-api →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

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

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →