openzoo 0.50.0 → 0.50.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.
Files changed (2) hide show
  1. package/lib/proxy.js +1 -8
  2. package/package.json +1 -1
package/lib/proxy.js CHANGED
@@ -794,14 +794,7 @@ export async function startProxy({ silent = false, requireToken = null, sessionM
794
794
  );
795
795
  console.log(`openzoo v${version} -> ${config.apiBase}`);
796
796
  console.log(`listening on http://localhost:${config.port}/v1`);
797
- // LAND THEM IN THE APP. Never in CI/agents (no TTY), never twice, opt out
798
- // with OPENZOO_NO_OPEN=1.
799
- if (process.stdout.isTTY && !process.env.OPENZOO_NO_OPEN) {
800
- const opener = process.platform === 'darwin' ? 'open'
801
- : process.platform === 'win32' ? 'start' : 'xdg-open';
802
- import('node:child_process').then(({ exec }) =>
803
- exec(`${opener} http://localhost:${config.port}/`, () => {}));
804
- }
797
+ // The chat GUI still lives at GET / but it is never auto-opened.
805
798
  console.log('');
806
799
  if (client.walletCreated) console.log(`new burner wallet created at ${client.walletPath} (chmod 600)`);
807
800
  console.log(`wallet (fund me) · solana: ${client.address}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.50.0",
3
+ "version": "0.50.1",
4
4
  "description": "Local x402-paying proxy + MCP server for openzoo.fun — point any OpenAI-compatible harness (Cursor, Claude Code, aider, SDKs) at localhost and it pays per call from a local burner wallet. Solana and Base rails live; Robinhood experimental.",
5
5
  "license": "MIT",
6
6
  "type": "module",