@genex-ai/cli-demo 1.30.0-dev.645 → 1.31.1
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 +0 -18
- package/dist/index.js +2839 -4768
- package/package.json +3 -3
- package/templates/controllers/character/follow-camera.ts +1 -16
- package/templates/controllers/character/meshy/meshy-loader.ts +2 -3
- package/templates/controllers/quality/pick-asset.ts +16 -49
- package/templates/controllers/shared/physics-world.ts +4 -6
- package/templates/skills/genex-ai-character/SKILL.md +15 -77
- package/templates/skills/genex-ai-menu/SKILL.md +11 -15
- package/templates/skills/genex-ai-model/SKILL.md +7 -45
- package/templates/skills/genex-ai-texture/SKILL.md +1 -1
- package/templates/skills/genex-ai-video/SKILL.md +17 -75
- package/templates/skills/genex-game-director/SKILL.md +46 -112
- package/templates/skills/genex-game-director/references/design-contract.md +5 -13
- package/templates/skills/genex-game-director/references/routing-map.md +45 -30
- package/templates/skills/genex-getting-started/SKILL.md +2 -2
- package/templates/skills/genex-monetization/SKILL.md +177 -0
- package/templates/skills/genex-threejs-adaptive-quality/SKILL.md +0 -21
- package/templates/skills/genex-threejs-character-controller/SKILL.md +5 -17
- package/templates/skills/genex-threejs-creatures/SKILL.md +1 -8
- package/templates/skills/genex-threejs-embed-auth/SKILL.md +57 -8
- package/templates/skills/genex-threejs-game-ui/SKILL.md +6 -55
- package/templates/skills/genex-threejs-procedural-assets/SKILL.md +10 -17
- package/templates/skills/genex-threejs-visual-validation/SKILL.md +2 -12
- package/templates/skills/genex-tool-audio/SKILL.md +2 -3
- package/templates/skills/genex-tool-character/SKILL.md +5 -36
- package/templates/skills/genex-tool-image/SKILL.md +2 -4
- package/templates/skills/genex-tool-model/SKILL.md +6 -32
- package/templates/skills/genex-tool-texture/SKILL.md +1 -1
- package/templates/skills/genex-tool-video/SKILL.md +5 -28
- package/templates/skills/genex-tool-workflow/SKILL.md +1 -4
- package/templates/skills/genex-updates/SKILL.md +1 -1
- package/dist/blender-mcp-Q6PSFYSE.js +0 -241
- package/dist/blender-serve-BF4FZ55Z.js +0 -244
- package/dist/chunk-2COG4P3T.js +0 -968
- package/dist/chunk-HYCSNWYX.js +0 -126
- package/templates/blender-service/demo/castle.py +0 -117
- package/templates/blender-service/gpu_witness.py +0 -245
- package/templates/blender-service/ops.py +0 -225
- package/templates/blender-service/pool.py +0 -910
- package/templates/blender-service/server.py +0 -611
- package/templates/blender-service/supervisor.py +0 -221
- package/templates/blender-service/views.py +0 -281
- package/templates/controllers/quality/deadline.ts +0 -117
- package/templates/skills/genex-blender-scene/SKILL.md +0 -243
- package/templates/skills/genex-lane-card/SKILL.md +0 -78
- package/templates/skills/genex-tool-publish/SKILL.md +0 -100
package/README.md
CHANGED
|
@@ -5,8 +5,6 @@ This is the `cli` app of the [genex monorepo](../../README.md).
|
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
7
|
genex init <name> # authorize + create the draft project
|
|
8
|
-
genex remix <slug> # make a new draft from a source snapshot
|
|
9
|
-
genex remix <slug> --source-only # download a reference into .genex/refs without linking
|
|
10
8
|
genex link <slug> # re-link this folder to an existing game of yours (recovery)
|
|
11
9
|
genex list # list your games — slug, status, page link (find the slug to link)
|
|
12
10
|
genex preview # build + push to the hosted draft URL (unlisted)
|
|
@@ -36,22 +34,6 @@ genex ui <tool> # local pixel toolbox for generated UI art: extract |
|
|
|
36
34
|
> never a different global `genex`). `genex <cmd>` works too if you install it
|
|
37
35
|
> globally. The bare command forms below name the command; prefix with `npx` to run.
|
|
38
36
|
|
|
39
|
-
`genex remix <slug-or-Genex-page-URL> [directory]` prepares an independent draft
|
|
40
|
-
from a source snapshot. It downloads the real asset bytes, gives the copy its own
|
|
41
|
-
project identity and CLI dependency, and installs concise remix guidance. Your
|
|
42
|
-
request decides whether to make a small change, borrow a system, restyle the game,
|
|
43
|
-
or redesign it completely. An existing destination is refused unless it belongs
|
|
44
|
-
to the same interrupted setup; retry the command to resume it. `--preview` opts
|
|
45
|
-
into publishing a baseline draft. The default prepares the workspace first.
|
|
46
|
-
|
|
47
|
-
`--source-only` downloads reference source under `.genex/refs/` (or into a named
|
|
48
|
-
empty directory), without creating a project, installing dependencies or changing
|
|
49
|
-
the current project's identity. Keep required credits and license notices with
|
|
50
|
-
reused source; Genex does not require a new in-game credit overlay. Owners can use
|
|
51
|
-
their private source; other users can use eligible public games. When an exact
|
|
52
|
-
release-to-source match is unavailable, the command explicitly labels the source
|
|
53
|
-
as the latest available snapshot.
|
|
54
|
-
|
|
55
37
|
`genex init` does four things:
|
|
56
38
|
|
|
57
39
|
1. **Installs the skills for your coding agents** — copies the bundled templates
|