pi-subagents-j0k3r 1.2.0 → 1.2.1

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
@@ -1,6 +1,11 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
3
+ ## 1.2.1 - 2026-07-12
4
+
5
+ ### Fixed
6
+ - Stabilized `/subagents` rendering with a full-screen overlay that prevents parent-chat flicker and reserves space for the panel border.
7
+
8
+ ## 1.2.0 - 2026-07-12
4
9
 
5
10
  ### Added
6
11
  - Added opt-in render diagnostics with bounded JSONL logging for subagent UI and completion rendering.
package/index.ts CHANGED
@@ -507,7 +507,7 @@ export default function subagentsExtension(pi: any): void {
507
507
  showImages: ctx?.showImages,
508
508
  imageWidthCells: ctx?.imageWidthCells,
509
509
  },
510
- () => Math.max(12, process.stdout.rows || 42),
510
+ () => Math.max(12, (process.stdout.rows || 42) - 2),
511
511
  (id: string) => manager.getTask(id, cwd),
512
512
  selectedTaskId,
513
513
  (id: string) => manager.cancel(id, 'cancelled from subagents detail view'),
@@ -568,7 +568,7 @@ export default function subagentsExtension(pi: any): void {
568
568
  },
569
569
  };
570
570
  },
571
- undefined,
571
+ { overlay: true, overlayOptions: { anchor: 'top-left', width: '100%', maxHeight: '100%', margin: 0 } },
572
572
  );
573
573
  } finally {
574
574
  activePanelCancelSelected = undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-subagents-j0k3r",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Installable Pi package that adds markdown-defined subagents, delegated task tools, history, and model profiles.",
5
5
  "type": "module",
6
6
  "license": "MIT",