What problem does it solve? Starting a Decentraland SDK7 scene from scratch requires correctly configuring scene.json, tsconfig, composite files, and runtime constraints, and hand-written setups quickly diverge from current SDK templates. ## Core Features & Use Cases - Official scaffolding: Runs @dcl/sdk-commands init to generate scene.json, package.json, tsconfig.json, and src/index.ts with up-to-date configuration. - Composite-first entity authoring: Places all load-time entities in assets/scene/main.composite while reserving TypeScript for runtime-spawned entities, systems, and interactivity. - Asset and configuration guidance: Searches free 3D model and audio catalogs, configures parcels, spawn points, tags, permissions, and feature toggles, then validates the build and preview. - Use Case: A creator asks for a two-parcel neon gallery with clickable artwork; the skill scaffolds the project, downloads approved GLB models into assets/Models, defines entities in main.composite, wires pointer events in index.ts, and verifies the preview at localhost:8000. ## Quick Start Ask the assistant to create a new Decentraland scene describing the theme, parcel count, and desired interactivity, and it will scaffold and configure the project for you.