@nyex/nyex 1.3.1 → 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.
- package/README.md +17 -21
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,14 +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.
|
|
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
|
|
10
|
+
> - **Context Distillation shadow analysis: ON by default**
|
|
11
11
|
> - **Prompt replacement: OFF** (the model still receives the normal prompt)
|
|
12
|
-
> - **Context Distillation
|
|
13
|
-
> - **Context Distillation telemetry:
|
|
12
|
+
> - **Context Distillation active shaping: OFF by default**
|
|
13
|
+
> - **Context Distillation telemetry: OFF by default**
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -75,25 +75,25 @@ If provider auth or entitlement is missing, onboarding and diagnostics make this
|
|
|
75
75
|
|
|
76
76
|
---
|
|
77
77
|
|
|
78
|
-
## Context Distillation (v1.3.
|
|
78
|
+
## Context Distillation (v1.3.2)
|
|
79
79
|
|
|
80
|
-
Context Distillation is
|
|
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
81
|
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
- Telemetry default: `features.context_distillation_telemetry=
|
|
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
85
|
|
|
86
86
|
What this means:
|
|
87
87
|
|
|
88
|
-
- Runtime behavior stays passthrough
|
|
89
|
-
- No blocking
|
|
90
|
-
- You can view Context Distillation
|
|
91
|
-
- You can toggle telemetry from `/settings` without
|
|
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
92
|
- Detailed runtime contract: `docs/CONTEXT_DISTILLATION.md` in the NYEX repository.
|
|
93
93
|
|
|
94
|
-
## What's New in 1.3.
|
|
94
|
+
## What's New in 1.3.2
|
|
95
95
|
|
|
96
|
-
NYEX 1.3.
|
|
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.
|
|
97
97
|
|
|
98
98
|
- Capability Apps are separate installable app releases (`.nyexpack`)
|
|
99
99
|
- Capability Apps are not bundled into NYEX Core payload
|
|
@@ -102,12 +102,8 @@ NYEX 1.3.1 keeps the Capability App runtime slice and adds Context Distillation
|
|
|
102
102
|
|
|
103
103
|
Version:
|
|
104
104
|
|
|
105
|
-
- `@nyex/nyex@1.3.
|
|
106
|
-
- `@nyex/nyex-win32-x64-msvc@1.3.
|
|
107
|
-
|
|
108
|
-
Release prep:
|
|
109
|
-
|
|
110
|
-
- Fresh Windows release binary is built from `codex-rs/target-release-npm/release/nyex.exe`.
|
|
105
|
+
- `@nyex/nyex@1.3.2`
|
|
106
|
+
- `@nyex/nyex-win32-x64-msvc@1.3.2`
|
|
111
107
|
|
|
112
108
|
---
|
|
113
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nyex/nyex",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Nyex CLI",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://www.npmjs.com/package/@nyex/nyex",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"nyex": "bin/nyex.js"
|
|
19
19
|
},
|
|
20
20
|
"optionalDependencies": {
|
|
21
|
-
"@nyex/nyex-win32-x64-msvc": "1.3.
|
|
21
|
+
"@nyex/nyex-win32-x64-msvc": "1.3.2"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": "\u003e=18"
|