@dcl-regenesislabs/opendcl 0.1.0-22239132687.commit-eccf1dd → 0.1.0-22312642473.commit-ea3ce8c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/context/asset-packs-catalog.md +2854 -0
- package/dist/compact-tool-renderers.d.ts +34 -0
- package/dist/compact-tool-renderers.d.ts.map +1 -0
- package/dist/compact-tool-renderers.js +102 -0
- package/dist/compact-tool-renderers.js.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/extensions/dcl-init.ts +3 -3
- package/package.json +2 -2
- package/prompts/system.md +16 -14
- package/skills/add-3d-models/SKILL.md +32 -8
- package/skills/add-interactivity/SKILL.md +32 -12
- package/skills/advanced-rendering/SKILL.md +10 -19
- package/skills/audio-video/SKILL.md +52 -8
- package/skills/build-ui/SKILL.md +76 -70
- package/skills/camera-control/SKILL.md +20 -9
- package/skills/create-scene/SKILL.md +21 -7
- package/skills/lighting-environment/SKILL.md +5 -3
- package/skills/multiplayer-sync/SKILL.md +15 -8
- package/skills/player-avatar/SKILL.md +27 -6
package/README.md
CHANGED
|
@@ -31,8 +31,9 @@ The result: **more creators building more scenes, faster.**
|
|
|
31
31
|
- **18 built-in skills** — scaffolding, 3D models, interactivity, UI, animations, multiplayer, authoritative server, audio/video, deployment (Genesis City & Worlds), optimization, smart items, camera control, lighting, player/avatar, NFT/blockchain, advanced rendering, advanced input
|
|
32
32
|
- **Integrated commands** — `/init` to scaffold, `/preview` to launch the dev server, `/tasks` to manage running processes, `/review` to audit code
|
|
33
33
|
- **TypeScript validation** — catches type errors immediately after writing code
|
|
34
|
-
- **Free 3D asset
|
|
34
|
+
- **Free 3D asset catalogs** — 2,700+ Creator Hub models and 900+ CC0-licensed models the agent proactively suggests when building scenes
|
|
35
35
|
- **Permission gate** — prompts for confirmation before destructive bash commands or writes to sensitive files
|
|
36
|
+
- **Compact tool output** — write shows path + size instead of file content, read shows a 5-line preview instead of 10
|
|
36
37
|
- **Session persistence** — pick up where you left off across sessions
|
|
37
38
|
|
|
38
39
|
## Quick Start
|
|
@@ -133,7 +134,7 @@ OpenDCL is built on [pi-coding-agent](https://github.com/badlogic/pi-mono), the
|
|
|
133
134
|
- **System prompt** with SDK7 architecture knowledge (ECS, QuickJS sandbox, parcel constraints)
|
|
134
135
|
- **Extensions** that detect your project, inject context, validate TypeScript, and provide slash commands
|
|
135
136
|
- **Skills** with detailed guides for every common scene development task
|
|
136
|
-
- **Reference docs** (87KB SDK reference, component tables, code examples, 3D asset
|
|
137
|
+
- **Reference docs** (87KB SDK reference, component tables, code examples, 3D asset catalogs)
|
|
137
138
|
|
|
138
139
|
The agent has full access to standard coding tools (read, write, edit, bash, grep, find) and uses them to understand and modify your scene code.
|
|
139
140
|
|