pi-better-harness 0.3.0 → 0.3.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-better-background-tasks",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Pi extension for durable background shell tasks, watchers, logs, and status inspection.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -108,7 +108,7 @@ export const CLOSE_ARM_MS = 3000;
108
108
  export const DEFAULT_LOG_TAIL_ROWS = 10;
109
109
  export const LOG_TAIL_ROW_CHOICES = [10, 25] as const;
110
110
  const MAIN_LIST_FALLBACK_WIDTH = 100;
111
- const DETAIL_OVERLAY_FOOTER_ROWS = 3;
111
+ const DETAIL_OVERLAY_BOTTOM_MARGIN_ROWS = 0;
112
112
  const EVIDENCE_SECTION_ID = "__evidence__";
113
113
  const RUNNING_DOT_GLYPH = "●";
114
114
 
@@ -211,6 +211,7 @@ export function disposeBackgroundWorkNavigator(ctx?: ExtensionContext): void {
211
211
  s.mainListDeadlineScheduler = undefined;
212
212
  s.mainListWidgetInstalled = false;
213
213
  s.mainListRequestRender = undefined;
214
+ s.editorComponent = undefined;
214
215
  s.detailOverlayRows = undefined;
215
216
  s.mainListSelectedId = undefined;
216
217
  s.mainListFocused = false;
@@ -1025,7 +1026,7 @@ function buildTranscriptDetailLines(
1025
1026
  }
1026
1027
 
1027
1028
  function detailOverlayOptions() {
1028
- const marginBottom = DETAIL_OVERLAY_FOOTER_ROWS;
1029
+ const marginBottom = DETAIL_OVERLAY_BOTTOM_MARGIN_ROWS;
1029
1030
  return {
1030
1031
  anchor: "top-left" as const,
1031
1032
  width: "100%" as const,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-better-subagents",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Pi extension for detached, sandboxed subagent runs that keep the foreground session free.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -108,7 +108,7 @@ export const CLOSE_ARM_MS = 3000;
108
108
  export const DEFAULT_LOG_TAIL_ROWS = 10;
109
109
  export const LOG_TAIL_ROW_CHOICES = [10, 25] as const;
110
110
  const MAIN_LIST_FALLBACK_WIDTH = 100;
111
- const DETAIL_OVERLAY_FOOTER_ROWS = 3;
111
+ const DETAIL_OVERLAY_BOTTOM_MARGIN_ROWS = 0;
112
112
  const EVIDENCE_SECTION_ID = "__evidence__";
113
113
  const RUNNING_DOT_GLYPH = "●";
114
114
 
@@ -211,6 +211,7 @@ export function disposeBackgroundWorkNavigator(ctx?: ExtensionContext): void {
211
211
  s.mainListDeadlineScheduler = undefined;
212
212
  s.mainListWidgetInstalled = false;
213
213
  s.mainListRequestRender = undefined;
214
+ s.editorComponent = undefined;
214
215
  s.detailOverlayRows = undefined;
215
216
  s.mainListSelectedId = undefined;
216
217
  s.mainListFocused = false;
@@ -1025,7 +1026,7 @@ function buildTranscriptDetailLines(
1025
1026
  }
1026
1027
 
1027
1028
  function detailOverlayOptions() {
1028
- const marginBottom = DETAIL_OVERLAY_FOOTER_ROWS;
1029
+ const marginBottom = DETAIL_OVERLAY_BOTTOM_MARGIN_ROWS;
1029
1030
  return {
1030
1031
  anchor: "top-left" as const,
1031
1032
  width: "100%" as const,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-better-harness",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Pi extension bundle for an opt-in foreground write sandbox, subagents, durable background tasks, and goal tracking.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -45,10 +45,10 @@
45
45
  "test": "node --test test/*.test.mjs"
46
46
  },
47
47
  "dependencies": {
48
- "pi-better-background-tasks": "0.2.8",
48
+ "pi-better-background-tasks": "0.2.9",
49
49
  "pi-better-goal": "0.2.0",
50
50
  "pi-better-sandbox": "0.3.0",
51
- "pi-better-subagents": "0.1.23"
51
+ "pi-better-subagents": "0.1.24"
52
52
  },
53
53
  "bundledDependencies": [
54
54
  "pi-better-background-tasks",