@genex-ai/cli-demo 0.63.0-dev.149 → 0.64.0-dev.154
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 +28 -10
- package/dist/index.js +635 -78
- package/package.json +1 -1
- package/templates/controllers/character/meshy/meshy-loader.ts +9 -0
- package/templates/skills/genex-ai-character/SKILL.md +72 -20
- package/templates/skills/genex-ai-hud/SKILL.md +1 -1
- package/templates/skills/genex-ai-image/SKILL.md +1 -1
- package/templates/skills/genex-ai-menu/SKILL.md +1 -1
- package/templates/skills/genex-ai-model/SKILL.md +1 -1
- package/templates/skills/genex-ai-sfx/SKILL.md +1 -1
- package/templates/skills/genex-explore/SKILL.md +5 -2
- package/templates/skills/genex-threejs-character-controller/SKILL.md +36 -11
- package/templates/skills/genex-threejs-character-controller/references/animations.md +15 -4
- package/templates/skills/genex-threejs-skill-router/SKILL.md +26 -6
- package/templates/skills/genex-threejs-skill-router/references/routing-map.md +13 -1
- package/templates/skills/genex-threejs-visual-validation/SKILL.md +32 -1
- package/templates/skills/genex-threejs-visual-validation/references/visual-validation.md +21 -0
- package/templates/skills/genex-updates/SKILL.md +6 -0
package/README.md
CHANGED
|
@@ -16,7 +16,9 @@ genex sfx "<prompt>" # generate a sound fx → prints an asset URL
|
|
|
16
16
|
genex texture "<prompt>" # generate a texture → prints an asset URL
|
|
17
17
|
genex image "<prompt>" # generate an image → prints an asset URL
|
|
18
18
|
genex video "<prompt>" # generate a video → prints an asset URL
|
|
19
|
-
genex character "<
|
|
19
|
+
genex character "<brief>" # generate 3 neutral-A-pose concept candidates
|
|
20
|
+
genex character preview <concept-id> --candidate 1 --user-approved
|
|
21
|
+
genex character finalize <preview-id> --user-approved --approve-remesh 10000
|
|
20
22
|
genex character animate <id> --action <action-id> # add a same-rig Meshy action
|
|
21
23
|
genex animations search "<intent>" --json # search the committed Meshy catalog locally
|
|
22
24
|
genex wait <id> # attach to a --no-wait generation and print its URL(s) when done
|
|
@@ -138,15 +140,31 @@ one call (`image-main` + `image-alt-N` URLs) — pick the best instead of re-rol
|
|
|
138
140
|
|
|
139
141
|
## Meshy characters and animations
|
|
140
142
|
|
|
141
|
-
|
|
142
|
-
same authenticated credit, BullMQ/Redis, and R2 generation pipeline
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
143
|
+
The default Meshy lane is an approval-gated, three-command workflow through the
|
|
144
|
+
same authenticated credit, BullMQ/Redis, and R2 generation pipeline:
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
genex character "<approved visual direction>"
|
|
148
|
+
genex character preview <concept-id> --candidate <1|2|3> --user-approved
|
|
149
|
+
genex character finalize <preview-id> --user-approved --approve-remesh 10000
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
The first command produces exactly three full-body neutral-A-pose concept
|
|
153
|
+
images and a contact sheet, then stops. The second converts only the selected
|
|
154
|
+
image into an unremeshed, textured Meshy 6 high-detail GLB, preserves it in R2,
|
|
155
|
+
and returns front/back/left/right views plus its measured face count. The final
|
|
156
|
+
command requires another explicit approval, creates a separate 10,000-face
|
|
157
|
+
triangle remesh, rigs that exact remesh, and installs the immutable
|
|
158
|
+
preview-reviewed neutral-v3 idle/walk/run/crouch/jump pack. There is no silent
|
|
159
|
+
T-pose fallback in this guided lane. Native limb rotations are preserved; only
|
|
160
|
+
horizontal root/hip translation may be normalized for Rapier ownership.
|
|
161
|
+
|
|
162
|
+
`--animation <id-or-query>` is repeatable on the initial concept command or on
|
|
163
|
+
`finalize`; requested actions run only after the controller pack succeeds.
|
|
164
|
+
`--height` and `--no-wait` carry through the approval flow. The guided lane
|
|
165
|
+
always installs neutral-v3. `genex character "<prompt>" --direct-text` is the
|
|
166
|
+
explicit compatibility path; only that path accepts `--polycount` or
|
|
167
|
+
`--no-controller-pack`, and its default polycount is also 10,000.
|
|
150
168
|
|
|
151
169
|
Search before spending:
|
|
152
170
|
|