oioxo-mcp 0.1.0 → 0.1.1
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/dist/cli/login.js +4 -2
- package/package.json +1 -1
package/dist/cli/login.js
CHANGED
|
@@ -29,9 +29,11 @@ const SUCCESS_HTML = `<!doctype html><html><head><meta charset="utf-8"><title>OI
|
|
|
29
29
|
</div></body></html>`;
|
|
30
30
|
function openBrowser(url) {
|
|
31
31
|
const platform = process.platform;
|
|
32
|
-
// `start`
|
|
32
|
+
// Windows: NOT `cmd /c start` — cmd treats `&` as a command separator and
|
|
33
|
+
// truncates the URL at the first query param (a real user hit this: the
|
|
34
|
+
// page opened without the state nonce). explorer.exe passes it verbatim.
|
|
33
35
|
if (platform === 'win32')
|
|
34
|
-
spawn('
|
|
36
|
+
spawn('explorer.exe', [url], { detached: true, stdio: 'ignore' }).unref();
|
|
35
37
|
else if (platform === 'darwin')
|
|
36
38
|
spawn('open', [url], { detached: true, stdio: 'ignore' }).unref();
|
|
37
39
|
else
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oioxo-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "OIOXO context engine for AI coding agents — feeds Claude Code, Copilot, Cursor and any MCP-capable agent the minimal relevant slice of your codebase, on-device, so your tokens go further.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|