@nyex/nyex 1.1.0 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +23 -14
  2. package/bin/nyex.js +5 -6
  3. package/package.json +5 -5
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.1.0)**
5
+ > **Defaults (v1.2.1)**
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,15 +72,24 @@ 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.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
- - 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.1
76
+ NYEX 1.2.1 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.1 (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.1.0`
92
+ - Package: `@nyex/nyex@1.2.1`
84
93
 
85
94
  ### Core Features
86
95
  - Deterministic multi-role orchestration (`primary`, `planner`, `tool_exec`, `summarizer`, `validator`).
@@ -97,16 +106,16 @@ NYEX 1.1.0 is a release-prep update that carries forward 1.0.10 trust/integrity
97
106
  - Session persistence and explicit resume flows (`nyex resume <session-id>`) with clearer invalid-id handling.
98
107
  - Refresh-token-backed auth/session reliability with silent refresh on startup/resume.
99
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.
100
110
 
101
111
  ### Recent updates
102
- - post-1.1.0 mainline (unreleased):
112
+ - post-1.2.1 mainline (unreleased):
103
113
  - planner-first decomposition strengthened over compaction-first behavior
104
114
  - planner artifact contract/checklist schema enforced for structured planning output
105
- - 1.1.0 release-prep trust pass:
106
- - summary surface first-line/clipping fixes
107
- - muted-but-visible silenced command output
108
- - footer RoleHits sync from canonical trace attempts
109
- - `/trace` surface readability cleanup
115
+ - 1.2.1 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
110
119
  - 1.0.9 foundation:
111
120
  - canonical tool descriptors + normalized lifecycle/result/error contracts
112
121
  - descriptor-driven permission tightening and clear `permission_denied` outcomes
package/bin/nyex.js CHANGED
@@ -8,7 +8,6 @@ const { spawn, execSync } = require("child_process");
8
8
  const pkg = require("../package.json");
9
9
  const META_PACKAGE = pkg.name || "@nyex/nyex";
10
10
  const PLATFORM_PACKAGE = "@nyex/nyex-win32-x64-msvc";
11
- const INSTALL_TAG = "beta";
12
11
 
13
12
  function candidateGlobalNodeModuleDirs() {
14
13
  const dirs = [];
@@ -47,9 +46,9 @@ function formatInstallHelp({ platform, arch, expectedPackage }) {
47
46
  lines.push("");
48
47
  lines.push("How to fix:");
49
48
  lines.push(" 1) Reinstall the meta package (this should pull the platform binary automatically):");
50
- lines.push(` npm i -g ${META_PACKAGE}@${INSTALL_TAG}`);
49
+ lines.push(` npm install -g ${META_PACKAGE}`);
51
50
  lines.push(" 2) If that still doesn't install the platform binary, install it explicitly:");
52
- lines.push(` npm i -g ${expectedPackage}@${INSTALL_TAG}`);
51
+ lines.push(` npm install -g ${expectedPackage}`);
53
52
  lines.push("");
54
53
  lines.push("If you are testing local .tgz files:");
55
54
  lines.push(" 1) Install the platform .tgz first");
@@ -130,7 +129,7 @@ function verifyBinaryIntegrity({ expectedPackage, binPath, shaPath }) {
130
129
  "",
131
130
  "How to fix:",
132
131
  ` npm uninstall -g ${expectedPackage}`,
133
- ` npm i -g ${META_PACKAGE}@${INSTALL_TAG}`,
132
+ ` npm install -g ${META_PACKAGE}`,
134
133
  "",
135
134
  "If you are testing local .tgz files, re-run the staging script then reinstall:",
136
135
  " scripts\\npm\\stage-windows-binary.ps1 ...",
@@ -161,7 +160,7 @@ function verifyBinaryIntegrity({ expectedPackage, binPath, shaPath }) {
161
160
  "",
162
161
  "How to fix:",
163
162
  ` npm uninstall -g ${expectedPackage}`,
164
- ` npm i -g ${META_PACKAGE}@${INSTALL_TAG}`,
163
+ ` npm install -g ${META_PACKAGE}`,
165
164
  ].join("\n")
166
165
  );
167
166
  // Recoverable: a sibling global platform install may still be valid.
@@ -181,7 +180,7 @@ function verifyBinaryIntegrity({ expectedPackage, binPath, shaPath }) {
181
180
  "Remediation:",
182
181
  ` npm uninstall -g ${expectedPackage} ${META_PACKAGE}`,
183
182
  " npm cache clean --force",
184
- ` npm i -g ${META_PACKAGE}@${INSTALL_TAG}`,
183
+ ` npm install -g ${META_PACKAGE}`,
185
184
  ].join("\n")
186
185
  );
187
186
  // Fatal: we found a binary + checksum pair that disagree.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@nyex/nyex",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "Nyex CLI (private beta)",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
- "homepage": "https://nyex.ai",
6
+ "homepage": "https://www.npmjs.com/package/@nyex/nyex",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/rinfa0108/nyex.git"
9
+ "url": "https://www.npmjs.com/package/@nyex/nyex"
10
10
  },
11
11
  "bugs": {
12
- "url": "https://github.com/rinfa0108/nyex/issues"
12
+ "url": "https://www.npmjs.com/package/@nyex/nyex"
13
13
  },
14
14
  "publishConfig": {
15
15
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "nyex": "bin/nyex.js"
19
19
  },
20
20
  "optionalDependencies": {
21
- "@nyex/nyex-win32-x64-msvc": "1.1.0"
21
+ "@nyex/nyex-win32-x64-msvc": "1.2.1"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=18"