What problem does it solve? Developers building Glyvio plugins need a consistent, correctly registered way to encapsulate custom calculations or deferred execution routines, and writing the strategy boilerplate by hand risks violating platform rules like forbidden imports or manual registry insertion. ## Core Features & Use Cases - Strategy Class Generation: Produces a TypeScript class extending glyvio_core.SimpleStrategy with typed input and output generics and the @glyvio_core.Strategy decorator for automatic registration. - Architectural Rule Enforcement: Ensures no external imports of Glyvio globals, no manual registry manipulation, and correct guidance on when a queued Strategy is appropriate versus direct handleBefore/handleAfter logic. - Use Case: A developer needs a tax_calculator_us strategy that deduplicates rapid saves of child rows before recalculating a total; the skill generates the strategy file, adds the import to the server entrypoint, and validates the build. ## Quick Start Ask the agent to create a Glyvio strategy with a given strategy ID, class name, input type, and output type for your custom calculation.