fix: /logwatch et /machine routés directement vers leurs skills (sans LLM)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-02 09:19:34 +00:00
parent 96a914fbdd
commit 7c5b270144
3 changed files with 5 additions and 0 deletions
+5
View File
@@ -719,6 +719,11 @@ class LogWatchAgent(BaseAgent):
self._extension_event.set()
return "⏸️ Analyse reportée au prochain créneau."
# Dispatch direct vers les skills métier (contourne le LLM)
if cmd_lower in ('logwatch', 'machine'):
ctx = AgentContext(self)
return self.skills.run(cmd_lower, args, ctx)
if cmd_lower == 'update':
return self._self_update()
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.