A comprehensive plugin providing a complete toolkit for modernizing SAPUI5/OpenUI5 applications.
This plugin provides:
- Autonomous modernization workflow with end-to-end orchestration in five phases
- Specialized fix skills for every UI5 linter rule category
- Verification gates at every phase boundary (full autonomous, half autonomous, or manual)
- Validation at every step via UI5 linter integration
claude plugin install ui5-modernization@claude-plugins-official/plugin install ui5-modernization@claude-plugins-officialThe goal is to modernize your OpenUI5/SAPUI5 app — targeting manifest version 2.0.0 with a minimum framework version of 1.136.0. This means replacing deprecated APIs with their modern equivalents and enforcing strict module imports, eliminating reliance on globals and legacy patterns.
This plugin is built around the UI5 linter (@ui5/linter) — a static analysis tool that detects deprecated APIs, global namespace access, and other incompatibilities. The linter serves two roles in the modernization workflow:
- Detection — Each skill reads linter output to identify what needs fixing. The linter's rule IDs (e.g.,
no-deprecated-api,no-globals) map directly to specific fix skills. - Verification — After applying fixes, the linter is re-run to confirm errors are resolved. Zero remaining errors = phase complete.
A few issues cannot be detected by the linter (runtime-only patterns, cyclic dependencies). For these, the plugin includes its own detection scripts that fill the gap.
The main entry point is the orchestrator which runs all five phases:
/modernize-ui5-app
This will:
- Ask which verification mode you want (full autonomous / half autonomous / manual)
- Run Phase 1: UI5 linter autofix + test starter restructure
- Run Phase 2: manifest.json + Component.js foundation
- Run Phase 3: module system (globals, pseudo modules, cyclic dependencies, blind spots)
- Run Phase 4: deprecated API replacements
- Run Phase 5: CSP compliance
- Generate
MODERNIZATION-REPORT.mdandMODERNIZATION-ISSUES.md
Each phase creates a git commit and runs the verification gate per your chosen mode.
When you encounter specific error patterns, use the targeted skills directly:
# Test infrastructure (Phase 1)
/modernize-test-starter # Test Starter modernization
# Foundation (Phase 2)
/fix-component-async # Component.js async issues
/fix-manifest-json # manifest.json issues
# Module system issues (Phase 3)
/fix-js-globals # no-globals errors in JS files
/fix-xml-globals # no-globals errors in XML views/fragments
/fix-pseudo-modules # no-pseudo-modules, no-implicit-globals
/fix-linter-blind-spots # Runtime patterns linter misses
/fix-cyclic-deps # Circular sap.ui.define dependencies
# Deprecated API modernizations (Phase 4)
/fix-bootstrap-params # HTML bootstrap parameters
/fix-library-init # Library.init() apiVersion
/fix-control-renderer # Control renderer issues
/fix-deprecated-controls # Deprecated controls, classes, interfaces
/fix-fiori-elements-extensions # Fiori Elements V2 controller extensions
/fix-partially-deprecated-apis # Partially deprecated API calls
/fix-table-row-mode # Deprecated Table row properties
/fix-xml-native-html # Native HTML/SVG in XML views
# CSP compliance (Phase 5)
/fix-csp-compliance # Unsafe inline scripts
# FLP sandbox
/modernize-flp-sandbox # Dedicated FLP Sandbox modernization skill
The modernization workflow modifies your project in predictable ways:
- Files modified: JS controllers, XML views/fragments, HTML test pages,
manifest.json,Component.js - Files generated:
MODERNIZATION-REPORT.md(statistics),MODERNIZATION-ISSUES.md(unfixable errors) - Git commits: One commit per phase (5–6 total)
- Not touched:
node_modules/,dist/, build artifacts, or files outside the app source
Start with a clean working directory. Each phase is a separate git commit, so you can undo any phase:
git revert HEAD # undo the last phase
git reset --hard HEAD~3 # undo the last 3 phases/modernize-ui5-app- End-to-end workflow: runs five phases with verification gates, delegates to specialized skills via sub-agents, and generates a modernization report
/modernize-test-starter- Modernize QUnit unit tests and OPA5 integration tests to the Test Starter concept (handles both single-HTML + AllJourneys and many-individual-HTML patterns)
/fix-manifest-json- Fix manifest.json issues: outdated manifest version, legacy OpenUI5/SAPUI5 version, deprecated libraries/components, deprecated view/model types, removed properties/fix-component-async- Fix Component.js async configuration:IAsyncContentCreationinterface, manifest declaration, redundant async flags
/fix-js-globals- Fix JavaScriptno-globalserrors: global namespace assignments,sap.ui.core.Coredirect access, jQuery/$ global calls, controller factories, legacy module wrapping/fix-xml-globals- Fix XML view/fragment globals: global variable access, ambiguous event handlers, formatters, type references in bindings, factory functions, app-namespace globals/fix-pseudo-modules- Fix pseudo module and implicit global issues: deprecated enum/DataType pseudo module access, directlibrary.EnumNameaccess, OData expression addons/fix-linter-blind-spots- Fix runtime-breaking patterns the linter does NOT report: app-namespace globals in JS files, QUnit 1.x assertions, sinon mocking via global chains/fix-cyclic-deps- Detect and resolve cyclic module dependencies introduced during modernization (2-node direct cycles auto-fixed, 3+ node chains flagged)
/fix-bootstrap-params- Fix HTML bootstrap parameter issues: missing/deprecated parameters (async,compat-version,animation,binding-syntax), deprecated theme values, deprecated libraries/fix-library-init- Fix Library.init() apiVersion issues and modernize library initialization/fix-control-renderer- Fix Control renderer issues: missing renderer declaration, string-based renderer, implicit auto-discovery,apiVersion:2configuration/fix-deprecated-controls- Fix deprecated controls, classes, interfaces, and types with modern replacements (e.g.,sap.m.MessagePagetoIllustratedMessage)/fix-fiori-elements-extensions- Handle Fiori elements V2 controller extensions during modernization (manifest-basedsap.ui.controllerExtensions)/fix-partially-deprecated-apis- Fix partially deprecated API usage:Parameters.get,JSONModel.loadData,Mobile.init,ODataModel.v2.createEntry,View.create,Fragment.load,Routerconstructor/fix-table-row-mode- Modernize deprecated Table row properties (visibleRowCountMode,visibleRowCount,rowHeight, etc.) to structuredrowModeaggregation/fix-xml-native-html- Fix native HTML and SVG usage in XML views/fragments: replacehtml:div,html:span,html:awith UI5 controls
/fix-csp-compliance- Fix Content Security Policy compliance: extract unsafe inline scripts to external files
/modernize-flp-sandbox- Modernize legacy FLP sandbox HTML files to new FLP Sandbox format: converts inlinewindow["sap-ushell-config"]to declarative JSON. Requires framework version >= 1.147. This is a dedicated skill not part of the/modernize-ui5-appworkflow and needs to be triggered separately.
The orchestrator asks once at the start which verification mode to use at every phase boundary:
| Mode | Behavior |
|---|---|
| Full autonomous | Run build + tests → attempt fix on failure → escalate after 3 retries |
| Half autonomous | Run build + tests → report results → wait for user input |
| Manual | Print summary → wait for user to verify externally |
Before using this plugin, ensure you have:
- Node.js Version v20.11.0, v22.0.0, or higher
- OpenUI5/SAPUI5 application with
ui5.yamlin project root (required for linter) - Git repository with clean working directory
- Chrome DevTools MCP (optional) — only needed for automated test verification in full/half autonomous modes
This plugin leverages the Chrome DevTools MCP server for browser-based test verification and debugging. The MCP server is configured in .mcp.json and provides:
- Automated test execution — Run QUnit and OPA5 tests in a real browser during full/half autonomous verification modes
- Page inspection — Take accessibility snapshots, capture screenshots, and read console output to verify OpenUI5/SAPUI5 app behavior after modernization
The Chrome DevTools MCP is optional — it is only used when running in full or half autonomous verification mode. The manual mode does not require it.
# Get fix guidance for all errors
npx @ui5/linter --details
# Get fix guidance for specific file
npx @ui5/linter --details path/to/file.js- Modernization Guide for OpenUI5
- Modernization Guide for SAPUI5
- Deprecated Core API for OpenUI5
- Deprecated Core API for SAPUI5
- UI5 MCP Server — query deprecated APIs, find modern replacements, get code examples
- Commit history — changelog