We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dbcd79 commit 4f21757Copy full SHA for 4f21757
1 file changed
packages/opencode/src/tool/task.ts
@@ -37,9 +37,9 @@ export const TaskTool = Tool.define("task", async (ctx) => {
37
38
const description = DESCRIPTION.replace(
39
"{agents}",
40
- list.map((a) => `- ${a.name}: ${a.description ?? "This subagent should only be called manually by the user."}`).join(
41
- "\n",
42
- ),
+ list
+ .map((a) => `- ${a.name}: ${a.description ?? "This subagent should only be called manually by the user."}`)
+ .join("\n"),
43
)
44
return {
45
description,
0 commit comments