aisnitch 0.2.5 → 0.2.13
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/cli/index.cjs +152 -26
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +152 -26
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +5 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -1717,7 +1717,7 @@ declare const AISNITCH_PACKAGE_NAME = "aisnitch";
|
|
|
1717
1717
|
* 📖 The published version is kept in source so runtime entrypoints can expose
|
|
1718
1718
|
* stable metadata without reading package.json at runtime.
|
|
1719
1719
|
*/
|
|
1720
|
-
declare const AISNITCH_VERSION = "0.2.
|
|
1720
|
+
declare const AISNITCH_VERSION = "0.2.12";
|
|
1721
1721
|
/**
|
|
1722
1722
|
* 📖 The shared description stays close to the package identity so commander
|
|
1723
1723
|
* help output and future docs surfaces stay aligned.
|
package/dist/index.d.ts
CHANGED
|
@@ -1717,7 +1717,7 @@ declare const AISNITCH_PACKAGE_NAME = "aisnitch";
|
|
|
1717
1717
|
* 📖 The published version is kept in source so runtime entrypoints can expose
|
|
1718
1718
|
* stable metadata without reading package.json at runtime.
|
|
1719
1719
|
*/
|
|
1720
|
-
declare const AISNITCH_VERSION = "0.2.
|
|
1720
|
+
declare const AISNITCH_VERSION = "0.2.12";
|
|
1721
1721
|
/**
|
|
1722
1722
|
* 📖 The shared description stays close to the package identity so commander
|
|
1723
1723
|
* help output and future docs surfaces stay aligned.
|
package/dist/index.js
CHANGED
|
@@ -6652,7 +6652,7 @@ import { WebSocket, WebSocketServer } from "ws";
|
|
|
6652
6652
|
|
|
6653
6653
|
// src/package-info.ts
|
|
6654
6654
|
var AISNITCH_PACKAGE_NAME = "aisnitch";
|
|
6655
|
-
var AISNITCH_VERSION = "0.2.
|
|
6655
|
+
var AISNITCH_VERSION = "0.2.12";
|
|
6656
6656
|
var AISNITCH_DESCRIPTION = "Universal bridge for AI coding tool activity \u2014 capture, normalize, stream.";
|
|
6657
6657
|
function getPackageScaffoldInfo() {
|
|
6658
6658
|
return {
|
|
@@ -7516,6 +7516,7 @@ var Pipeline = class {
|
|
|
7516
7516
|
|
|
7517
7517
|
// src/tui/index.tsx
|
|
7518
7518
|
import { render } from "ink";
|
|
7519
|
+
import { withFullScreen } from "fullscreen-ink";
|
|
7519
7520
|
import WebSocket4 from "ws";
|
|
7520
7521
|
|
|
7521
7522
|
// src/tui/App.tsx
|
|
@@ -9485,7 +9486,7 @@ function isWelcomeMessage(payload) {
|
|
|
9485
9486
|
// src/tui/index.tsx
|
|
9486
9487
|
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
9487
9488
|
async function renderForegroundTui(options) {
|
|
9488
|
-
const
|
|
9489
|
+
const ink = withFullScreen(
|
|
9489
9490
|
/* @__PURE__ */ jsx13(
|
|
9490
9491
|
App,
|
|
9491
9492
|
{
|
|
@@ -9507,7 +9508,8 @@ async function renderForegroundTui(options) {
|
|
|
9507
9508
|
}
|
|
9508
9509
|
)
|
|
9509
9510
|
);
|
|
9510
|
-
await
|
|
9511
|
+
await ink.start();
|
|
9512
|
+
await ink.waitUntilExit;
|
|
9511
9513
|
}
|
|
9512
9514
|
async function renderAttachedTui(options) {
|
|
9513
9515
|
const socket = new WebSocket4(options.wsUrl);
|