From 029a04c43b8308c3c9c1fc9138db4afd34bfb5bb Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 5 Dec 2025 02:38:00 +0100 Subject: [PATCH] fix(mom): clarify attach tool only works with /workspace/ files --- packages/mom/src/tools/attach.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/mom/src/tools/attach.ts b/packages/mom/src/tools/attach.ts index 073fc9c5..174faf02 100644 --- a/packages/mom/src/tools/attach.ts +++ b/packages/mom/src/tools/attach.ts @@ -18,7 +18,8 @@ const attachSchema = Type.Object({ export const attachTool: AgentTool = { name: "attach", label: "attach", - description: "Attach a file to your response. Use this to share files, images, or documents with the user.", + description: + "Attach a file to your response. Use this to share files, images, or documents with the user. Only files from /workspace/ can be attached.", parameters: attachSchema, execute: async ( _toolCallId: string,