@nyex/nyex 1.0.9 → 1.0.10
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 +18 -13
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
NYEX is a terminal-first Agentic-AI execution runtime built for real software delivery. It enforces identity-gated access, routes work deterministically across roles and providers, and keeps execution observable through trace-first diagnostics and safety guardrails so teams can ship faster without losing control of runtime behavior.
|
|
4
4
|
|
|
5
|
-
> **Defaults (v1.0.
|
|
5
|
+
> **Defaults (v1.0.10)**
|
|
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
|
|
|
@@ -72,12 +72,15 @@ You can change models/providers via:
|
|
|
72
72
|
|
|
73
73
|
If no providers are connected after NYEX login, the onboarding flow will prompt you to connect one.
|
|
74
74
|
|
|
75
|
-
### NYEX 1.0.
|
|
76
|
-
NYEX 1.0.
|
|
77
|
-
|
|
75
|
+
### NYEX 1.0.10
|
|
76
|
+
NYEX 1.0.10 is a hotfix release focused on trust and integrity surfaces after 1.0.9:
|
|
77
|
+
- summary rendering integrity
|
|
78
|
+
- visible-but-muted silenced output
|
|
79
|
+
- footer RoleHits reconciliation from canonical trace attempts
|
|
80
|
+
- improved `/trace` readability
|
|
78
81
|
|
|
79
82
|
### Version
|
|
80
|
-
- Package: `@nyex/nyex@1.0.
|
|
83
|
+
- Package: `@nyex/nyex@1.0.10`
|
|
81
84
|
|
|
82
85
|
### Core Features
|
|
83
86
|
- Deterministic multi-role orchestration (`primary`, `planner`, `tool_exec`, `summarizer`, `validator`).
|
|
@@ -93,14 +96,16 @@ This is a Tool OS foundation release, not a complete Tool OS.
|
|
|
93
96
|
- Refresh-token-backed auth/session reliability with silent refresh on startup/resume.
|
|
94
97
|
- Strict Cloud Mode defaults with deterministic fallback behavior and explicit local-mode opt-in.
|
|
95
98
|
|
|
96
|
-
### Recent updates
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
99
|
+
### Recent updates
|
|
100
|
+
- 1.0.10 hotfix integrity pass:
|
|
101
|
+
- summary surface first-line/clipping fixes
|
|
102
|
+
- muted-but-visible silenced command output
|
|
103
|
+
- footer RoleHits sync from canonical trace attempts
|
|
104
|
+
- `/trace` surface readability cleanup
|
|
105
|
+
- 1.0.9 foundation:
|
|
106
|
+
- canonical tool descriptors + normalized lifecycle/result/error contracts
|
|
107
|
+
- descriptor-driven permission tightening and clear `permission_denied` outcomes
|
|
108
|
+
- tool discovery (`/tools`, `/tools show <tool_id>`) and clearer tool outcome rendering
|
|
104
109
|
|
|
105
110
|
---
|
|
106
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nyex/nyex",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
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.
|
|
21
|
+
"@nyex/nyex-win32-x64-msvc": "1.0.10"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">=18"
|