fix(mma): Adjust skill trigger format to avoid policy blocks

This commit is contained in:
2026-02-25 19:54:45 -05:00
parent be2a77cc79
commit 9da08e9c42

View File

@@ -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}"