better-opencode-async-agents 0.5.0 → 0.5.2
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.js
CHANGED
|
@@ -1122,7 +1122,7 @@ function showProgressToast(allTasks, animationFrame, client, getTasksArray) {
|
|
|
1122
1122
|
toolsStr = prevTools.length > 0 ? ` - ${prevTools.join(" > ")} > 「${lastTool}」` : ` - 「${lastTool}」`;
|
|
1123
1123
|
}
|
|
1124
1124
|
const callCount = task.progress?.toolCalls ?? 0;
|
|
1125
|
-
const callsStr = callCount > 0 ? ` [${callCount}
|
|
1125
|
+
const callsStr = callCount > 0 ? ` [\uD83D\uDD27 ${callCount}]` : "";
|
|
1126
1126
|
taskLines.push(`${spinner} [${shortId(task.sessionID)}] ${task.agent}: ${task.description} (${duration})${toolsStr}${callsStr}`);
|
|
1127
1127
|
}
|
|
1128
1128
|
const batchCompleted = batchTasks.filter((t) => t.status === "completed" || t.status === "error" || t.status === "cancelled").sort((a, b) => {
|
|
@@ -1136,7 +1136,7 @@ function showProgressToast(allTasks, animationFrame, client, getTasksArray) {
|
|
|
1136
1136
|
const duration = formatDuration2(new Date(task.startedAt), task.completedAt ? new Date(task.completedAt) : undefined);
|
|
1137
1137
|
const icon = task.status === "completed" ? "✓" : task.status === "error" ? "✗" : "⊘";
|
|
1138
1138
|
const callCount = task.progress?.toolCalls ?? 0;
|
|
1139
|
-
const callsStr = callCount > 0 ? `
|
|
1139
|
+
const callsStr = callCount > 0 ? ` \uD83D\uDD27${callCount}` : "";
|
|
1140
1140
|
taskLines.push(`${icon} [${shortId(task.sessionID)}] ${task.agent}: ${task.description} (${duration})${callsStr}`);
|
|
1141
1141
|
}
|
|
1142
1142
|
const hiddenCount = batchCompleted.length - visibleCompleted.length;
|
|
@@ -15191,5 +15191,5 @@ export {
|
|
|
15191
15191
|
plugin as default
|
|
15192
15192
|
};
|
|
15193
15193
|
|
|
15194
|
-
//# debugId=
|
|
15194
|
+
//# debugId=D64D79D1CD58EEAD64756E2164756E21
|
|
15195
15195
|
//# sourceMappingURL=index.js.map
|