@leing2021/super-pi 0.23.12 → 0.23.13
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.
|
@@ -210,7 +210,7 @@ const parallelSubagentParams = Type.Object({
|
|
|
210
210
|
Type.Array(parallelSubagentTaskSchema),
|
|
211
211
|
Type.String({ description: "JSON stringified array of tasks" }),
|
|
212
212
|
], { description: "Array of independent tasks to run concurrently (can be a JSON string)" }),
|
|
213
|
-
inheritSkills: Type.Optional(Type.Boolean({ description: "Whether subagents should inherit skills. Default:
|
|
213
|
+
inheritSkills: Type.Optional(Type.Boolean({ description: "Whether subagents should inherit skills. Default: true" })),
|
|
214
214
|
})
|
|
215
215
|
|
|
216
216
|
const sessionCheckpointParams = Type.Object({
|
|
@@ -71,7 +71,7 @@ export interface ParallelSubagentTask {
|
|
|
71
71
|
|
|
72
72
|
export interface ParallelSubagentInput {
|
|
73
73
|
tasks: ParallelSubagentTask[]
|
|
74
|
-
/** Whether subagents should inherit skills. Default:
|
|
74
|
+
/** Whether subagents should inherit skills. Default: true */
|
|
75
75
|
inheritSkills?: boolean
|
|
76
76
|
}
|
|
77
77
|
|
|
@@ -166,7 +166,7 @@ function buildParallelExecOptions(inheritSkills?: boolean): { extraFlags?: strin
|
|
|
166
166
|
const flags: string[] = []
|
|
167
167
|
const env: Record<string, string> = {}
|
|
168
168
|
|
|
169
|
-
if (inheritSkills
|
|
169
|
+
if (inheritSkills === false) {
|
|
170
170
|
flags.push("--no-skills")
|
|
171
171
|
}
|
|
172
172
|
|