@genex-ai/cli-demo 1.19.0-dev.601 → 1.21.0-dev.603
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/dist/{blender-mcp-FQJFZETR.js → blender-mcp-PWOUSXK4.js} +1 -1
- package/dist/{chunk-YSMZVFJM.js → chunk-HEDRWUVP.js} +7 -0
- package/dist/index.js +542 -170
- package/package.json +1 -1
- package/templates/controllers/character/meshy/meshy-loader.ts +3 -2
- package/templates/controllers/quality/deadline.ts +117 -0
- package/templates/controllers/quality/pick-asset.ts +27 -15
- package/templates/skills/genex-ai-character/SKILL.md +67 -15
- package/templates/skills/genex-ai-model/SKILL.md +32 -0
- package/templates/skills/genex-game-director/SKILL.md +18 -10
- package/templates/skills/genex-lane-card/SKILL.md +60 -0
- package/templates/skills/genex-threejs-character-controller/SKILL.md +2 -1
- package/templates/skills/genex-threejs-creatures/SKILL.md +8 -1
- package/templates/skills/genex-threejs-visual-validation/SKILL.md +2 -1
- package/templates/skills/genex-tool-character/SKILL.md +36 -5
- package/templates/skills/genex-tool-model/SKILL.md +16 -3
|
@@ -447,6 +447,13 @@ async function apiFetch(url, init = {}, opts = {}) {
|
|
|
447
447
|
if (body?.error === "generation_paused") {
|
|
448
448
|
process.stderr.write(
|
|
449
449
|
`${c.red("\u2717")} ${body.message ?? "Generation is temporarily paused platform-wide. Try again later."}
|
|
450
|
+
`
|
|
451
|
+
);
|
|
452
|
+
structuredPrinted.add(res);
|
|
453
|
+
}
|
|
454
|
+
if (body?.error === "provider_unavailable") {
|
|
455
|
+
process.stderr.write(
|
|
456
|
+
`${c.red("\u2717")} ${body.message ?? "This generation lane is unavailable \u2014 our provider account is out of credit. Build it in code and move on."}
|
|
450
457
|
`
|
|
451
458
|
);
|
|
452
459
|
structuredPrinted.add(res);
|