@nyex/nyex 1.3.0 → 1.3.2

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 +25 -5
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,10 +3,14 @@
3
3
  **NYEX is a terminal-first agent runtime for production software work.**
4
4
  It provides deterministic role-based execution, policy-aware control, and traceable runtime behavior across providers and models.
5
5
 
6
- > **Defaults (v1.3.0)**
6
+ > **Defaults (v1.3.2)**
7
7
  > - **Strict Cloud Mode: ON** (cloud failures do not silently fall back to local)
8
8
  > - **Local Mode: OFF** (local proxy is disabled unless explicitly enabled)
9
9
  > - **Capability Apps: OFF by default** (install + explicit enable required)
10
+ > - **Context Distillation shadow analysis: ON by default**
11
+ > - **Prompt replacement: OFF** (the model still receives the normal prompt)
12
+ > - **Context Distillation active shaping: OFF by default**
13
+ > - **Context Distillation telemetry: OFF by default**
10
14
 
11
15
  ---
12
16
 
@@ -71,9 +75,25 @@ If provider auth or entitlement is missing, onboarding and diagnostics make this
71
75
 
72
76
  ---
73
77
 
74
- ## What's New in 1.3.0
78
+ ## Context Distillation (v1.3.2)
75
79
 
76
- NYEX 1.3.0 formalizes the Capability App runtime slice in NYEX Core.
80
+ Context Distillation is analysis-only in NYEX 1.3.2. It can build shadow telemetry and candidate-pack measurements, but it does not modify prompts or change runtime behavior.
81
+
82
+ - Shadow analysis default: `runtime_modes.context_distillation_phase2_enabled=true`
83
+ - Active shaping default: `runtime_modes.context_distillation_phase2_enforcement_enabled=false`
84
+ - Telemetry default: `features.context_distillation_telemetry=false`
85
+
86
+ What this means:
87
+
88
+ - Runtime behavior stays passthrough.
89
+ - No prompt replacement, blocking, retry, or discard behavior is enabled.
90
+ - You can view Context Distillation mode in `/status` and `/doctor`.
91
+ - You can toggle telemetry from `/settings` without changing shadow analysis mode.
92
+ - Detailed runtime contract: `docs/CONTEXT_DISTILLATION.md` in the NYEX repository.
93
+
94
+ ## What's New in 1.3.2
95
+
96
+ NYEX 1.3.2 is the stabilization release for governance-priority task fulfillment, supported-model fallback behavior, Context Distillation shadow telemetry visibility, and TUI/status polish.
77
97
 
78
98
  - Capability Apps are separate installable app releases (`.nyexpack`)
79
99
  - Capability Apps are not bundled into NYEX Core payload
@@ -82,8 +102,8 @@ NYEX 1.3.0 formalizes the Capability App runtime slice in NYEX Core.
82
102
 
83
103
  Version:
84
104
 
85
- - `@nyex/nyex@1.3.0`
86
- - `@nyex/nyex-win32-x64-msvc@1.3.0`
105
+ - `@nyex/nyex@1.3.2`
106
+ - `@nyex/nyex-win32-x64-msvc@1.3.2`
87
107
 
88
108
  ---
89
109
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nyex/nyex",
3
- "version": "1.3.0",
4
- "description": "Nyex CLI (private beta)",
3
+ "version": "1.3.2",
4
+ "description": "Nyex CLI",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://www.npmjs.com/package/@nyex/nyex",
7
7
  "repository": {
@@ -18,7 +18,7 @@
18
18
  "nyex": "bin/nyex.js"
19
19
  },
20
20
  "optionalDependencies": {
21
- "@nyex/nyex-win32-x64-msvc": "1.3.0"
21
+ "@nyex/nyex-win32-x64-msvc": "1.3.2"
22
22
  },
23
23
  "engines": {
24
24
  "node": "\u003e=18"