From 62a3784c3d80822afc757386e91e2d87336ef936 Mon Sep 17 00:00:00 2001 From: Mustafa Esoofally Date: Mon, 6 Apr 2026 10:00:52 -0400 Subject: [PATCH] fix: disable search_workspace tool on team leader The search_workspace tool (Slack's assistant.search.context API) was causing the leader to search Slack for answers to code questions instead of delegating to the right specialist. Removing it keeps the leader focused on code coordination via its member agents. Retains search_messages for basic thread/channel context lookups. --- coda/team.py | 1 - 1 file changed, 1 deletion(-) diff --git a/coda/team.py b/coda/team.py index 987f29b..27d965f 100644 --- a/coda/team.py +++ b/coda/team.py @@ -179,7 +179,6 @@ enable_get_thread=True, enable_get_user_info=True, enable_search_messages=True, - enable_search_workspace=True, enable_list_users=True, ) )