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.
npx skills add Lord1Egypt/awesome-skill-forge --skill 3daistudio-integrationgit clone --depth 1 https://github.com/Lord1Egypt/awesome-skill-forgeWrote 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.
[](https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/3daistudio-integration)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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
- API Key: Set via
THREE_D_AI_STUDIO_API_KEYenvironment variable - Base URL:
https://api.3daistudio.com - Get API Key: https://www.3daistudio.com/Platform/API
- Documentation: https://www.3daistudio.com/Platform/API/Documentation
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)
- Submit - POST to generation endpoint - get
task_id - Poll - GET
/v1/generation-request/{task_id}/status/every 10-15s - Download - When
status == "FINISHED", useresults[].assetURL
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
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.
- 10d ago First seen · 128 lines · 47 tokens per session scan A 4ab163af7240
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.
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.
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.
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.
mathgraphs
Math graphing, 3D scene building with lights and particles, and presentations.
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…
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…