@neocompose/cli 0.42.1 → 0.43.1
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neocompose/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.1",
|
|
4
4
|
"description": "Neo Compose native project-source CLI with bidirectional sync.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
"ignore": "^7.0.6"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
+
"@neocompose/neoscript-language": "file:../packages/neoscript-language",
|
|
42
43
|
"esbuild": "^0.28.1",
|
|
43
44
|
"prettier": "^3.9.5",
|
|
44
45
|
"uuid": "^14.0.1"
|
|
@@ -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.
|
|
12
|
+
<!-- reviewed-through-cli: 0.43.1 -->
|
|
13
13
|
|
|
14
14
|
# Neo Compose CLI
|
|
15
15
|
|
|
@@ -40,7 +40,9 @@ Those are not part of format 4.
|
|
|
40
40
|
source emission, ID-assignment, transport-shape, hash, and repeat-verification path,
|
|
41
41
|
then rehearses the server's preparation phase — schema-commit
|
|
42
42
|
materialization and whole-graph validation — against the pulled document,
|
|
43
|
-
without prompting, uploading, committing, or rewriting the checkout.
|
|
43
|
+
without prompting, uploading, committing, or rewriting the checkout. Pull
|
|
44
|
+
once with the installed CLI so the workspace carries compatible
|
|
45
|
+
derived-edge extractor metadata.
|
|
44
46
|
6. Push one reviewed atomic change with `neo push`.
|
|
45
47
|
|
|
46
48
|
Treat pull followed immediately by status or dry-run as a semantic no-op. If it
|
|
@@ -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.
|
|
86
|
+
<!-- reviewed-through-cli: 0.43.1 -->
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -42,6 +42,11 @@ validation — so a rejection that used to cost a real push and return an opaque
|
|
|
42
42
|
`preparation-failed` now reports before anything is sent. It does not prompt,
|
|
43
43
|
upload, commit, or rewrite source.
|
|
44
44
|
|
|
45
|
+
Dry-run also compares the CLI's derived-edge extractor with the server version
|
|
46
|
+
saved by the last pull. Run `neo pull` after upgrading the CLI or when an older
|
|
47
|
+
workspace lacks that metadata. A newer server extractor requires a CLI
|
|
48
|
+
upgrade; a newer CLI extractor requires the server watermark to be repaired.
|
|
49
|
+
|
|
45
50
|
Normal preparation follows typed compiler dependencies and recompiles only
|
|
46
51
|
bodies affected by changed declarations. Use `--force-recompile` with either a
|
|
47
52
|
dry run or a real push only when diagnosing stale derived IR: it retains the
|