pi-better-subagents 0.1.27 → 0.1.29

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/index.ts CHANGED
@@ -128,7 +128,7 @@ const SUBAGENT_TOOLS = [
128
128
  ];
129
129
 
130
130
  const SUBAGENT_ORCHESTRATION_GUIDELINES = [
131
- "When a structured plan is active, keep it as the parent-owned coordinator ledger: delegate bounded independent work, continue unblocked foreground work, and update the plan after integrating each result or failure.",
131
+ "When a structured plan is active, keep it as the parent-owned coordinator ledger: mark distinct delegated and foreground deliverables in_progress concurrently, continue unblocked foreground work, and update the plan after integrating each result or failure.",
132
132
  "Do not treat launching a subagent as completion of the parent milestone; relevant terminal results must be inspected and integrated before verification or completion.",
133
133
  ];
134
134
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-better-subagents",
3
- "version": "0.1.27",
3
+ "version": "0.1.29",
4
4
  "description": "Pi extension for detached, sandboxed subagent runs that keep the foreground session free.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -918,7 +918,7 @@ function createOverlayComponent(
918
918
  width,
919
919
  deps.truncate,
920
920
  fg,
921
- { minRows: detailRows, bottomFooter: false, logTailRows },
921
+ { minRows: detailRows, maxRows: detailRows, bottomFooter: false, logTailRows },
922
922
  );
923
923
  } else {
924
924
  transcriptDetail = null;
@@ -1003,21 +1003,33 @@ function buildTranscriptDetailLines(
1003
1003
  width: number,
1004
1004
  truncate: (s: string, width: number) => string,
1005
1005
  fg: (color: string, value: string) => string,
1006
- options: { minRows?: number; bottomFooter?: boolean; logTailRows?: number } = {},
1006
+ options: { minRows?: number; maxRows?: number; bottomFooter?: boolean; logTailRows?: number } = {},
1007
1007
  ): string[] {
1008
1008
  const actions = [...(detail.footerActions ?? ["x close"]), "Esc close"].join(" · ");
1009
1009
  const tailRows = options.logTailRows ?? DEFAULT_LOG_TAIL_ROWS;
1010
- const shownTranscriptLines = transcriptLines.length ? transcriptLines.slice(-tailRows) : [" (no transcript yet)"];
1010
+ let shownTranscriptLines = transcriptLines.length ? transcriptLines.slice(-tailRows) : [" (no transcript yet)"];
1011
1011
  const lines: string[] = [
1012
1012
  fg("accent", rule(detail.title, width)),
1013
1013
  dim(` ← main · ${actions}`, fg),
1014
1014
  "",
1015
1015
  ` status ${fg(toneColor(detail.statusTone, detail.status), detail.status)}`,
1016
1016
  ];
1017
- if (detail.subtitle) lines.push(` summary ${detail.subtitle}`);
1018
- for (const item of detail.metadata) lines.push(` ${item.label.padEnd(8, " ").slice(0, 8)} ${item.value}`);
1019
- lines.push("", dim(section(`transcript · latest ${tailRows} rows`, width), fg));
1020
- if (detail.transcriptDiagnostic) lines.push(` ${dim(detail.transcriptDiagnostic, fg)}`);
1017
+ const optionalMetadata = [
1018
+ ...(detail.subtitle ? [` summary ${detail.subtitle}`] : []),
1019
+ ...detail.metadata.map((item) => ` ${item.label.padEnd(8, " ").slice(0, 8)} ${item.value}`),
1020
+ ];
1021
+ const transcriptHeader = ["", dim(section(`transcript · latest ${tailRows} rows`, width), fg)];
1022
+ if (detail.transcriptDiagnostic) transcriptHeader.push(` ${dim(detail.transcriptDiagnostic, fg)}`);
1023
+ if (options.maxRows !== undefined) {
1024
+ const fixedRows = lines.length + transcriptHeader.length + 1;
1025
+ const transcriptBudget = Math.max(1, options.maxRows - fixedRows);
1026
+ shownTranscriptLines = shownTranscriptLines.slice(-transcriptBudget);
1027
+ const metadataBudget = Math.max(0, options.maxRows - fixedRows - shownTranscriptLines.length);
1028
+ lines.push(...optionalMetadata.slice(0, metadataBudget));
1029
+ } else {
1030
+ lines.push(...optionalMetadata);
1031
+ }
1032
+ lines.push(...transcriptHeader);
1021
1033
  lines.push(...shownTranscriptLines);
1022
1034
  lines.push("");
1023
1035
  if (options.bottomFooter === false) return lines.map((line) => safeTruncate(line, width, truncate));