@neocompose/cli 0.26.4 → 0.27.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 +53 -0
- package/README.md +1 -0
- package/dist/neo.mjs +882 -248
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +4 -2
- package/skills/neocompose-cli/references/cli-development.md +1 -1
- package/skills/neocompose-cli/references/commands-and-sync.md +11 -0
- package/skills/neocompose-cli/references/values-identities-and-references.md +4 -1
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.
|
|
12
|
+
<!-- reviewed-through-cli: 0.27.0 -->
|
|
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.
|
|
86
|
+
<!-- reviewed-through-cli: 0.27.0 -->
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -145,5 +145,16 @@ and a protected file only as fallback. Use `NEO_COMPOSE_TOKEN` or
|
|
|
145
145
|
`--token-stdin` in CI. The editor profile cannot publish releases; server
|
|
146
146
|
scopes remain the security boundary.
|
|
147
147
|
|
|
148
|
+
`neo logout [--api <url>]` deletes the stored credential for exactly one API
|
|
149
|
+
origin (keychain entry and credentials-file row) and revokes the server
|
|
150
|
+
session best-effort. It never clears other origins or the whole store.
|
|
151
|
+
|
|
152
|
+
Isolated environments (P53 agent rigs) set `NEO_COMPOSE_CONFIG_HOME` (an
|
|
153
|
+
absolute directory replacing `$XDG_CONFIG_HOME/neo-compose` for Neo state
|
|
154
|
+
only) and `NEO_COMPOSE_CREDENTIAL_NAMESPACE` (scopes the OS-keychain account)
|
|
155
|
+
so concurrent environments sharing one OS user cannot read, overwrite, or
|
|
156
|
+
delete each other's tokens. Login, logout, and authenticated commands all
|
|
157
|
+
honor both variables.
|
|
158
|
+
|
|
148
159
|
Pass explicit project/version IDs and flags in automation. Prefer `--json` for
|
|
149
160
|
machine-readable output and do not depend on interactive pickers or confirms.
|
|
@@ -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
|
|