aisnitch 0.2.25 → 0.2.26
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 +14 -8
- package/dist/cli/index.cjs +208 -163
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +208 -163
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +8 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -9156,6 +9156,7 @@ var AutoUpdateConfigSchema = import_zod3.z.strictObject({
|
|
|
9156
9156
|
var ConfigSchema = import_zod3.z.strictObject({
|
|
9157
9157
|
wsPort: import_zod3.z.number().int().min(1024).max(65535).default(4820),
|
|
9158
9158
|
httpPort: import_zod3.z.number().int().min(1024).max(65535).default(4821),
|
|
9159
|
+
dashboardPort: import_zod3.z.number().int().min(1024).max(65535).default(5174),
|
|
9159
9160
|
/**
|
|
9160
9161
|
* 📖 This is intentionally a partial record because most users will only
|
|
9161
9162
|
* override a couple of adapters instead of all supported tools at once.
|
|
@@ -9174,6 +9175,7 @@ var ConfigSchema = import_zod3.z.strictObject({
|
|
|
9174
9175
|
var DEFAULT_CONFIG = {
|
|
9175
9176
|
wsPort: 4820,
|
|
9176
9177
|
httpPort: 4821,
|
|
9178
|
+
dashboardPort: 5174,
|
|
9177
9179
|
adapters: {},
|
|
9178
9180
|
autoUpdate: {
|
|
9179
9181
|
enabled: true,
|
|
@@ -9476,7 +9478,7 @@ var import_ws = require("ws");
|
|
|
9476
9478
|
|
|
9477
9479
|
// src/package-info.ts
|
|
9478
9480
|
var AISNITCH_PACKAGE_NAME = "aisnitch";
|
|
9479
|
-
var AISNITCH_VERSION = "0.2.
|
|
9481
|
+
var AISNITCH_VERSION = "0.2.26";
|
|
9480
9482
|
var AISNITCH_DESCRIPTION = "Universal bridge for AI coding tool activity \u2014 capture, normalize, stream.";
|
|
9481
9483
|
function getPackageScaffoldInfo() {
|
|
9482
9484
|
return {
|
|
@@ -11619,6 +11621,10 @@ function Header({
|
|
|
11619
11621
|
] }) }),
|
|
11620
11622
|
daemon ? /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
|
|
11621
11623
|
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_ink6.Text, { color: connected ? TUI_THEME.success : TUI_THEME.warning, children: connected ? `\u25CF ${connectionLabel}` : `\u25CB ${connectionLabel}` }),
|
|
11624
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_ink6.Text, { color: TUI_THEME.success, children: [
|
|
11625
|
+
"Web ",
|
|
11626
|
+
daemon.dashboardUrl
|
|
11627
|
+
] }),
|
|
11622
11628
|
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_ink6.Text, { color: TUI_THEME.muted, children: [
|
|
11623
11629
|
"WS ",
|
|
11624
11630
|
daemon.wsUrl
|
|
@@ -11811,7 +11817,7 @@ function StatusBar({
|
|
|
11811
11817
|
}) {
|
|
11812
11818
|
const streamState = streamFrozen ? `Frozen +${pendingEventCount}` : latestEvent?.type ?? "Live";
|
|
11813
11819
|
const focusLabel = focusPanel === "events" ? "events" : viewMode === "full-data" ? "inspector" : "sessions";
|
|
11814
|
-
const daemonLabel = daemon === void 0 ? null : daemon.busyAction ? `Daemon ${daemon.busyAction}` : daemon.active ? `Daemon active \xB7 ${daemon.
|
|
11820
|
+
const daemonLabel = daemon === void 0 ? null : daemon.busyAction ? `Daemon ${daemon.busyAction}` : daemon.active ? `Daemon active \xB7 Web ${daemon.dashboardUrl}` : `Daemon not active \xB7 Web ${daemon.dashboardUrl}`;
|
|
11815
11821
|
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
11816
11822
|
import_ink10.Box,
|
|
11817
11823
|
{
|