@genex-ai/cli-demo 0.84.0-dev.215 → 0.86.0-dev.217
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 +9 -7
- package/dist/index.js +2110 -1871
- package/package.json +1 -1
- package/templates/controllers/character/character-animations.ts +116 -5
- package/templates/skills/genex-ai-hud/SKILL.md +45 -27
- package/templates/skills/genex-ai-hud/references/stage1-prompt-template.md +42 -5
- package/templates/skills/genex-ai-hud/references/stage2-prompt-template.md +5 -1
- package/templates/skills/genex-ai-menu/SKILL.md +12 -5
- package/templates/skills/genex-game-director/SKILL.md +56 -15
- package/templates/skills/genex-game-director/references/design-contract.md +33 -8
- package/templates/skills/genex-game-director/references/routing-map.md +40 -28
- package/templates/skills/genex-threejs-character-controller/SKILL.md +19 -0
- package/templates/skills/genex-threejs-character-controller/references/animations.md +28 -1
- package/templates/skills/genex-threejs-creatures/SKILL.md +8 -0
- package/templates/skills/genex-threejs-game-ui/SKILL.md +74 -70
- package/templates/skills/genex-threejs-multiplayer/SKILL.md +19 -0
- package/templates/skills/genex-threejs-visual-validation/SKILL.md +9 -4
package/README.md
CHANGED
|
@@ -106,15 +106,17 @@ downloaded or committed:
|
|
|
106
106
|
sprite sets — see the `genex-ai-menu` / `genex-ai-hud` skills):
|
|
107
107
|
|
|
108
108
|
- **image** — `--quality <low|medium|high>` (provider quality preset),
|
|
109
|
-
`--size <WxH>` (exact pixel size, e.g. `2560x1440`), `--edit <url>`
|
|
110
|
-
existing
|
|
109
|
+
`--size <WxH>` (exact pixel size, e.g. `2560x1440`), `--edit <url|file>`
|
|
110
|
+
(edit an existing image with the prompt — a generated-asset URL or a LOCAL
|
|
111
|
+
image file, inlined as a data URI up to ~4 MB: a user's reference
|
|
112
|
+
screenshot anchors the art chain directly), `--clean <url>` (ML background
|
|
111
113
|
removal only; defaults `--bg-mode sheet`), `--remove-bg` (chain background
|
|
112
114
|
removal after the gen/edit), `--bg-mode <sprite|glyph|sheet>` (removal model).
|
|
113
|
-
|
|
114
|
-
API rejects other hosts.
|
|
115
|
-
- **video** — `--frame <url>` (animate from a frame back to itself: a
|
|
116
|
-
mathematically seamless loop
|
|
117
|
-
(two-frame motion).
|
|
115
|
+
Remote image inputs must be generated-asset URLs (`assets.genex.technology`)
|
|
116
|
+
— the API rejects other hosts.
|
|
117
|
+
- **video** — `--frame <url|file>` (animate from a frame back to itself: a
|
|
118
|
+
mathematically seamless loop; asset URL or a ≤4 MB local image file) or
|
|
119
|
+
`--first-frame <url>` + `--last-frame <url>` (two-frame motion).
|
|
118
120
|
- **`genex ui <extract|masks|text-color|trim>`** — the local, no-API pixel
|
|
119
121
|
toolbox that finishes the job: split an asset sheet into per-element
|
|
120
122
|
transparent PNGs (+ `.bbox.json` sidecars), key green-annotated fill masks,
|