mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
fix(relay): native-parity Slack approval button styles + labels
Slack Block Kit buttons only support style primary (green) / danger (red) / default (white). The relay approval + slash-confirm prompts emitted an invalid style 'success' (Slack silently drops it → white/stroke button) and baked emoji into the labels (non-native). Native Slack Hermes uses plain labels with primary/danger. Map to valid styles (once→primary, deny/cancel→danger, session/always→default) and drop the emoji from labels. The connector already compensates success→primary, but emitting valid values at the source is correct and removes the fragile dependency on that compensation.
This commit is contained in:
parent
e286658377
commit
42e4f70eef
1 changed files with 7 additions and 8 deletions
|
|
@ -1399,16 +1399,15 @@ class RelayAdapter(BasePlatformAdapter):
|
|||
button→text fallback takes over (same contract as a native adapter's
|
||||
failed button send).
|
||||
"""
|
||||
options: list = [{"id": "once", "label": "✅ Allow Once", "style": "success"}]
|
||||
options: list = [{"id": "once", "label": "Allow Once", "style": "primary"}]
|
||||
if not smart_denied and allow_session:
|
||||
options.append({"id": "session", "label": "✅ Session", "style": "primary"})
|
||||
options.append({"id": "session", "label": "Allow Session"})
|
||||
if allow_permanent:
|
||||
options.append({
|
||||
"id": "always",
|
||||
"label": "✅ Always",
|
||||
"style": "primary",
|
||||
"label": "Always Allow",
|
||||
})
|
||||
options.append({"id": "deny", "label": "❌ Deny", "style": "danger"})
|
||||
options.append({"id": "deny", "label": "Deny", "style": "danger"})
|
||||
|
||||
cmd_preview = command if len(command) <= 1500 else command[:1500] + "..."
|
||||
text = (
|
||||
|
|
@ -1455,9 +1454,9 @@ class RelayAdapter(BasePlatformAdapter):
|
|||
gateway's text-intercept flow when the prompt lane is unavailable.
|
||||
"""
|
||||
options = [
|
||||
{"id": "once", "label": "✅ Approve Once", "style": "success"},
|
||||
{"id": "always", "label": "🔒 Always Approve", "style": "primary"},
|
||||
{"id": "cancel", "label": "❌ Cancel", "style": "danger"},
|
||||
{"id": "once", "label": "Approve Once", "style": "primary"},
|
||||
{"id": "always", "label": "Always Approve"},
|
||||
{"id": "cancel", "label": "Cancel", "style": "danger"},
|
||||
]
|
||||
text = f"**{title}**\n\n{message}" if title else message
|
||||
prompt_id = self._mint_prompt(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue