codex-lens 0.1.3 → 0.1.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.
package/dist/cli.js CHANGED
@@ -54,7 +54,10 @@ async function main() {
54
54
  const aggregator = createAggregator(codexBinary, projectRoot);
55
55
  await aggregator.start(PROXY_PORT);
56
56
  logger.info("All services started");
57
- logger.info("Open http://localhost:5173 in browser");
57
+ spawn("cmd", ["/c", "start", "http://localhost:5174"], {
58
+ detached: true,
59
+ stdio: "ignore"
60
+ });
58
61
  logger.info("Press Ctrl+C to stop");
59
62
  process.on("SIGINT", () => {
60
63
  logger.info("Received SIGINT, shutting down...");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-lens",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "A visualization tool for Codex that monitors API requests and file system changes with task snapshot rollback",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/cli.js CHANGED
@@ -70,7 +70,12 @@ async function main() {
70
70
  await aggregator.start(PROXY_PORT);
71
71
 
72
72
  logger.info('All services started');
73
- logger.info('Open http://localhost:5173 in browser');
73
+
74
+ spawn('cmd', ['/c', 'start', 'http://localhost:5174'], {
75
+ detached: true,
76
+ stdio: 'ignore',
77
+ });
78
+
74
79
  logger.info('Press Ctrl+C to stop');
75
80
 
76
81
  process.on('SIGINT', () => {