@alexeiled/pi-fusion 0.1.0 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexeiled/pi-fusion",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Subagent-native multi-model deliberation for Pi",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -24,6 +24,7 @@ export interface PanelSpawnParams {
24
24
  context: "fresh" | "fork";
25
25
  output: true;
26
26
  outputMode: "inline";
27
+ acceptance: "none";
27
28
  timeoutMs?: number;
28
29
  }
29
30
 
@@ -111,6 +112,7 @@ export function buildPanelSpawnParams(
111
112
  context: profile.context ?? "fresh",
112
113
  output: true,
113
114
  outputMode: "inline",
115
+ acceptance: "none",
114
116
  ...(profile.timeoutMs !== undefined
115
117
  ? { timeoutMs: profile.timeoutMs }
116
118
  : {}),