nexarch 0.1.2 → 0.1.4
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 +1 -1
- package/dist/commands/login.js +3 -1
- package/dist/commands/setup.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ npx nexarch setup
|
|
|
17
17
|
| `nexarch logout` | Remove local credentials |
|
|
18
18
|
| `nexarch status` | Check connection and show architecture summary |
|
|
19
19
|
| `nexarch setup` | Auto-configure detected MCP clients |
|
|
20
|
-
| `nexarch mcp-config [client]` | Print config block for manual setup |
|
|
20
|
+
| `nexarch mcp-config [client]` | Print config block for manual setup (`claude-desktop`, `cursor`, `windsurf`) |
|
|
21
21
|
| `nexarch mcp-proxy` | stdio→HTTP bridge used internally by MCP clients |
|
|
22
22
|
|
|
23
23
|
## Requirements
|
package/dist/commands/login.js
CHANGED
|
@@ -29,7 +29,9 @@ function openBrowser(url) {
|
|
|
29
29
|
const [cmd, args] = process.platform === "darwin"
|
|
30
30
|
? ["open", [url]]
|
|
31
31
|
: process.platform === "win32"
|
|
32
|
-
|
|
32
|
+
// Avoid cmd parsing issues with '&' in query strings (e.g. OAuth state).
|
|
33
|
+
// rundll32 reliably opens the full URL without truncating parameters.
|
|
34
|
+
? ["rundll32", ["url.dll,FileProtocolHandler", url]]
|
|
33
35
|
: ["xdg-open", [url]];
|
|
34
36
|
execFile(cmd, args, (err) => {
|
|
35
37
|
if (err) {
|
package/dist/commands/setup.js
CHANGED