@nyex/nyex 1.0.11 → 1.2.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.
Files changed (2) hide show
  1. package/README.md +54 -15
  2. 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.10)**
5
+ > **Defaults (v1.2.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,29 @@ 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.10
76
- NYEX 1.0.10 is a hotfix release focused on trust and integrity surfaces after 1.0.9:
77
- - summary rendering integrity
78
- - visible-but-muted silenced output
79
- - footer RoleHits reconciliation from canonical trace attempts
80
- - improved `/trace` readability
75
+ ### NYEX 1.2.0
76
+ NYEX 1.2.0 is a feature release that includes runtime trust and product-surface hardening:
77
+ - plain `nyex` startup stays TUI-first with in-app auth gate flow
78
+ - live layout/render compaction and transcript/live fidelity fixes in the main conversation surface
79
+ - runtime tool-call integrity hardening to prevent orphan `call_id` output failures
80
+ - footer planner/tool telemetry now reflects live execution truth
81
+ - default final surface is canonical raw result followed by evaluator output
82
+ - release-prep validation evidence is generated locally via:
83
+ - `scripts/qa/tui-validation-harness.ps1`
84
+ - `artifacts/tui-validation/report.md`
85
+
86
+ Mainline updates after 1.2.0 (current `origin/main` pre-release line):
87
+ - live command output rendering is append-only (history-first) to reduce blank-space artifacts in `Ran ...` cards
88
+ - main completed view stays raw-result-first and no longer shows evaluator headline rows
89
+ - evaluator evidence remains available in transcript/debug surfaces
81
90
 
82
91
  ### Version
83
- - Package: `@nyex/nyex@1.0.10`
92
+ - Package: `@nyex/nyex@1.2.0`
84
93
 
85
- ### Core Features
94
+ ### Core Features
86
95
  - Deterministic multi-role orchestration (`primary`, `planner`, `tool_exec`, `summarizer`, `validator`).
96
+ - Planner-first decomposition for long/multi-step prompts before compaction fallback.
97
+ - Structured planner artifact checklist contract for execution-ready handoff.
87
98
  - Attempt-based observability with trace-first diagnostics (`/trace`, `/status`, `/doctor`, `/signals explain`).
88
99
  - Validator safety invariants: pre-final only and no-tools.
89
100
  - Canonical tool descriptors and lifecycle-normalized tool execution outcomes.
@@ -94,14 +105,17 @@ NYEX 1.0.10 is a hotfix release focused on trust and integrity surfaces after 1.
94
105
  - Local persistent memory support with session-aware context continuity.
95
106
  - Session persistence and explicit resume flows (`nyex resume <session-id>`) with clearer invalid-id handling.
96
107
  - Refresh-token-backed auth/session reliability with silent refresh on startup/resume.
97
- - Strict Cloud Mode defaults with deterministic fallback behavior and explicit local-mode opt-in.
108
+ - Strict Cloud Mode defaults with deterministic fallback behavior and explicit local-mode opt-in.
109
+ - Entitlement-first access gate: productive use requires `active_entitlement`; blocked access states stay diagnostics-only until resolved.
98
110
 
99
111
  ### Recent updates
100
- - 1.0.10 hotfix integrity pass:
101
- - summary surface first-line/clipping fixes
102
- - muted-but-visible silenced command output
103
- - footer RoleHits sync from canonical trace attempts
104
- - `/trace` surface readability cleanup
112
+ - post-1.2.0 mainline (unreleased):
113
+ - planner-first decomposition strengthened over compaction-first behavior
114
+ - planner artifact contract/checklist schema enforced for structured planning output
115
+ - 1.2.0 runtime/product hardening pass:
116
+ - plain startup now remains in TUI with in-app auth gate behavior
117
+ - raw result + evaluator finalization replaces summary-first finalization default
118
+ - footer planner/tool counters now track live visible execution events
105
119
  - 1.0.9 foundation:
106
120
  - canonical tool descriptors + normalized lifecycle/result/error contracts
107
121
  - descriptor-driven permission tightening and clear `permission_denied` outcomes
@@ -163,6 +177,30 @@ nyex auth login
163
177
 
164
178
  Then retry.
165
179
 
180
+ ### Windows install fails with `EPERM` / `TAR_ENTRY_ERROR` on `nyex.exe`
181
+ This usually means antivirus (Norton/Defender) quarantined or locked the binary during npm extraction.
182
+
183
+ Recommended recovery:
184
+ ```powershell
185
+ npm uninstall -g @nyex/nyex @nyex/nyex-win32-x64-msvc
186
+ npm cache clean --force
187
+ npm i -g @nyex/nyex
188
+ ```
189
+
190
+ If the error repeats:
191
+ - add allow rules for your npm global install directory and `nyex.exe`
192
+ - rerun install after restoring the file from AV quarantine
193
+ - verify with `nyex --version`
194
+
195
+ Verify Windows signature:
196
+ ```powershell
197
+ $nyex = (Get-Command nyex).Source
198
+ Get-AuthenticodeSignature -LiteralPath $nyex | Format-List Status,SignerCertificate,TimeStamperCertificate
199
+ ```
200
+
201
+ Release trust note:
202
+ - public NYEX Windows packages are staged from CA-issued, RFC3161-timestamped Authenticode signatures only.
203
+
166
204
  ### Provider not connected
167
205
  Use `/providers` to connect (OpenAI/Gemini/Claude). NYEX won’t dispatch to a disconnected provider.
168
206
 
@@ -197,3 +235,4 @@ See repository license.
197
235
 
198
236
 
199
237
  Digilabs Company Australia © NYEX AI Platform. All rights reserved. AIC Pty Ltd (ACN 082 378 256)
238
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyex/nyex",
3
- "version": "1.0.11",
3
+ "version": "1.2.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.11"
21
+ "@nyex/nyex-win32-x64-msvc": "1.2.0"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=18"