@neocompose/cli 0.46.1 → 0.47.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 +43 -0
- package/README.md +2 -1
- package/dist/neo.mjs +5119 -2494
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +1 -1
- package/skills/neocompose-cli/references/cli-development.md +1 -1
- package/skills/neocompose-cli/references/commands-and-sync.md +18 -1
- package/skills/neocompose-cli/references/values-identities-and-references.md +12 -5
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@ wrappers.
|
|
|
88
88
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
89
89
|
|
|
90
90
|
```html
|
|
91
|
-
<!-- reviewed-through-cli: 0.
|
|
91
|
+
<!-- reviewed-through-cli: 0.47.0 -->
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -13,11 +13,15 @@ branches, releases, history, and authentication.
|
|
|
13
13
|
|
|
14
14
|
## Pull, inspect, and push
|
|
15
15
|
|
|
16
|
+
`neo doctor` fails on malformed records in the last-pulled document. Pull first to audit the current
|
|
17
|
+
head. After a reviewed `neo doctor --fix`, pull and check again.
|
|
18
|
+
|
|
16
19
|
Use the high-level source workflow:
|
|
17
20
|
|
|
18
21
|
```sh
|
|
19
22
|
neo pull
|
|
20
23
|
neo status
|
|
24
|
+
neo doctor
|
|
21
25
|
neo diff
|
|
22
26
|
neo dialogue dryrun <dialogue-ref>
|
|
23
27
|
neo push --dry-run
|
|
@@ -31,8 +35,13 @@ and managed binaries. Reset retains declaration file grouping already recorded
|
|
|
31
35
|
by the workspace, while declarations with no prior placement use the canonical
|
|
32
36
|
per-declaration layout. Use `--force` only to discard local edits for the server
|
|
33
37
|
version. Normal pulls persist a transaction cursor and fetch only changed
|
|
34
|
-
records
|
|
38
|
+
records. If the remote head is unchanged, pull preserves the local source
|
|
39
|
+
without compiling it; use `neo status` to inspect local edits and diagnostics.
|
|
40
|
+
An undo/reset metadata change invalidates the cursor and causes a safe
|
|
35
41
|
full-snapshot fallback.
|
|
42
|
+
Pull pins every page and snapshot batch to one published generation and logical
|
|
43
|
+
revision. If either changes during assembly, the CLI discards the attempt and
|
|
44
|
+
restarts. Upgrade the CLI together with the P83 server read protocol.
|
|
36
45
|
|
|
37
46
|
Treat `neo push --dry-run` as a full local commit rehearsal: source emission,
|
|
38
47
|
in-memory pending-ID assignment, transport shapes, hashes, and repeat
|
|
@@ -52,6 +61,11 @@ bodies affected by changed declarations. Use `--force-recompile` with either a
|
|
|
52
61
|
dry run or a real push only when diagnosing stale derived IR: it retains the
|
|
53
62
|
exhaustive project-wide body sweep and is intentionally slower.
|
|
54
63
|
|
|
64
|
+
Interactive status, diff, pull, and test commands report workspace loading and
|
|
65
|
+
preparation phases. Spinners continue animating during synchronous compilation;
|
|
66
|
+
`NO_COLOR` removes color without stopping the animation. JSON reporters and
|
|
67
|
+
piped status/test output contain no terminal animation.
|
|
68
|
+
|
|
55
69
|
Interactive pushes report the active preparation phase before workspace
|
|
56
70
|
discovery, lowering, compilation, source hashing, and validation begin.
|
|
57
71
|
A normal push prepares that transport once before confirmation and reuses it
|
|
@@ -162,6 +176,9 @@ neo history resume --run <run-id>
|
|
|
162
176
|
Treat branches as copy-on-write forks and releases as immutable snapshots. The
|
|
163
177
|
server derives the minimum compatibility bump; a caller may only raise it.
|
|
164
178
|
Require the release login profile for release operations.
|
|
179
|
+
Branch creation waits for the durable copy to publish before reporting success.
|
|
180
|
+
The source stays readable while copying; the destination becomes readable only
|
|
181
|
+
after verification and publication.
|
|
165
182
|
|
|
166
183
|
History rewrites require project owner or admin authority. `prune` and
|
|
167
184
|
`flatten` create immutable plans without deleting anything. `apply` starts the
|
|
@@ -145,11 +145,18 @@ recipe. Edit members supported by the recorded construction, or delete and
|
|
|
145
145
|
recreate the value.
|
|
146
146
|
|
|
147
147
|
Write main-locale text directly in localizable string initializers. Pull/lower
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
148
|
+
retargets only the edited assignment. Equal primary-locale text on the same
|
|
149
|
+
declared member shares a localization record across member overrides and
|
|
150
|
+
instances. Different members keep separate translation contexts. Editing a
|
|
151
|
+
class default updates its inheriting instances; editing one instance does not
|
|
152
|
+
change that default. Reverting the instance text to its default restores the
|
|
153
|
+
shared assignment and archives an unreferenced unique text record.
|
|
154
|
+
|
|
155
|
+
An empty string stores no localization ID. Entering nonempty primary-locale
|
|
156
|
+
text selects or creates the member's shared localization record. Do not author
|
|
157
|
+
localized-text IDs in place of prose. Nullability, not text length, controls
|
|
158
|
+
whether the member is required. Other locales remain translations of their
|
|
159
|
+
linked source record.
|
|
153
160
|
|
|
154
161
|
## Managed files
|
|
155
162
|
|