@neocompose/cli 0.26.3 → 0.26.5
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/package.json
CHANGED
|
@@ -9,7 +9,7 @@ description: >-
|
|
|
9
9
|
`@neocompose/cli` or `node cli/bin/neo.mjs` in the neo-compose repository.
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
<!-- reviewed-through-cli: 0.26.
|
|
12
|
+
<!-- reviewed-through-cli: 0.26.5 -->
|
|
13
13
|
|
|
14
14
|
# Neo Compose CLI
|
|
15
15
|
|
|
@@ -28,7 +28,9 @@ Those are not part of format 4.
|
|
|
28
28
|
2. Edit tracked `.neo`, `.neoflow`, `.spec.neo`, and managed binary files only. Never edit
|
|
29
29
|
`.neo/state.json`, analysis caches, or `.neo/conflicts` as source.
|
|
30
30
|
3. Run `neo status` and `neo diff`. Review every change, including changes that
|
|
31
|
-
existed before the task began.
|
|
31
|
+
existed before the task began. Newly authored value seeds are grouped under
|
|
32
|
+
the `.neo` source that owns them and are included in JSON output even when
|
|
33
|
+
they are the only pending work.
|
|
32
34
|
4. Run `neo test` after NeoScript changes and `neo dialogue dryrun <ref>` after
|
|
33
35
|
dialogue changes.
|
|
34
36
|
`neo test` compiles the complete pending candidate, including idless nested
|
|
@@ -83,7 +83,7 @@ wrappers.
|
|
|
83
83
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
84
84
|
|
|
85
85
|
```html
|
|
86
|
-
<!-- reviewed-through-cli: 0.26.
|
|
86
|
+
<!-- reviewed-through-cli: 0.26.5 -->
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -132,7 +132,10 @@ new construction.
|
|
|
132
132
|
|
|
133
133
|
Write main-locale text directly in localizable string initializers. Pull/lower
|
|
134
134
|
preserves other locales, comments, statuses, archive state, and unrelated
|
|
135
|
-
localized-text links
|
|
135
|
+
localized-text links, including when the initializer is a class member default.
|
|
136
|
+
Do not author localized-text IDs in place of prose. An empty string remains a
|
|
137
|
+
valid authored string value; nullability, not text length, controls whether the
|
|
138
|
+
member is required.
|
|
136
139
|
|
|
137
140
|
## Managed files
|
|
138
141
|
|