@tritard/waterbrother 0.8.16 → 0.8.17

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tritard/waterbrother",
3
- "version": "0.8.16",
3
+ "version": "0.8.17",
4
4
  "description": "Waterbrother: Grok-powered coding CLI with local tools, sessions, operator modes, and approval controls",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -3427,12 +3427,12 @@ async function runTextTurnInteractive({
3427
3427
  const idleMs = Date.now() - lastProgressAt;
3428
3428
  if (!heartbeatFired && idleMs >= 2000) {
3429
3429
  heartbeatFired = true;
3430
- spinner.setLabel(() => `• Working (${formatElapsedShort(Date.now() - turnSummary.startedAt)} • esc to interrupt)`);
3430
+ spinner.setLabel(() => `Working (${formatElapsedShort(Date.now() - turnSummary.startedAt)} • esc to interrupt)`);
3431
3431
  printLiveTrace(`state=${currentState}...`, context.runtime.traceMode, { verboseOnly: true });
3432
3432
  }
3433
3433
  if (!stalledNotified && idleMs >= 8000) {
3434
3434
  stalledNotified = true;
3435
- spinner.setLabel(() => `• Working (${formatElapsedShort(Date.now() - turnSummary.startedAt)} • esc to interrupt)`);
3435
+ spinner.setLabel(() => `Working (${formatElapsedShort(Date.now() - turnSummary.startedAt)} • esc to interrupt)`);
3436
3436
  }
3437
3437
  }, 500);
3438
3438
 
@@ -5288,7 +5288,7 @@ async function promptLoop(agent, session, context) {
5288
5288
  const idleMs = Date.now() - lastProgressAt;
5289
5289
  if (!stalledNotified && idleMs >= 8000) {
5290
5290
  stalledNotified = true;
5291
- spinner.setLabel(() => `• Working (${formatElapsedShort(Date.now() - turnSummary.startedAt)} • esc to interrupt)`);
5291
+ spinner.setLabel(() => `Working (${formatElapsedShort(Date.now() - turnSummary.startedAt)} • esc to interrupt)`);
5292
5292
  }
5293
5293
  }, 500);
5294
5294