/install ai-3d-generation
Setup
On first use, ensure the NEURAL4D_API_TOKEN environment variable is set.
All API requests must include the header: Authorization: Bearer \x3CYOUR_TOKEN>.
When to Use
Use this skill when generating 3D models from text prompts or images using DreamTech's Neural4D engine. This is particularly suited for creating assets where precise format conversions (like .stl, .obj, .fbx) and physical dimensions are required for manufacturing workflows.
Core Rules & Cost Guardrails
1. Point Consumption Awareness
Always track API point costs before executing bulk runs:
- Text to 3D: 20 points per operation.
- Image to 3D: 20 points per operation.
- Chibi-style Generation: 30 points per operation.
- Format Conversion: 10 points per operation.
- You can query the remaining balance at
/api/queryPointsInfo.
2. Asynchronous Polling Contract
Model generation is asynchronous. You must poll for completion:
- Query
/api/retrieveModelusing theuuid. - Check
codeStatus:0: Generation complete.1: Generating (Wait and poll again).-3: Generation failed.
Workflow Pipelines
Pipeline A: Text to 3D
- Request:
POST https://alb.neural4d.com:3000/api/generateModelWithText.- Payload:
{"prompt": "...", "modelCount": 4, "disablePbr": 0}.
- Payload:
- Retrieve: Extract
uuidsfrom the response. - Poll: Call
/api/retrieveModelwith theuuiduntilcodeStatusis0. - Download: Extract
modelUrland download the.glbasset.
Pipeline B: Image to 3D (Strict 3-Step Process)
- Matting: Submit the image (JPG/PNG, \x3C10MB, 256x256 to 6048x8064) via
multipart/form-datato/api/mattingImage. Extract therequestId. - Get Matting Result: Send the
requestIdto/api/getMattedResult. Extract a preferredfileKeyfrom the response. - Generate: Send the
fileKeyto/api/generateModelWithImageto start generation and receiveuuids. - Poll: Use
/api/retrieveModelto poll status and get themodelUrl.
Pipeline C: Format Conversion for Manufacturing
For physical prototyping, default exports must be converted from .glb.
- Request:
POST https://alb.neural4d.com:3000/api/convertToFormat. - Payload: Provide the
uuid, desiredmodelType(e.g.,stl,fbx,obj), andmodelSizein millimeters (must be > 1). - Poll Status: Check
statusType:0: Complete, usemodelUrlto download.1: Converting (Wait and retry).-1: Failed or bad parameters.
External Endpoints Reference
All requests route through the base URL: https://alb.neural4d.com:3000/api.
| Action | Endpoint | Auth | Purpose |
|---|---|---|---|
| Text to 3D | /generateModelWithText |
Bearer Token | Generate from text prompt |
| Retrieve | /retrieveModel |
Bearer Token | Poll status and get model URL |
| Matting | /mattingImage |
Bearer Token | Pre-process image |
| Matting Result | /getMattedResult |
Bearer Token | Retrieve file keys for image generation |
| Image to 3D | /generateModelWithImage |
Bearer Token | Generate from matted fileKey |
| Convert Format | /convertToFormat |
Bearer Token | Convert to stl/fbx/obj with physical size |
| Job Progress | /queryJobProgress |
Bearer Token | Check percentage progress |
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ai-3d-generation - After installation, invoke the skill by name or use
/ai-3d-generation - Provide required inputs per the skill's parameter spec and get structured output
What is AI 3D generation?
Create, convert, and download AI-generated 3D models using Neural4D APIs. Optimized for commercial pipelines. It is an AI Agent Skill for Claude Code / OpenClaw, with 476 downloads so far.
How do I install AI 3D generation?
Run "/install ai-3d-generation" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is AI 3D generation free?
Yes, AI 3D generation is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does AI 3D generation support?
AI 3D generation is cross-platform and runs anywhere OpenClaw / Claude Code is available (linux, darwin, win32).
Who created AI 3D generation?
It is built and maintained by 6e6e6e (@6e6e6e); the current version is v1.0.0.