@neocompose/cli 0.19.3 → 0.19.4
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/CHANGELOG.md +125 -0
- package/README.md +17 -12
- package/dist/neo.mjs +10271 -190
- package/package.json +2 -1
- package/skills/neocompose-cli/SKILL.md +115 -524
- package/skills/neocompose-cli/agents/openai.yaml +4 -0
- package/skills/neocompose-cli/references/animation-and-world-authoring.md +218 -0
- package/skills/neocompose-cli/references/cli-development.md +110 -0
- package/skills/neocompose-cli/references/commands-and-sync.md +130 -0
- package/skills/neocompose-cli/references/declarations-and-construction.md +217 -0
- package/skills/neocompose-cli/references/neoscript.md +150 -0
- package/skills/neocompose-cli/references/values-identities-and-references.md +158 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neocompose/cli",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.4",
|
|
4
4
|
"description": "Neo Compose native project-source CLI with bidirectional sync.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"build": "npm run build:local",
|
|
25
25
|
"build:local": "node build.mjs --env local",
|
|
26
26
|
"build:prod": "node build.mjs --env prod",
|
|
27
|
+
"skill:check": "node schema-contract/check-skill-review.mjs",
|
|
27
28
|
"package:check": "node schema-contract/check-package.mjs",
|
|
28
29
|
"test:package": "npm run build && npm run package:check",
|
|
29
30
|
"prepublishOnly": "npm run build:prod && npm run package:check",
|