refactor(agents): colocate discord connector tools into subagent slice

Repoint the dead tools/__init__ shim at the live local impls and delete the
dead shared/tools/discord twin (subagent already ran its local copies via
tools/index.py). No runtime behavior change.
This commit is contained in:
CREDO23 2026-06-04 20:03:58 +02:00
parent 425e6e50a3
commit c6525c4f52
6 changed files with 3 additions and 430 deletions

View file

@ -1,12 +1,6 @@
from app.agents.shared.tools.discord.list_channels import (
create_list_discord_channels_tool,
)
from app.agents.shared.tools.discord.read_messages import (
create_read_discord_messages_tool,
)
from app.agents.shared.tools.discord.send_message import (
create_send_discord_message_tool,
)
from .list_channels import create_list_discord_channels_tool
from .read_messages import create_read_discord_messages_tool
from .send_message import create_send_discord_message_tool
__all__ = [
"create_list_discord_channels_tool",