Merge pull request #1697 from NousResearch/fix/gateway-skill-command-nameref

fix(gateway): NameError on skill slash commands — wrong variable reference
This commit is contained in:
Teknium
2026-03-17 03:46:08 -07:00
committed by GitHub

View File

@@ -1481,7 +1481,7 @@ class GatewayRunner:
if cmd_key in skill_cmds:
user_instruction = event.get_command_args().strip()
msg = build_skill_invocation_message(
cmd_key, user_instruction, task_id=session_key
cmd_key, user_instruction, task_id=_quick_key
)
if msg:
event.text = msg