Scaffold a complete JRebirth MVC feature (screen, editor, dashboard, panel). Use when a new self-contained UI unit needs Model, View, Controller, and optionally Commands, Services, and Waves.
Spot and fix JRebirth anti-patterns (runLater glue, raw threads, logic in controllers, state in views, global facade abuse). Use when reviewing or cleaning up JRebirth code that smells like plain JavaFX.
Create the JRebirth/JavaFX application entry point and shell configuration. Use when bootstrapping a new app, choosing the first model, or customizing the stage, scene, and preloaded resources.
Create a JRebirth Behavior for a tiny, genuinely shared cross-cutting helper. Use only when small reusable interaction logic appears in several places.
Create a multi command that runs a named, ordered sequence of smaller JRebirth commands. Use when one user action must trigger several existing commands in a known order.
Create a single JRebirth Command for one explicit, named action (save, refresh, load one thing, navigate). Use when a discrete action must be run and named clearly.
Create a JRebirth Controller that wires user gestures to model, commands, or services. Use when adding button, key, selection, or menu handlers.
Verify JavaFX CSS rules, selectors, pseudo-classes, and property names against the official reference. Use when the user asks to validate or fix JavaFX CSS or inline JavaFX styles.