@skydiveai/pi-extensions 0.1.0-beta.2182 → 0.1.0-beta.2183
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/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4244,7 +4244,7 @@ function buildTool(messageId) {
|
|
|
4244
4244
|
const lines = taskIds.map((id, i) => {
|
|
4245
4245
|
const label = spawnTasks[i]?.title ?? spawnTasks[i]?.task ?? "";
|
|
4246
4246
|
const conv = convByTask.get(id);
|
|
4247
|
-
return `- ${
|
|
4247
|
+
return conv ? `- conversation ${conv}: ${label} (taskId ${id})` : `- ${label} (taskId ${id}, conversation id unavailable — cannot peer this run)`;
|
|
4248
4248
|
}).join("\n");
|
|
4249
4249
|
const peerHint = spawned.tasks.length ? "\nEach subagent runs on its own conversation (id shown per task above). To SEE what one is doing while it runs, read it with `platform conversations show <conversationId>`. To STEER one mid-run — add context, correct course, answer a question — post to its conversation with `platform conversations post <conversationId> --message \"...\"`; it lands as a live steer if the subagent is still running, or as its next turn if it has gone idle." : "";
|
|
4250
4250
|
return {
|