🎯

world-labs-chisel

🎯Skill

from cloudai-x/world-labs-skills

VibeIndex|
What it does

world-labs-chisel skill from cloudai-x/world-labs-skills

πŸ“¦

Part of

cloudai-x/world-labs-skills(8 items)

world-labs-chisel

Installation

git cloneClone repository
git clone https://github.com/CloudAI-X/world-labs-skills.git
πŸ“– Extracted from docs: cloudai-x/world-labs-skills
6Installs
2
-
Last UpdatedJan 22, 2026

Skill Details

SKILL.md

Overview

# World Labs Claude Code Skills

A comprehensive collection of Claude Code skills for the [World Labs Marble API](https://docs.worldlabs.ai) - generate immersive 3D worlds from text, images, video, and panoramas.

What are Claude Code Skills?

[Claude Code](https://docs.anthropic.com/en/docs/claude-code) skills are reusable knowledge modules that enhance Claude's capabilities for specific domains. These skills provide Claude with detailed API knowledge, best practices, and code examples for World Labs integration.

Installation

Copy the skill folders to your Claude Code skills directory:

```bash

# Clone this repository

git clone https://github.com/CloudAI-X/world-labs-skills.git

# Copy skills to Claude Code directory

cp -r world-labs-skills/* ~/.claude/skills/

```

Or install individual skills:

```bash

cp -r world-labs-skills/world-labs-api ~/.claude/skills/

```

Available Skills

| Skill | Description |

| ---------------------------------------------------- | ------------------------------------------------------------------------ |

| [world-labs-api](./world-labs-api) | Core API integration - authentication, endpoints, models, media uploads |

| [world-labs-text-prompt](./world-labs-text-prompt) | Text-to-world generation - prompt structure, style descriptors, examples |

| [world-labs-image-prompt](./world-labs-image-prompt) | Single image input - requirements, best practices, upload workflow |

| [world-labs-multi-image](./world-labs-multi-image) | Multi-image input - direction control, auto layout, azimuth angles |

| [world-labs-pano-video](./world-labs-pano-video) | Panorama & video input - 360Β° images, video recording guidelines |

| [world-labs-chisel](./world-labs-chisel) | Chisel 3D blocking tool - geometry creation, wall/extrude tools |

| [world-labs-studio](./world-labs-studio) | Studio features - Compose, Record, Expand for world editing |

| [world-labs-export](./world-labs-export) | Export formats - Gaussian splats, meshes, engine integrations |

Quick Start

1. Get Your API Key

Sign up at [platform.worldlabs.ai](https://platform.worldlabs.ai) and create an API key.

2. Generate a World (Text Prompt)

```bash

curl -X POST "https://api.worldlabs.ai/marble/v1/worlds:generate" \

-H "WLT-Api-Key: YOUR_API_KEY" \

-H "Content-Type: application/json" \

-d '{

"model": "Marble 0.1-plus",

"world_prompt": {

"type": "text",

"text_prompt": "A cozy cabin living room with a glowing stone fireplace, wooden beams, and large windows overlooking a snowy forest."

}

}'

```

3. Poll for Completion

```bash

curl "https://api.worldlabs.ai/marble/v1/operations/{operation_id}" \

-H "WLT-Api-Key: YOUR_API_KEY"

```

Models

| Model | Generation Time | Best For | Credits |

| ----------------- | --------------- | ------------------ | ----------- |

| Marble 0.1-plus | ~5 minutes | Production quality | 1,500-1,600 |

| Marble 0.1-mini | ~30-45 seconds | Quick drafts | 150-250 |

Input Types

| Type | Description | Credits (plus/mini) |

| ----------- | ------------------------------- | ------------------- |

| Text | Natural language description | 1,580 / 230 |

| Image | Single reference image | 1,580 / 230 |

| Panorama | 360Β° equirectangular image | 1,500 / 150 |

| Multi-Image | Up to 4-8 images with direction | 1,600 / 250 |

| Video | Up to 30 second rotation video | 1,600 / 250 |

API Request Format

All world generation uses the world_prompt structure:

```json

{

"model": "Marble 0.1-plus",

"world_prompt": {

"type": "text | image | multi-image | video",

"text_prompt": "Optional description",