pi-better-subagents 0.1.27 → 0.1.28
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/package.json +1 -1
- package/shared-navigator.ts +19 -7
package/package.json
CHANGED
package/shared-navigator.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
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));
|