pi-better-subagents 0.1.28 → 0.1.30
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 +1 -1
- package/package.json +1 -1
- package/shared-navigator.ts +4 -1
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:
|
|
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
package/shared-navigator.ts
CHANGED
|
@@ -179,7 +179,10 @@ export function ensureBackgroundWorkNavigator(ctx: ExtensionContext, deps: HostD
|
|
|
179
179
|
if (!isNavigatorUiAvailable(ctx)) return;
|
|
180
180
|
const s = state();
|
|
181
181
|
s.uiCtx = ctx;
|
|
182
|
-
s.deps =
|
|
182
|
+
s.deps = {
|
|
183
|
+
...deps,
|
|
184
|
+
createTranscriptComponent: deps.createTranscriptComponent ?? s.deps?.createTranscriptComponent,
|
|
185
|
+
};
|
|
183
186
|
try { (ctx.ui as any).setWidget?.(MAIN_LIST_WIDGET_KEY, undefined); } catch { /* ignore */ }
|
|
184
187
|
s.mainListWidgetInstalled = false;
|
|
185
188
|
s.mainListRequestRender = undefined;
|