From 709f9a0b29799a2dfefd9c109d585936560a3612 Mon Sep 17 00:00:00 2001 From: openhands Date: Thu, 6 Aug 2026 18:23:50 +0000 Subject: [PATCH 1/4] chore(slack-monitor): tell agent to format links for Slack Append a note to the Slack automation initial prompt reminding the agent that its response is shown in Slack, so links should be Slack-formatted. Co-authored-by: openhands --- skills/slack-channel-monitor/scripts/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skills/slack-channel-monitor/scripts/main.py b/skills/slack-channel-monitor/scripts/main.py index 1caefca2..a2d75ed3 100644 --- a/skills/slack-channel-monitor/scripts/main.py +++ b/skills/slack-channel-monitor/scripts/main.py @@ -932,7 +932,8 @@ def _process_trigger_message( f"interactions and are NOT directed at you. Do not act on them unless " f"the user request explicitly refers to them.\n\n" f"When you are finished, summarise what you did clearly — that summary " - f"will be posted back to the Slack thread." + f"will be posted back to the Slack thread. " + f"Your response will be displayed in Slack, so format the links appropriately for Slack." ) try: From ba752df91178a46b8be26cacb473daa0c37756e2 Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Thu, 6 Aug 2026 20:26:48 +0200 Subject: [PATCH 2/4] Apply suggestion from @enyst --- skills/slack-channel-monitor/scripts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/slack-channel-monitor/scripts/main.py b/skills/slack-channel-monitor/scripts/main.py index a2d75ed3..1e3dae92 100644 --- a/skills/slack-channel-monitor/scripts/main.py +++ b/skills/slack-channel-monitor/scripts/main.py @@ -933,7 +933,7 @@ def _process_trigger_message( f"the user request explicitly refers to them.\n\n" f"When you are finished, summarise what you did clearly — that summary " f"will be posted back to the Slack thread. " - f"Your response will be displayed in Slack, so format the links appropriately for Slack." + f"Understand that your response will be displayed in Slack, so format any links appropriately for Slack." ) try: From cf5d2abd42ca158cafd80b053690abfb855d41d8 Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Thu, 6 Aug 2026 21:26:11 +0200 Subject: [PATCH 3/4] Apply suggestion from @enyst --- skills/slack-channel-monitor/scripts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/slack-channel-monitor/scripts/main.py b/skills/slack-channel-monitor/scripts/main.py index 1e3dae92..43627b9c 100644 --- a/skills/slack-channel-monitor/scripts/main.py +++ b/skills/slack-channel-monitor/scripts/main.py @@ -933,7 +933,7 @@ def _process_trigger_message( f"the user request explicitly refers to them.\n\n" f"When you are finished, summarise what you did clearly — that summary " f"will be posted back to the Slack thread. " - f"Understand that your response will be displayed in Slack, so format any links appropriately for Slack." + f"Understand that your response will be displayed in Slack, so format any links appropriately for Slack. Do NOT bold the links on Slack." ) try: From abb051a8f7895086396b8a8762b92cb3b8476062 Mon Sep 17 00:00:00 2001 From: Vasco Schiavo <115561717+VascoSch92@users.noreply.github.com> Date: Fri, 7 Aug 2026 16:57:54 +0200 Subject: [PATCH 4/4] Retrigger CI