@neocompose/cli 0.46.0 → 0.46.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
|
@@ -60,6 +60,11 @@ NeoScript compilation in the browser-safe `@neocompose/neoscript-language`
|
|
|
60
60
|
service. Monaco, VS Code, CLI, trusted server, and corpus tooling must consume
|
|
61
61
|
that shared implementation. Do not add language intelligence to one adapter.
|
|
62
62
|
|
|
63
|
+
Keep evaluation and plain project context projection in `src/runtime/`. The CLI,
|
|
64
|
+
server, workers, and editor consume those modules through host lookups; the
|
|
65
|
+
runtime must not import UI state. The runtime boundary and import-cycle checks
|
|
66
|
+
run with `npm run lint:architecture`.
|
|
67
|
+
|
|
63
68
|
Keep project context refreshable without accumulating stale Monaco providers or
|
|
64
69
|
LSP state. Preserve diagnostics, completion, hover, signatures, definition,
|
|
65
70
|
references, rename, symbols, semantic tokens, code actions, and formatting
|
|
@@ -83,7 +88,7 @@ wrappers.
|
|
|
83
88
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
84
89
|
|
|
85
90
|
```html
|
|
86
|
-
<!-- reviewed-through-cli: 0.46.
|
|
91
|
+
<!-- reviewed-through-cli: 0.46.1 -->
|
|
87
92
|
```
|
|
88
93
|
|
|
89
94
|
The quoted version above is checked too, so this instruction cannot go stale
|