@neocompose/cli 0.6.6 → 0.7.0
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 +29 -0
- package/README.md +1 -1
- package/dist/neo.mjs +987 -489
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +9 -1
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ A format-4 `neo/` working copy is a Git-like checkout of one Neo Compose
|
|
|
15
15
|
project version. Native `.neo`/`.neoflow` source and the web UI are peer
|
|
16
16
|
authoring surfaces over the same granular records; the server remains the
|
|
17
17
|
shared source of truth. The complete contract is
|
|
18
|
-
`specs/neo-project-source-authoring.md`.
|
|
18
|
+
`https://github.com/ryanbliss/neo-compose-specs/tree/main/new-features/complete/neo-project-source-authoring.md`.
|
|
19
19
|
|
|
20
20
|
There is no C# schema project, Roslyn compiler, authoring DLL, .NET discovery,
|
|
21
21
|
generated SDK, per-member script sidecar tree, `ValueRegistry`, or checked-in
|
|
@@ -205,6 +205,14 @@ declarations. Structurally owned descriptors and concrete generic bindings
|
|
|
205
205
|
derive their identities from stable owner roles; do not invent `@id`
|
|
206
206
|
annotations for them.
|
|
207
207
|
|
|
208
|
+
For world layer links, `NeoTileLayerLink` and `NeoObjectLayerLink` are abstract,
|
|
209
|
+
relation-free system bases. Instantiate a concrete project-authored descendant
|
|
210
|
+
that resolves exactly one `targetLayer` relation, declared directly or inherited
|
|
211
|
+
from a project-authored ancestor. The class relation is the complete binding:
|
|
212
|
+
native source emits no value-level target metadata, and link values carry no
|
|
213
|
+
second persistence representation. Painting and other world-content writes
|
|
214
|
+
never create or repair link targets.
|
|
215
|
+
|
|
208
216
|
## Root and authored values
|
|
209
217
|
|
|
210
218
|
`Root.neo` contains a compiler-owned envelope of this form:
|