jmix-framework
- 22 skills
- 0 followers
- 20 hours ago last updated
- ▌ Jmix Create List View · jmix-frameworkCreate a Jmix Flow UI list view with XML descriptor, data loading, menu, messages, and policies.
- ▌ Jmix Create Dto Entity · jmix-frameworkCreate or change Jmix DTO entities and other non-persistent transfer models for UI data containers, REST/API payloads, custom data stores, external data, or calculated read models.
- ▌ Jmix Verify API Symbol · jmix-frameworkBefore typing a class, enum constant, inner-class event, method, or icon name you have not personally verified in this project, confirm it exists. Costs seconds and prevents the most expensive class of failures (hallucinated icon constants, fake event inner classes, wrong package paths). Primary check when connected = the Context7 docs MCP (/jmix-framework/jmix-context7); falls back to grepping the project for a working example or an IDE symbol search.
- ▌ Jmix Create Detail View · jmix-frameworkCreate a Jmix Flow UI detail view with XML descriptor, save-close action, messages, and policies.
- ▌
- ▌ Jmix Run Background Code · jmix-frameworkUse when writing code that runs outside a user request — a Quartz/scheduled job, an @Async method, an application-startup runner, or an integration event listener. Such threads have no authenticated user, so DataManager fails with "Authentication is not set" the first time the code actually runs. Compile, static analysis, and a green clean test all pass; only the real firing fails.
- ▌ Jmix Configure Fetch Plan · jmix-frameworkConfigure or audit Jmix fetch plans in XML views, fragments, DataManager loads, repositories, and entity events when loading references, avoiding N+1 queries, fixing unfetched attribute errors, or tuning data loading.
- ▌ Jmix Create Resource Role · jmix-frameworkCreate or update Jmix resource roles with entity, attribute, view, and menu policies, including the CREATE-implies-MODIFY rule.
- ▌ Jmix Migrate Theme To Aura · jmix-frameworkSwitch a project that came from Jmix 2.x over to the Aura theme, including porting Lumo utility classes. Studio's 2.x→3.x migration deliberately keeps Lumo and there is no automated conversion, so every step here is manual. Each step has a SILENT failure mode — the app boots, compiles, and passes a green clean test while still rendering Lumo, or renders Aura tokens on top of Lumo components.
- ▌ Jmix Add Dialog Detail Flow · jmix-frameworkOpen a Jmix entity detail view from a button/action and refresh related data after save.
- ▌ Jmix Add Entity Event Listener · jmix-frameworkAdd Jmix entity lifecycle event listeners to perform additional actions with saved or loaded entities.
- ▌ Jmix Create Liquibase Changelog · jmix-frameworkCreate Liquibase changelogs that exactly match Jmix entity model changes, and register database changelogs supplied by Jmix add-ons that own persistent entities.
- ▌ Jmix Create Composition Detail View · jmix-frameworkAdd inline editable parent-child composition UI to a Jmix detail view, when a parent entity owns child records edited via a property-bound collection container (no query loader).
- ▌ Jmix · jmix-frameworkRead FIRST before writing or changing any file in a Jmix application. Lists the project stack, maps the task to Jmix artifacts, routes each artifact to the skill that governs it, and names the checks that close a task. Your Jmix/Vaadin priors are the main source of wrong API names and broken descriptors — start here, not from memory.
- ▌
- ▌ Jmix Create Enum · jmix-frameworkCreate a Jmix enum for entity attributes with stable database ids and localization.
- ▌ Jmix Create Test · jmix-frameworkCreate or update Jmix unit, integration, UI integration, or end-to-end tests for services, entity listeners, security behavior, views, fragments, and persistence workflows.
- ▌ Jmix Add I18N Keys · jmix-frameworkAdd complete Jmix message keys for entities, enums, views, actions, and validation text, and configure official Jmix framework translations for non-English applications.
- ▌ Jmix Create Entity · jmix-frameworkCreate or change a persistent Jmix JPA entity and its required surrounding artifacts.
- ▌ Jmix Create Service · jmix-frameworkCreate Jmix service-layer business logic with DataManager, transactions, and no UI coupling.
- ▌ Jmix Verify Bootrun · jmix-frameworkGate 2 (mandatory) — verify the Spring/Jmix context loads via a TERMINATING `gradle clean test`, never a long-running bootRun. Gate 3 (optional) — if you have a browser/UI-automation tool, walk the views/buttons/fields you created to catch render-time defects that compile and clean test miss. A green compile/clean test is NOT proof a view renders.
- ▌ Jmix Create Fragment · jmix-frameworkCreate or change reusable Jmix Flow UI fragments, embedded fragment instances, provided data components, fragment facets, host event subscriptions, or fragment renderers.