stage_create_scene
Create a new 3D scene workspace for composition, supporting objects, lighting, camera shots, and physics bindings. Returns a scene ID for subsequent operations.
Instructions
Create a new 3D scene for composition.
Initializes a new scene workspace backed by chuk-artifacts.
The scene can contain 3D objects, lighting, camera shots, and physics bindings.
Args:
name: Optional scene name (e.g., "pendulum-demo", "f1-silverstone-t1")
author: Optional author name for metadata
description: Optional scene description
Returns:
CreateSceneResponse with scene_id and success message
Tips for LLMs:
- Scene ID is auto-generated (UUID)
- Scenes are stored in USER scope (Google Drive) if authenticated, SESSION scope otherwise
- Use the scene_id for all subsequent operations
- Typical workflow: create_scene → add_objects → add_shots → export
Example:
scene = await stage_create_scene(
name="falling-ball-demo",
author="Claude",
description="Simple gravity demonstration"
)
# Use scene.scene_id for next stepsInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| author | No | ||
| description | No | ||
| _user_id | No |