better-opencode-async-agents 0.5.1 → 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
|
@@ -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
|