aisnitch 0.2.0 → 0.2.2

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/index.d.cts CHANGED
@@ -1705,7 +1705,7 @@ declare const AISNITCH_PACKAGE_NAME = "aisnitch";
1705
1705
  * 📖 The published version is kept in source so runtime entrypoints can expose
1706
1706
  * stable metadata without reading package.json at runtime.
1707
1707
  */
1708
- declare const AISNITCH_VERSION = "0.2.0";
1708
+ declare const AISNITCH_VERSION = "0.2.2";
1709
1709
  /**
1710
1710
  * 📖 The shared description stays close to the package identity so commander
1711
1711
  * help output and future docs surfaces stay aligned.
package/dist/index.d.ts CHANGED
@@ -1705,7 +1705,7 @@ declare const AISNITCH_PACKAGE_NAME = "aisnitch";
1705
1705
  * 📖 The published version is kept in source so runtime entrypoints can expose
1706
1706
  * stable metadata without reading package.json at runtime.
1707
1707
  */
1708
- declare const AISNITCH_VERSION = "0.2.0";
1708
+ declare const AISNITCH_VERSION = "0.2.2";
1709
1709
  /**
1710
1710
  * 📖 The shared description stays close to the package identity so commander
1711
1711
  * help output and future docs surfaces stay aligned.
package/dist/index.js CHANGED
@@ -6405,7 +6405,7 @@ async function canBindPort(port, host) {
6405
6405
  }
6406
6406
  async function resolveAvailablePort(requestedPort, options = {}) {
6407
6407
  const host = options.host ?? "127.0.0.1";
6408
- const maxAttempts = options.maxAttempts ?? 10;
6408
+ const maxAttempts = options.maxAttempts ?? 100;
6409
6409
  for (let attempt = 0; attempt < maxAttempts; attempt += 1) {
6410
6410
  const candidatePort = requestedPort + attempt;
6411
6411
  const available = await canBindPort(candidatePort, host);
@@ -6608,7 +6608,7 @@ import { WebSocket, WebSocketServer } from "ws";
6608
6608
 
6609
6609
  // src/package-info.ts
6610
6610
  var AISNITCH_PACKAGE_NAME = "aisnitch";
6611
- var AISNITCH_VERSION = "0.2.0";
6611
+ var AISNITCH_VERSION = "0.2.2";
6612
6612
  var AISNITCH_DESCRIPTION = "Universal bridge for AI coding tool activity \u2014 capture, normalize, stream.";
6613
6613
  function getPackageScaffoldInfo() {
6614
6614
  return {