@rubytech/taskmaster 1.0.46 → 1.0.50

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.
@@ -6,7 +6,7 @@
6
6
  <title>Taskmaster Control</title>
7
7
  <meta name="color-scheme" content="dark light" />
8
8
  <link rel="icon" type="image/png" href="./favicon.png" />
9
- <script type="module" crossorigin src="./assets/index-BGyGg5oT.js"></script>
9
+ <script type="module" crossorigin src="./assets/index-DLaLQGyo.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="./assets/index-CBnatXwP.css">
11
11
  </head>
12
12
  <body>
@@ -23,7 +23,12 @@ export const browserScreencastHandlers = {
23
23
  // Remove old listener
24
24
  removeScreencastFrameListener("gateway");
25
25
  // Register frame listener that broadcasts to UI clients
26
+ let gatewayFrameCount = 0;
26
27
  registerScreencastFrameListener("gateway", (frame) => {
28
+ gatewayFrameCount++;
29
+ if (gatewayFrameCount <= 3 || gatewayFrameCount % 100 === 0) {
30
+ log.info(`broadcasting frame #${gatewayFrameCount} dataLen=${frame.data?.length ?? 0}`);
31
+ }
27
32
  context.broadcast("browser.screencast.frame", frame, {
28
33
  dropIfSlow: true,
29
34
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/taskmaster",
3
- "version": "1.0.46",
3
+ "version": "1.0.50",
4
4
  "description": "AI-powered business assistant for small businesses",
5
5
  "publishConfig": {
6
6
  "access": "public"