3daistudio

3daistudio is a skill for Claude Code, Codex from Lord1Egypt/awesome-skill-forge. It costs 47 tokens per session (1,250 once invoked), scanned A, a copy of 3daistudio, MIT.

A service for turning text prompts or images into downloadable 3D models in GLB format, using several supported AI models.

In plain words
What is it for?
It is for generating 3D assets from text or images, checking generation status, and downloading the finished model through the 3D AI Studio API.
Why use it?
It removes much of the manual modeling needed to create a basic 3D asset from an idea or reference image.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for generating 3D assets from text or images, checking generation status, and downloading the finished model through the 3D AI Studio API.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lord1egypt/awesome-skill-forge/3daistudio-integration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Lord1Egypt/awesome-skill-forge --skill 3daistudio-integration
Clone the repo
git clone --depth 1 https://github.com/Lord1Egypt/awesome-skill-forge

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 3daistudio

README.md
[![agentmods](https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/3daistudio-integration/github.svg)](https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/3daistudio-integration)
Your own site
<a href="https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/3daistudio-integration"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/3daistudio-integration/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 3daistudio

Your own site · 80×15
<a href="https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/3daistudio-integration"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/3daistudio-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,250 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.01250
Opus 5 $0.00023 $0.00625
Sonnet 5 $0.00009 $0.00250
Haiku 4.5 $0.00005 $0.00125

Measured 10d ago against content hash 4ab163af7240, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

3daistudio scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to 3daistudio — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

community/clawhub/3/3daistudio-integration/SKILL.md · 128 lines

How it starts

The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.

3D AI Studio Skill

Convert images (or text prompts) to 3D models using the 3D AI Studio API.

Credentials

Setup

# Set your API key
export THREE_D_AI_STUDIO_API_KEY="your-api-key-here"

# Run the skill
python 3daistudio.py balance

Available Models

Model Endpoint Input Credits Speed
Hunyuan Rapid /v1/3d-models/tencent/generate/rapid/ Text or image 35-55 2-3 min
Hunyuan Pro /v1/3d-models/tencent/generate/pro/ Text, image, multi-view 60-100 3-6 min
TRELLIS.2 /v1/3d-models/trellis2/generate/ Image only 15-55 25s-4min

Workflow (ALL models are async)

  1. Submit - POST to generation endpoint - get task_id
  2. Poll - GET /v1/generation-request/{task_id}/status/ every 10-15s
  3. Download - When status == "FINISHED", use results[].asset URL

The script auto-polls and downloads when you use --output.

How to Use

# Check credit balance
python 3daistudio.py balance

# Image to 3D (TRELLIS.2 - fastest, image-only)
python 3daistudio.py trellis --image photo.png --textures -o model.glb

# Image to 3D (Hunyuan Rapid - text or image)
python 3daistudio.py rapid --image photo.png --pbr -o model.glb
python 3daistudio.py rapid --prompt "a red sports car" -o model.glb

# Image to 3D (Hunyuan Pro - highest quality)
python 3daistudio.py pro --image photo.png --pbr --model 3.1 -o model.glb
python 3daistudio.py pro --prompt "a cute blue hedgehog" -o model.glb

# Check status
python 3daistudio.py status <task_id>

# Download result
python 3daistudio.py download <task_id> -o model.glb

Options

TRELLIS.2

  • --image - Path to local image (PNG/JPG/WebP)
  • --resolution - 512, 1024 (default), or 1536
  • --textures - Enable PBR textures
  • --texture-size - 1024, 2048 (default), or 4096

Read the full file on GitHub · 128 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 128 lines · 47 tokens per session scan A 4ab163af7240

Subscribe to this mod's changes

3daistudio is a skill published in the GitHub repository Lord1Egypt/awesome-skill-forge (2 stars, last pushed 3mo ago), licensed MIT. It adds 47 tokens to every session and 1,250 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to 3daistudio, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

3daistudio

Convert images and text prompts to 3D models (.glb) using the 3D AI Studio API. Supports TRELLIS.2, Hunyuan Rapid, and Hunyuan Pro models.

whale-professor/3daistudio_skill · 47 tokens

img2threejs

Turn an object or character reference image into a quality-gated, animation-ready procedural Three.js model built in code. Use for image-to-3D reconstruction, detail-accurate object rebuilds, stylized/likeness-maximized human characters, sculpt specs, and staged code generation.

img2threejs/img2threejs · 63 tokens

game-asset-production

Create, inspect, normalize, validate, and package game-development assets with local tools plus optional Tripo and Leonardo jobs. Use for 3D, texture, reference-image, sound-effect, Blender, GLB, PBR, or USDZ asset-production work; not for admitting packages into a game project.

theisegoria/game-development-studio · 67 tokens

mathgraphs

Math graphing, 3D scene building with lights and particles, and presentations.

architectds/mathgraphs-mcp · 19 tokens

3d-ai-studio-api

Interact with the 3D AI Studio API. Use when generating 3D models from text or images, creating miniature figurines, generating/editing images, using tools (convert, render, repair, optimize), or polling job status. All operations are async — submit a request, get a taskid, poll until FINISHED. Authenticates via…

t4ai-workshops/3d-ai-studio-api-skill · 93 tokens

pascal-3d

Connect to Pascal and use its MCP tools to create, inspect, edit, validate, save, or hand off editable 3D building scenes. Use this skill whenever a user asks an agent to work in Pascal, make a room or building model, inspect a Pascal project, perform spatial edits, connect Pascal MCP, or return a verified Pascal…

pascalorg/editor · 92 tokens