From 9da08e9c42e5a33d9174316683ca9fd355e5309f Mon Sep 17 00:00:00 2001 From: Ed_ Date: Wed, 25 Feb 2026 19:54:45 -0500 Subject: [PATCH] fix(mma): Adjust skill trigger format to avoid policy blocks --- scripts/mma_exec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mma_exec.py b/scripts/mma_exec.py index 2fedb66..db672a5 100644 --- a/scripts/mma_exec.py +++ b/scripts/mma_exec.py @@ -22,7 +22,7 @@ def get_role_documents(role: str) -> list[str]: def execute_agent(role: str, prompt: str, docs: list[str]) -> str: model = get_model_for_role(role) - command_text = f"Activate the mma-{role} skill. {prompt}" + command_text = f"Use the mma-{role} skill. {prompt}" for doc in docs: command_text += f" @{doc}"