AGR: Switch rule definition syntax from '@' prefix to ';' suffix#1944
Merged
curtisman merged 4 commits intomicrosoft:mainfrom Feb 23, 2026
Merged
AGR: Switch rule definition syntax from '@' prefix to ';' suffix#1944curtisman merged 4 commits intomicrosoft:mainfrom
curtisman merged 4 commits intomicrosoft:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR changes the Action Grammar (AGR) rule definition syntax from using a
@prefix to using a;suffix as the rule delimiter. The new syntax is cleaner and more conventional, aligning with common grammar formats where statements end with a terminator rather than begin with a sigil.Before:
After:
Note that dynamic grammar cache (the NFA cache) will break, because the grammar stored is textual currently.
Changes
grammarRuleParser.ts): Updated to recognize semicolon-terminated rule definitions instead of@-prefixed onesgrammarRuleWriter.ts): Updated to emit semicolons at the end of rule definitionsschemaToGrammarGenerator.ts): Updated all AI prompt examples and CRITICAL SYNTAX RULES to reflect the new format.agrgrammar files: Migrated 25+ agent grammar files across browser, calendar, code, desktop, email, image, list, photo, player, video, and weather agentsagr.tmLanguage.json): Updated syntax highlighting to match the new grammaractionGrammar,agentSdkWrapper, andcachepackagesCONFIGURATION_AND_PERSISTENCE.mdwith new syntaxgeneratedSchemaRegistry.jsonwith regenerated grammar content using new syntaxTest plan
actionGrammarunit tests pass with the new syntaxschemaToGrammarGeneratoruse the new syntax🤖 Generated with Claude Code