@nyex/nyex 1.0.4 → 1.0.5

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 +27 -19
  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.5+)**
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,17 @@ 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)
62
+ Common providers:
63
+ - OpenAI (ChatGPT / API)
64
+ - Gemini (API key or OAuth)
65
+ - Claude (API key)
66
+ - Ollama (Local Mode)
67
67
 
68
- You can change models/providers via:
69
- - **TUI**: `/settings` and `/models`
70
- - **CLI config overrides** (examples below)
68
+ You can change models/providers via:
69
+ - **TUI**: `/settings` and `/models`
70
+ - **CLI config overrides** (examples below)
71
+
72
+ If no providers are connected after NYEX login, the onboarding flow will prompt you to connect one.
71
73
 
72
74
  ---
73
75
 
@@ -116,14 +118,17 @@ That should **only** appear when you opt in.
116
118
  - Verify `/status` shows `Proxy: disabled`
117
119
  - If Local Mode is enabled, disable it via `/settings`
118
120
 
119
- ### I’m blocked by “NYEX login required”
120
- Run:
121
-
122
- ```bash
123
- nyex auth login
124
- ```
125
-
126
- Then retry.
121
+ ### I’m blocked by “NYEX login required”
122
+ Run:
123
+
124
+ ```bash
125
+ nyex auth login
126
+ ```
127
+
128
+ Then retry.
129
+
130
+ ### Provider not connected
131
+ Use `/providers` to connect (OpenAI/Gemini/Claude). NYEX won’t dispatch to a disconnected provider.
127
132
 
128
133
  ### Auth endpoint shows unreachable
129
134
  Check `/doctor` and confirm:
@@ -146,6 +151,7 @@ NYEX is built with “keep main green” discipline:
146
151
  - Install: https://www.npmjs.com/package/@nyex/nyex
147
152
  - Auth: https://auth.nyex.ai
148
153
  - Status: https://auth.nyex.ai/health
154
+ - Website: https://nyex.ai
149
155
 
150
156
  ---
151
157
 
@@ -153,3 +159,5 @@ NYEX is built with “keep main green” discipline:
153
159
 
154
160
  See repository license.
155
161
 
162
+
163
+ 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.5",
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.5"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=18"