@nyex/nyex 1.3.0 → 1.3.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.
- package/README.md +29 -5
- 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.
|
|
6
|
+
> **Defaults (v1.3.1)**
|
|
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 telemetry: ON by default**
|
|
11
|
+
> - **Prompt replacement: OFF** (the model still receives the normal prompt)
|
|
12
|
+
> - **Context Distillation enforcement: OFF by default**
|
|
13
|
+
> - **Context Distillation telemetry: ON 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
|
-
##
|
|
78
|
+
## Context Distillation (v1.3.1)
|
|
75
79
|
|
|
76
|
-
|
|
80
|
+
Context Distillation is enabled by default for runtime functionality in non-enforcing mode.
|
|
81
|
+
|
|
82
|
+
- Functionality default: `runtime_modes.context_distillation_phase2_enabled=true`
|
|
83
|
+
- Enforcement default: `runtime_modes.context_distillation_phase2_enforcement_enabled=false`
|
|
84
|
+
- Telemetry default: `features.context_distillation_telemetry=true`
|
|
85
|
+
|
|
86
|
+
What this means:
|
|
87
|
+
|
|
88
|
+
- Runtime behavior stays passthrough while enforcement is OFF.
|
|
89
|
+
- No blocking/retry/discard is introduced by default.
|
|
90
|
+
- You can view Context Distillation state and recent counters in `/status` and `/doctor`.
|
|
91
|
+
- You can toggle telemetry from `/settings` without disabling core functionality.
|
|
92
|
+
- Detailed runtime contract: `docs/CONTEXT_DISTILLATION.md` in the NYEX repository.
|
|
93
|
+
|
|
94
|
+
## What's New in 1.3.1
|
|
95
|
+
|
|
96
|
+
NYEX 1.3.1 keeps the Capability App runtime slice and adds Context Distillation shadow telemetry/evidence signals visibility for operators.
|
|
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,12 @@ 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.
|
|
86
|
-
- `@nyex/nyex-win32-x64-msvc@1.3.
|
|
105
|
+
- `@nyex/nyex@1.3.1`
|
|
106
|
+
- `@nyex/nyex-win32-x64-msvc@1.3.1`
|
|
107
|
+
|
|
108
|
+
Release prep:
|
|
109
|
+
|
|
110
|
+
- Fresh Windows release binary is built from `codex-rs/target-release-npm/release/nyex.exe`.
|
|
87
111
|
|
|
88
112
|
---
|
|
89
113
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nyex/nyex",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "Nyex CLI
|
|
3
|
+
"version": "1.3.1",
|
|
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.
|
|
21
|
+
"@nyex/nyex-win32-x64-msvc": "1.3.1"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": "\u003e=18"
|