@nyex/nyex 1.0.4 → 1.0.6

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 +35 -20
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,9 +2,9 @@
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.2+)**
6
- > - **Strict Cloud Mode: ON** (cloud failures do **not** silently fall back to local)
7
- > - **Local Mode: OFF** (the local proxy never starts unless you explicitly enable it)
5
+ > **Defaults (v1.0.6+)**
6
+ > - **Strict Cloud Mode: ON** (cloud failures do **not** silently fall back to local)
7
+ > - **Local Mode: OFF** (the local proxy never starts unless you explicitly enable it)
8
8
 
9
9
  ---
10
10
 
@@ -59,15 +59,24 @@ 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)
65
- - Claude (API key)
66
- - Ollama (Local Mode)
67
-
68
- You can change models/providers via:
69
- - **TUI**: `/settings` and `/models`
70
- - **CLI config overrides** (examples below)
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
+ ### Recent updates
76
+ - Clickable + copy-safe login links for NYEX and cloud provider auth flows (clickable link + raw URL + code line).
77
+ - Dynamic provider model discovery and refresh surfaces in `/models`.
78
+ - Provider auth guards prevent dispatch to disconnected providers and return actionable connect guidance.
79
+ - Role/trace observability improvements for fallback visibility and attempt-based diagnostics.
71
80
 
72
81
  ---
73
82
 
@@ -116,14 +125,17 @@ That should **only** appear when you opt in.
116
125
  - Verify `/status` shows `Proxy: disabled`
117
126
  - If Local Mode is enabled, disable it via `/settings`
118
127
 
119
- ### I’m blocked by “NYEX login required”
120
- Run:
121
-
122
- ```bash
123
- nyex auth login
124
- ```
125
-
126
- Then retry.
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.
127
139
 
128
140
  ### Auth endpoint shows unreachable
129
141
  Check `/doctor` and confirm:
@@ -146,6 +158,7 @@ NYEX is built with “keep main green” discipline:
146
158
  - Install: https://www.npmjs.com/package/@nyex/nyex
147
159
  - Auth: https://auth.nyex.ai
148
160
  - Status: https://auth.nyex.ai/health
161
+ - Website: https://nyex.ai
149
162
 
150
163
  ---
151
164
 
@@ -153,3 +166,5 @@ NYEX is built with “keep main green” discipline:
153
166
 
154
167
  See repository license.
155
168
 
169
+
170
+ 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.4",
3
+ "version": "1.0.6",
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.3"
21
+ "@nyex/nyex-win32-x64-msvc": "1.0.6"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=18"