@nyex/nyex 1.3.5 → 1.4.0

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 +61 -52
  2. package/nyex-logo.png +0 -0
  3. package/package.json +11 -12
package/README.md CHANGED
@@ -1,16 +1,23 @@
1
- # NYEX
2
-
3
- **NYEX is a terminal-first agent runtime for production software work.**
4
- It provides deterministic role-based execution, policy-aware control, and traceable runtime behavior across providers and models.
5
-
6
- > **Defaults (v1.3.5)**
7
- > - **Strict Cloud Mode: ON** (cloud failures do not silently fall back to local)
8
- > - **Local Mode: OFF** (local proxy is disabled unless explicitly enabled)
9
- > - **Capability Apps: OFF by default** (install + explicit enable required)
10
- > - **Context Distillation shadow telemetry: OFF by default**
11
- > - **Prompt replacement: OFF** (the model still receives the normal prompt)
12
- > - **Context Distillation enforcement: OFF by default**
13
- > - **Context Distillation telemetry: OFF by default**
1
+ # NYEX
2
+
3
+ ![NYEX Logo](./nyex-logo.png)
4
+
5
+ [![Release](https://img.shields.io/badge/release-1.4.0-0A66C2)](https://www.npmjs.com/package/@nyex/nyex)
6
+ [![npm](https://img.shields.io/npm/v/@nyex/nyex.svg)](https://www.npmjs.com/package/@nyex/nyex)
7
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D18-339933?logo=node.js&logoColor=white)](https://nodejs.org/)
8
+ [![Rust](https://img.shields.io/badge/rust-stable-000000?logo=rust)](https://www.rust-lang.org/)
9
+
10
+ **NYEX is a terminal-first agent runtime for production software work.**
11
+ It provides deterministic role-based execution, policy-aware control, and traceable runtime behavior across providers and models.
12
+
13
+ > **Defaults (v1.4.0)**
14
+ > - **Strict Cloud Mode: ON** (cloud failures do not silently fall back to local)
15
+ > - **Local Mode: OFF** (local proxy is disabled unless explicitly enabled)
16
+ > - **Capability Apps: OFF by default** (install + explicit enable required)
17
+ > - **Context Distillation shadow telemetry: ON by default**
18
+ > - **Prompt replacement: OFF** (the model still receives the normal prompt)
19
+ > - **Context Distillation enforcement: OFF by default**
20
+ > - **Context Distillation telemetry: ON by default**
14
21
 
15
22
  ---
16
23
 
@@ -75,39 +82,41 @@ If provider auth or entitlement is missing, onboarding and diagnostics make this
75
82
 
76
83
  ---
77
84
 
78
- ## Context Distillation (v1.3.5)
79
-
80
- Context Distillation is enabled by default for runtime functionality in non-enforcing mode.
85
+ ## Context Distillation (v1.4.0)
81
86
 
82
- - Functionality default: `runtime_modes.context_distillation_phase2_enabled=false`
83
- - Enforcement default: `runtime_modes.context_distillation_phase2_enforcement_enabled=false`
84
- - Telemetry default: `features.context_distillation_telemetry=false`
87
+ - Context Distillation shadow telemetry and evidence signals are ON by default in non-enforcing mode.
88
+
89
+ - Functionality default: `runtime_modes.context_distillation_phase2_enabled=true`
90
+ - Enforcement default: `runtime_modes.context_distillation_phase2_enforcement_enabled=false`
91
+ - Telemetry default: `features.context_distillation_telemetry=true`
85
92
 
86
93
  What this means:
87
94
 
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.5
95
-
96
- NYEX 1.3.5 focuses on behavioral stabilization: direct task fulfillment, safer quoted-reference handling, and quieter default governance behavior.
97
-
98
- - Capability Apps are separate installable app releases (`.nyexpack`)
99
- - Capability Apps are not bundled into NYEX Core payload
100
- - Runtime surfaces include install/list/show/enable lifecycle and supervisor controls
101
- - Deterministic non-TTY capability operations are supported
95
+ - Runtime behavior stays passthrough while enforcement is OFF.
96
+ - No blocking/retry/discard is introduced by default.
97
+ - You can view Context Distillation state and recent counters in `/status` and `/doctor`.
98
+ - You can toggle telemetry from `/settings` without disabling core functionality.
99
+ - Detailed runtime contract: `docs/CONTEXT_DISTILLATION.md` in the NYEX repository.
100
+ - Trace-only lifecycle events are recorded in canonical trace; they are additive and do not imply a plugin bus.
101
+
102
+ ## What's New in 1.4.0
103
+
104
+ NYEX 1.4.0 focuses on behavioral stabilization: direct task fulfillment, safer quoted-reference handling, and quieter default governance behavior.
105
+
106
+ - PR5 release guardrails: strict leak scanning, packaging checks, and version sync validation.
107
+ - PR1 capability discovery: compact descriptors first, lazy hydration for selected tools/capabilities, eager fallback preserved.
108
+ - PR3 lifecycle tracing: trace-only typed lifecycle visibility (`PrePlan`..`OnFailure`) with no planner/tool semantic change.
109
+ - Capability Apps are separate installable app releases (`.nyexpack`)
110
+ - Capability Apps are not bundled into NYEX Core payload
111
+ - Runtime surfaces include install/list/show/enable lifecycle and supervisor controls
112
+ - Deterministic non-TTY capability operations are supported
113
+ - Capability discovery is compact-descriptor-first with lazy hydration of selected tool/capability schemas
114
+ - Trace-only lifecycle events cover `PrePlan`, `PostPlan`, `PreTool`, `PostTool`, `PreFinal`, `PostFinal`, `OnPolicyViolation`, `OnMemoryCommit`, `OnTraceFlush`, and `OnFailure`
102
115
 
103
116
  Version:
104
117
 
105
- - `@nyex/nyex@1.3.5`
106
- - `@nyex/nyex-win32-x64-msvc@1.3.5`
107
-
108
- Release prep:
109
-
110
- - Fresh Windows release binary is built from `workspace target/release/nyex.exe`.
118
+ - `@nyex/nyex@1.4.0`
119
+ - `@nyex/nyex-win32-x64-msvc@1.4.0`
111
120
 
112
121
  ---
113
122
 
@@ -118,12 +127,13 @@ Release prep:
118
127
  - Structured planner artifact handoff contract
119
128
  - Trace-first diagnostics (`/status`, `/doctor`, `/trace`, `/signals explain`)
120
129
  - Validator invariants (pre-final, no-tools)
121
- - Canonical tool descriptors and lifecycle-normalized outcomes
122
- - Descriptor-driven permission enforcement with explicit denial reasons
123
- - Session continuity and resume flows
124
- - Strict-cloud default posture with explicit local-mode opt-in
125
- - Entitlement-first access gating for productive runtime use
126
- - Capability App runtime host/operator controls
130
+ - Canonical tool descriptors and lifecycle-normalized outcomes
131
+ - Compact capability discovery descriptors with lazy hydration and eager fallback compatibility
132
+ - Descriptor-driven permission enforcement with explicit denial reasons
133
+ - Session continuity and resume flows
134
+ - Strict-cloud default posture with explicit local-mode opt-in
135
+ - Entitlement-first access gating for productive runtime use
136
+ - Capability App runtime host/operator controls
127
137
 
128
138
  ---
129
139
 
@@ -203,12 +213,12 @@ If it persists:
203
213
 
204
214
  ## Security and Guardrails
205
215
 
206
- NYEX emphasizes runtime truth and controlled execution:
207
-
208
- - deterministic routing traces
209
- - explicit diagnostics surfaces
210
- - policy/approval boundaries
211
- - leak-scan and release hardening discipline
216
+ NYEX emphasizes runtime truth and controlled execution:
217
+
218
+ - deterministic routing traces
219
+ - explicit diagnostics surfaces
220
+ - policy/approval boundaries
221
+ - leak-scan, version sync, and release hardening discipline
212
222
 
213
223
  ---
214
224
 
@@ -226,4 +236,3 @@ NYEX emphasizes runtime truth and controlled execution:
226
236
  See repository license.
227
237
 
228
238
  Digilabs Company Australia © NYEX AI Platform. All rights reserved. AIC Pty Ltd (ACN 082 378 256)
229
-
package/nyex-logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyex/nyex",
3
- "version": "1.3.5",
3
+ "version": "1.4.0",
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.5"
21
+ "@nyex/nyex-win32-x64-msvc": "1.4.0"
22
22
  },
23
23
  "engines": {
24
24
  "node": "\u003e=18"
@@ -26,13 +26,12 @@
26
26
  "scripts": {
27
27
 
28
28
  },
29
- "files": [
30
- "bin/nyex.js",
31
- "LICENSE",
32
- "TERMS_OF_USE.md",
33
- "README.md",
34
- "package.json"
35
- ]
36
- }
37
-
38
-
29
+ "files": [
30
+ "bin/nyex.js",
31
+ "LICENSE",
32
+ "TERMS_OF_USE.md",
33
+ "README.md",
34
+ "nyex-logo.png",
35
+ "package.json"
36
+ ]
37
+ }