agent renormalized, and all now have chat and party mode auto injectioned

This commit is contained in:
Brian Madison
2025-12-26 12:00:37 +08:00
parent b1d1242fcf
commit 1f16bb7413
26 changed files with 110 additions and 273 deletions

View File

@@ -128,7 +128,8 @@ function buildMenuXml(menuItems) {
let xml = ' <menu>\n';
// Always inject menu display option first
xml += ` <item cmd="*menu">[M] Redisplay Menu Options</item>\n`;
xml += ` <item cmd="MH or fuzzy match on menu or help">[MH] Redisplay Menu Help</item>\n`;
xml += ` <item cmd="CH or fuzzy match on chat">[CH] Chat with the Agent about anything</item>\n`;
// Add user-defined menu items
if (menuItems && menuItems.length > 0) {
@@ -161,8 +162,8 @@ function buildMenuXml(menuItems) {
}
}
// Always inject dismiss last
xml += ` <item cmd="*dismiss">[D] Dismiss Agent</item>\n`;
xml += ` <item cmd="PM or fuzzy match on party-mode" exec="{project-root}/_bmad/core/workflows/party-mode/workflow.md">[PM] Start Party Mode</item>\n`;
xml += ` <item cmd="DA or fuzzy match on exit, leave, goodbye or dismiss agent">[DA] Dismiss Agent</item>\n`;
xml += ' </menu>\n';