@nyex/nyex 1.0.11 → 1.1.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/README.md +35 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
NYEX is a terminal-first Agentic-AI execution runtime built for real software delivery. It enforces identity-gated access, routes work deterministically across roles and providers, and keeps execution observable through trace-first diagnostics and safety guardrails so teams can ship faster without losing control of runtime behavior.
|
|
4
4
|
|
|
5
|
-
> **Defaults (v1.0
|
|
5
|
+
> **Defaults (v1.1.0)**
|
|
6
6
|
> - **Strict Cloud Mode: ON** (cloud failures do **not** silently fall back to local)
|
|
7
7
|
> - **Local Mode: OFF** (the local proxy never starts unless you explicitly enable it)
|
|
8
8
|
|
|
@@ -72,18 +72,20 @@ You can change models/providers via:
|
|
|
72
72
|
|
|
73
73
|
If no providers are connected after NYEX login, the onboarding flow will prompt you to connect one.
|
|
74
74
|
|
|
75
|
-
### NYEX 1.0
|
|
76
|
-
NYEX 1.0
|
|
75
|
+
### NYEX 1.1.0
|
|
76
|
+
NYEX 1.1.0 is a release-prep update that carries forward 1.0.10 trust/integrity fixes and adds local Windows signing gate hardening:
|
|
77
77
|
- summary rendering integrity
|
|
78
78
|
- visible-but-muted silenced output
|
|
79
79
|
- footer RoleHits reconciliation from canonical trace attempts
|
|
80
80
|
- improved `/trace` readability
|
|
81
81
|
|
|
82
82
|
### Version
|
|
83
|
-
- Package: `@nyex/nyex@1.0
|
|
83
|
+
- Package: `@nyex/nyex@1.1.0`
|
|
84
84
|
|
|
85
85
|
### Core Features
|
|
86
86
|
- Deterministic multi-role orchestration (`primary`, `planner`, `tool_exec`, `summarizer`, `validator`).
|
|
87
|
+
- Planner-first decomposition for long/multi-step prompts before compaction fallback.
|
|
88
|
+
- Structured planner artifact checklist contract for execution-ready handoff.
|
|
87
89
|
- Attempt-based observability with trace-first diagnostics (`/trace`, `/status`, `/doctor`, `/signals explain`).
|
|
88
90
|
- Validator safety invariants: pre-final only and no-tools.
|
|
89
91
|
- Canonical tool descriptors and lifecycle-normalized tool execution outcomes.
|
|
@@ -97,7 +99,10 @@ NYEX 1.0.10 is a hotfix release focused on trust and integrity surfaces after 1.
|
|
|
97
99
|
- Strict Cloud Mode defaults with deterministic fallback behavior and explicit local-mode opt-in.
|
|
98
100
|
|
|
99
101
|
### Recent updates
|
|
100
|
-
- 1.0
|
|
102
|
+
- post-1.1.0 mainline (unreleased):
|
|
103
|
+
- planner-first decomposition strengthened over compaction-first behavior
|
|
104
|
+
- planner artifact contract/checklist schema enforced for structured planning output
|
|
105
|
+
- 1.1.0 release-prep trust pass:
|
|
101
106
|
- summary surface first-line/clipping fixes
|
|
102
107
|
- muted-but-visible silenced command output
|
|
103
108
|
- footer RoleHits sync from canonical trace attempts
|
|
@@ -163,6 +168,30 @@ nyex auth login
|
|
|
163
168
|
|
|
164
169
|
Then retry.
|
|
165
170
|
|
|
171
|
+
### Windows install fails with `EPERM` / `TAR_ENTRY_ERROR` on `nyex.exe`
|
|
172
|
+
This usually means antivirus (Norton/Defender) quarantined or locked the binary during npm extraction.
|
|
173
|
+
|
|
174
|
+
Recommended recovery:
|
|
175
|
+
```powershell
|
|
176
|
+
npm uninstall -g @nyex/nyex @nyex/nyex-win32-x64-msvc
|
|
177
|
+
npm cache clean --force
|
|
178
|
+
npm i -g @nyex/nyex
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
If the error repeats:
|
|
182
|
+
- add allow rules for your npm global install directory and `nyex.exe`
|
|
183
|
+
- rerun install after restoring the file from AV quarantine
|
|
184
|
+
- verify with `nyex --version`
|
|
185
|
+
|
|
186
|
+
Verify Windows signature:
|
|
187
|
+
```powershell
|
|
188
|
+
$nyex = (Get-Command nyex).Source
|
|
189
|
+
Get-AuthenticodeSignature -LiteralPath $nyex | Format-List Status,SignerCertificate,TimeStamperCertificate
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Release trust note:
|
|
193
|
+
- public NYEX Windows packages are staged from CA-issued, RFC3161-timestamped Authenticode signatures only.
|
|
194
|
+
|
|
166
195
|
### Provider not connected
|
|
167
196
|
Use `/providers` to connect (OpenAI/Gemini/Claude). NYEX won’t dispatch to a disconnected provider.
|
|
168
197
|
|
|
@@ -197,3 +226,4 @@ See repository license.
|
|
|
197
226
|
|
|
198
227
|
|
|
199
228
|
Digilabs Company Australia © NYEX AI Platform. All rights reserved. AIC Pty Ltd (ACN 082 378 256)
|
|
229
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nyex/nyex",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Nyex CLI (private beta)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://nyex.ai",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"nyex": "bin/nyex.js"
|
|
19
19
|
},
|
|
20
20
|
"optionalDependencies": {
|
|
21
|
-
"@nyex/nyex-win32-x64-msvc": "1.0
|
|
21
|
+
"@nyex/nyex-win32-x64-msvc": "1.1.0"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">=18"
|