@nyex/nyex 1.2.3 → 1.2.5

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 +8 -7
  2. package/package.json +35 -33
package/README.md CHANGED
@@ -2,9 +2,10 @@
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.2.3)**
5
+ > **Defaults (v1.2.5)**
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
+ > - **Capability packs: OFF by default** (install + explicit /capabilities enable <id> required)
8
9
 
9
10
  ---
10
11
 
@@ -72,8 +73,8 @@ You can change models/providers via:
72
73
 
73
74
  If no providers are connected after NYEX login, the onboarding flow will prompt you to connect one.
74
75
 
75
- ### NYEX 1.2.3
76
- NYEX 1.2.3 is a feature release that includes runtime trust and product-surface hardening:
76
+ ### NYEX 1.2.5
77
+ NYEX 1.2.5 is a release correction with hard auth-gate enforcement and default capability-off posture:
77
78
  - plain `nyex` startup stays TUI-first with in-app auth gate flow
78
79
  - live layout/render compaction and transcript/live fidelity fixes in the main conversation surface
79
80
  - runtime tool-call integrity hardening to prevent orphan `call_id` output failures
@@ -83,13 +84,13 @@ NYEX 1.2.3 is a feature release that includes runtime trust and product-surface
83
84
  - `scripts/qa/tui-validation-harness.ps1`
84
85
  - `artifacts/tui-validation/report.md`
85
86
 
86
- Mainline updates after 1.2.3 (current `origin/main` pre-release line):
87
+ Mainline updates after 1.2.5 (current `origin/main` pre-release line):
87
88
  - live command output rendering is append-only (history-first) to reduce blank-space artifacts in `Ran ...` cards
88
89
  - main completed view stays raw-result-first and no longer shows evaluator headline rows
89
90
  - evaluator evidence remains available in transcript/debug surfaces
90
91
 
91
92
  ### Version
92
- - Package: `@nyex/nyex@1.2.3`
93
+ - Package: `@nyex/nyex@1.2.5`
93
94
 
94
95
  ### Core Features
95
96
  - Deterministic multi-role orchestration (`primary`, `planner`, `tool_exec`, `summarizer`, `validator`).
@@ -109,10 +110,10 @@ Mainline updates after 1.2.3 (current `origin/main` pre-release line):
109
110
  - Entitlement-first access gate: productive use requires `active_entitlement`; blocked access states stay diagnostics-only until resolved.
110
111
 
111
112
  ### Recent updates
112
- - post-1.2.3 mainline (unreleased):
113
+ - post-1.2.5 mainline (unreleased):
113
114
  - planner-first decomposition strengthened over compaction-first behavior
114
115
  - planner artifact contract/checklist schema enforced for structured planning output
115
- - 1.2.3 runtime/product hardening pass:
116
+ - 1.2.5 runtime/product hardening pass:
116
117
  - plain startup now remains in TUI with in-app auth gate behavior
117
118
  - raw result + evaluator finalization replaces summary-first finalization default
118
119
  - footer planner/tool counters now track live visible execution events
package/package.json CHANGED
@@ -1,34 +1,36 @@
1
- {
2
- "name": "@nyex/nyex",
3
- "version": "1.2.3",
4
- "description": "Nyex CLI (private beta)",
5
- "license": "SEE LICENSE IN LICENSE",
6
- "homepage": "https://www.npmjs.com/package/@nyex/nyex",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://www.npmjs.com/package/@nyex/nyex"
10
- },
11
- "bugs": {
12
- "url": "https://www.npmjs.com/package/@nyex/nyex"
13
- },
14
- "publishConfig": {
15
- "access": "public"
16
- },
17
- "bin": {
18
- "nyex": "bin/nyex.js"
19
- },
20
- "optionalDependencies": {
21
- "@nyex/nyex-win32-x64-msvc": "1.2.3"
22
- },
23
- "engines": {
24
- "node": ">=18"
25
- },
26
- "scripts": {},
27
- "files": [
28
- "bin/nyex.js",
29
- "LICENSE",
30
- "TERMS_OF_USE.md",
31
- "README.md",
32
- "package.json"
33
- ]
1
+ {
2
+ "name": "@nyex/nyex",
3
+ "version": "1.2.5",
4
+ "description": "Nyex CLI (private beta)",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "homepage": "https://www.npmjs.com/package/@nyex/nyex",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://www.npmjs.com/package/@nyex/nyex"
10
+ },
11
+ "bugs": {
12
+ "url": "https://www.npmjs.com/package/@nyex/nyex"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "bin": {
18
+ "nyex": "bin/nyex.js"
19
+ },
20
+ "optionalDependencies": {
21
+ "@nyex/nyex-win32-x64-msvc": "1.2.5"
22
+ },
23
+ "engines": {
24
+ "node": "\u003e=18"
25
+ },
26
+ "scripts": {
27
+
28
+ },
29
+ "files": [
30
+ "bin/nyex.js",
31
+ "LICENSE",
32
+ "TERMS_OF_USE.md",
33
+ "README.md",
34
+ "package.json"
35
+ ]
34
36
  }