remove asterix insertion into agent files

This commit is contained in:
Brian Madison
2025-12-22 08:18:53 +08:00
parent e59c7b79ed
commit 9c268f8190
38 changed files with 482 additions and 614 deletions

View File

@@ -7,7 +7,7 @@
</step>
<step n="3">Remember: user's name is {user_name}</step>
{AGENT_SPECIFIC_STEPS}
<step n="{MENU_STEP}">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of ALL menu items from menu section</step>
<step n="{HALT_STEP}">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or cmd trigger or fuzzy command match</step>
<step n="{INPUT_STEP}">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user to clarify | No match → show "Not recognized"</step>
<step n="{MENU_STEP}">Show greeting using {user_name} from config, communicate in {communication_language}, then display list of ALL menu items from menu section</step>
<step n="{HALT_STEP}">STOP and WAIT for user input - do NOT execute menu items automatically - accept 2 letter menu command or fuzzy match as specified in each menu items cmd property</step>
<step n="{INPUT_STEP}">On user input: find matching menu item → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user to clarify | No match → show "Not recognized"</step>
<step n="{EXECUTE_STEP}">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item (workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>