pi-subagents 0.24.1 → 0.24.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.24.2] - 2026-05-10
6
+
7
+ ### Fixed
8
+ - Show the `Ctrl+O` live-detail affordance for running single async subagent widgets when step details are available, while keeping the generic activity fallback before step status arrives.
9
+
5
10
  ## [0.24.1] - 2026-05-10
6
11
 
7
12
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-subagents",
3
- "version": "0.24.1",
3
+ "version": "0.24.2",
4
4
  "description": "Pi extension for delegating tasks to subagents with chains, parallel execution, and TUI clarification",
5
5
  "author": "Nico Bailon",
6
6
  "license": "MIT",
package/src/tui/render.ts CHANGED
@@ -627,7 +627,6 @@ function foregroundStyleWidgetStepLines(
627
627
 
628
628
  function foregroundStyleWidgetDetails(job: AsyncJobState, theme: Theme, expanded: boolean, width: number): string[] {
629
629
  if (!job.steps?.length) return [` ${theme.fg("dim", `⎿ ${widgetActivity(job)}`)}`];
630
- if (job.mode !== "parallel" && job.mode !== "chain") return [` ${theme.fg("dim", `⎿ ${widgetActivity(job)}`)}`];
631
630
  if (job.mode === "chain" && !job.activeParallelGroup && job.parallelGroups?.length) return widgetChainDetails(job, theme, expanded, width);
632
631
  const total = job.stepsTotal ?? job.steps.length;
633
632
  const itemTitle = job.mode === "parallel" || job.activeParallelGroup ? "Agent" : "Step";