refactor: eliminar regla !help hardcodeada de agentes existentes

Elimina la regla MatchCommand("help") de assistant-bot y asistente-2
ya que ahora !help es un comando built-in del sistema de comandos.
Los agentes solo conservan la regla llm-all para DM/mention → LLM.
This commit is contained in:
2026-03-07 01:11:33 +00:00
parent 33b11a63c8
commit 3f6921d3fd
2 changed files with 2 additions and 31 deletions
+1 -16
View File
@@ -7,25 +7,10 @@ import (
)
// Rules returns the decision rules for the assistant bot.
// Note: !help is now handled by the built-in command system.
func Rules() []decision.Rule {
return []decision.Rule{
// !help — explicit help command
{
Name: "help",
Match: decision.MatchCommand("help"),
Actions: []decision.Action{{
Kind: decision.ActionKindReply,
Reply: &decision.ReplyAction{
Content: "Soy tu asistente. Escríbeme directamente lo que necesitas:\n" +
"- Preguntas, explicaciones, resúmenes\n" +
"- Ayuda con código\n" +
"- Redacción de textos",
},
}},
},
// Any DM or mention → LLM
// This is the catch-all: if the message is a DM or a mention, send to LLM.
{
Name: "llm-all",
Match: func(ctx decision.MessageContext) bool {