diff --git a/server/utils/agents/aibitat/plugins/gmail/search/gmail-get-inbox.js b/server/utils/agents/aibitat/plugins/gmail/search/gmail-get-inbox.js index 94033bbdb..7b3cd9363 100644 --- a/server/utils/agents/aibitat/plugins/gmail/search/gmail-get-inbox.js +++ b/server/utils/agents/aibitat/plugins/gmail/search/gmail-get-inbox.js @@ -88,7 +88,7 @@ module.exports.GmailGetInbox = { ) .join("\n"); - return `Found ${resultCount} email threads:\n\n${summary}\n\nUse the thread ID with gmail-read-thread to read the full conversation.`; + return `Found ${resultCount} email threads:\n\n${summary}\n\nAlways include the full thread ID in the response. Use the thread ID with gmail-read-thread to read the full conversation.`; } catch (e) { this.super.handlerProps.log( `gmail-get-inbox error: ${e.message}` diff --git a/server/utils/agents/aibitat/plugins/gmail/search/gmail-search.js b/server/utils/agents/aibitat/plugins/gmail/search/gmail-search.js index 814be79be..8c9c21de6 100644 --- a/server/utils/agents/aibitat/plugins/gmail/search/gmail-search.js +++ b/server/utils/agents/aibitat/plugins/gmail/search/gmail-search.js @@ -107,7 +107,7 @@ module.exports.GmailSearch = { ) .join("\n"); - return `Found ${resultCount} email threads:\n\n${summary}\n\nUse the thread ID with gmail-read-thread to read the full conversation.`; + return `Found ${resultCount} email threads:\n\n${summary}\n\nAlways include the full thread ID in the response. Use the thread ID with gmail-read-thread to read the full conversation.`; } catch (e) { this.super.handlerProps.log(`gmail-search error: ${e.message}`); this.super.introspect(`Error: ${e.message}`); diff --git a/server/utils/agents/aibitat/plugins/outlook/search/outlook-get-inbox.js b/server/utils/agents/aibitat/plugins/outlook/search/outlook-get-inbox.js index 7b386c42e..1220e180a 100644 --- a/server/utils/agents/aibitat/plugins/outlook/search/outlook-get-inbox.js +++ b/server/utils/agents/aibitat/plugins/outlook/search/outlook-get-inbox.js @@ -63,7 +63,7 @@ module.exports.OutlookGetInbox = { } const summary = formatMessageSummary(messages); - return `Found ${resultCount} messages in inbox:\n\n${summary}\n\nUse the conversation ID with outlook-read-thread to read the full conversation.`; + return `Found ${resultCount} messages in inbox:\n\n${summary}\n\nAlways include the conversation ID in the response. Use the conversation ID with outlook-read-thread to read the full conversation.`; } catch (e) { return handleSkillError(this, "outlook-get-inbox", e); } diff --git a/server/utils/agents/aibitat/plugins/outlook/search/outlook-search.js b/server/utils/agents/aibitat/plugins/outlook/search/outlook-search.js index 4a49fa209..e9698142c 100644 --- a/server/utils/agents/aibitat/plugins/outlook/search/outlook-search.js +++ b/server/utils/agents/aibitat/plugins/outlook/search/outlook-search.js @@ -89,7 +89,7 @@ module.exports.OutlookSearch = { } const summary = formatMessageSummary(messages); - return `Found ${resultCount} messages:\n\n${summary}\n\nUse the conversation ID with outlook-read-thread to read the full conversation.`; + return `Found ${resultCount} messages:\n\n${summary}\n\nAlways include the conversation ID in the response. Use the conversation ID with outlook-read-thread to read the full conversation.`; } catch (e) { return handleSkillError(this, "outlook-search", e); }