@nyex/nyex 1.0.6 → 1.0.7

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 +30 -26
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  NYEX is a terminal-first AI workspace for real developer workflows: identity-gated access, deterministic multi-provider routing, and guardrails designed to keep teams shipping with confidence.
4
4
 
5
- > **Defaults (v1.0.6+)**
5
+ > **Defaults (v1.0.7+)**
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
8
 
@@ -59,24 +59,28 @@ nyex exec "what is 1+1?"
59
59
 
60
60
  NYEX routes work across **roles** (primary, planner, tool_exec, summarizer, validator, etc.). Each role can use its own provider/model, deterministically.
61
61
 
62
- Common providers:
63
- - OpenAI (ChatGPT / API)
64
- - Gemini (API key or OAuth)
65
- - Claude (API key)
66
- - xAI / Grok (BYOC API key)
67
- - Ollama (Local Mode)
68
-
69
- You can change models/providers via:
70
- - **TUI**: `/settings` and `/models`
71
- - **CLI config overrides** (examples below)
72
-
73
- If no providers are connected after NYEX login, the onboarding flow will prompt you to connect one.
74
-
62
+ Common providers:
63
+ - OpenAI (ChatGPT / API)
64
+ - Gemini (API key or OAuth)
65
+ - Claude (API key)
66
+ - xAI / Grok (BYOC API key)
67
+ - Ollama (Local Mode)
68
+
69
+ You can change models/providers via:
70
+ - **TUI**: `/settings` and `/models`
71
+ - **CLI config overrides** (examples below)
72
+
73
+ If no providers are connected after NYEX login, the onboarding flow will prompt you to connect one.
74
+
75
75
  ### Recent updates
76
76
  - Clickable + copy-safe login links for NYEX and cloud provider auth flows (clickable link + raw URL + code line).
77
77
  - Dynamic provider model discovery and refresh surfaces in `/models`.
78
78
  - Provider auth guards prevent dispatch to disconnected providers and return actionable connect guidance.
79
79
  - Role/trace observability improvements for fallback visibility and attempt-based diagnostics.
80
+ - Session reliability hardening: better silent refresh behavior and restart/resume stickiness.
81
+ - Resume handling improvements: clearer invalid session ID failures with no login detour.
82
+ - Validator remains pre-final and no longer emits contradictory post-final follow-up output.
83
+ - TUI readability improvements: cleaner `/trace`, taller summary/output area, and event-driven activity phrases.
80
84
 
81
85
  ---
82
86
 
@@ -125,17 +129,17 @@ That should **only** appear when you opt in.
125
129
  - Verify `/status` shows `Proxy: disabled`
126
130
  - If Local Mode is enabled, disable it via `/settings`
127
131
 
128
- ### I’m blocked by “NYEX login required”
129
- Run:
130
-
131
- ```bash
132
- nyex auth login
133
- ```
134
-
135
- Then retry.
136
-
137
- ### Provider not connected
138
- Use `/providers` to connect (OpenAI/Gemini/Claude). NYEX won’t dispatch to a disconnected provider.
132
+ ### I’m blocked by “NYEX login required”
133
+ Run:
134
+
135
+ ```bash
136
+ nyex auth login
137
+ ```
138
+
139
+ Then retry.
140
+
141
+ ### Provider not connected
142
+ Use `/providers` to connect (OpenAI/Gemini/Claude). NYEX won’t dispatch to a disconnected provider.
139
143
 
140
144
  ### Auth endpoint shows unreachable
141
145
  Check `/doctor` and confirm:
@@ -167,4 +171,4 @@ NYEX is built with “keep main green” discipline:
167
171
  See repository license.
168
172
 
169
173
 
170
- Digilabs Company Australia © NYEX AI Platform. All rights reserved. AIC Pty Ltd (ACN 082 378 256)
174
+ Digilabs Company Australia © NYEX AI Platform. All rights reserved. AIC Pty Ltd (ACN 082 378 256)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyex/nyex",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Nyex CLI (private beta)",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://nyex.ai",
@@ -18,7 +18,7 @@
18
18
  "nyex": "bin/nyex.js"
19
19
  },
20
20
  "optionalDependencies": {
21
- "@nyex/nyex-win32-x64-msvc": "1.0.6"
21
+ "@nyex/nyex-win32-x64-msvc": "1.0.7"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=18"