@mjasnikovs/pi-task 0.18.8 → 0.18.9

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.
@@ -774,7 +774,12 @@ export async function runAutoLoop(ctx, cwd, id, deps) {
774
774
  + 'Resolve them (git status), then /task-auto-resume.', 'error');
775
775
  return;
776
776
  }
777
- active.ui.notify(`${id}: task ${next.index + 1}/${entries.length} — ${next.title}`, 'info');
777
+ // Progress line. `ctx.ui.notify` is terminal-only, so a remote viewer
778
+ // never learns how far the run has gotten — mirror it into the session
779
+ // view too (transient toast, same as announceDone's info path).
780
+ const progressMsg = `${id}: task ${next.index + 1}/${entries.length} — ${next.title}`;
781
+ active.ui.notify(progressMsg, 'info');
782
+ publishLifecycleNotice(progressMsg, 'info');
778
783
  // If this entry already has a stamped inner id, it was started in a
779
784
  // previous (interrupted) run — resume it from its saved phase rather
780
785
  // than spawning a fresh task. But the stamped inner file can be gone
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mjasnikovs/pi-task",
3
- "version": "0.18.8",
3
+ "version": "0.18.9",
4
4
  "description": "Deterministic task planning and spec-orchestration for local models — crash-safe /task pipelines with verify/enforce gates, a real-time remote web view, and web/docs/fetch/worker subagent tools.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",