@leo-alvarenga/pi-mini-subagents 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 +1 -1
- package/src/tool.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leo-alvarenga/pi-mini-subagents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Transient subagents for Pi: mini_subagent tool (single + parallel), /subagents command, and a live TUI panel",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "github.com/leo-alvarenga/pi-mono",
|
package/src/tool.ts
CHANGED
|
@@ -135,7 +135,7 @@ export function registerMiniSubagentTool(
|
|
|
135
135
|
);
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
-
//
|
|
138
|
+
// single mode
|
|
139
139
|
if (hasSingle) {
|
|
140
140
|
const record = store.start(
|
|
141
141
|
ctx,
|
|
@@ -184,7 +184,7 @@ export function registerMiniSubagentTool(
|
|
|
184
184
|
};
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
//
|
|
187
|
+
// parallel mode
|
|
188
188
|
const tasks = params.tasks!;
|
|
189
189
|
if (tasks.length > MAX_PARALLEL_TASKS) {
|
|
190
190
|
return errorResult(
|