From abe925e21260a1b593bda0c021fc93ebf8b38723 Mon Sep 17 00:00:00 2001 From: teknium Date: Wed, 11 Feb 2026 04:44:30 +0000 Subject: [PATCH] Update hermes-discord toolset to enable full terminal access with safety checks - Revised the description to reflect full access capabilities, including terminal usage with a dangerous command approval system. - Added terminal and file manipulation tools to the toolset, enhancing functionality for users. - Updated comments for clarity on tool purposes, ensuring better understanding of available features. --- toolsets.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/toolsets.py b/toolsets.py index 4f0e5ee28..04785b02b 100644 --- a/toolsets.py +++ b/toolsets.py @@ -178,15 +178,19 @@ TOOLSETS = { }, "hermes-discord": { - "description": "Discord bot toolset - limited for public server safety (no terminal, no file access)", + "description": "Discord bot toolset - full access (terminal has safety checks via dangerous command approval)", "tools": [ - # Web tools - safe for messaging - "web_search", - # Vision - analyze images + # Terminal - enabled with dangerous command approval system + "terminal", + # File manipulation + "read_file", "write_file", "patch", "search", + # Web tools + "web_search", "web_extract", + # Vision - analyze images sent by users "vision_analyze", # Skills - access knowledge base "skills_list", "skill_view", - # Cronjob - let users schedule reminders + # Cronjob management - let users schedule tasks "schedule_cronjob", "list_cronjobs", "remove_cronjob" ], "includes": []