/sapui5
This skill should be used when developing SAP UI5 applications, including creating freestyle apps, Fiori Elements apps, custom controls, testing, data binding, OData integration, routing, and troubleshooting. Use when building enterprise web applications with SAP UI5 framework,
$ npx -y skills add secondsky/sap-skills --skill sapui5 --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/sapui5
Context preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when developing SAP UI5 applications, including creating freestyle apps, Fiori Elements apps, custom controls, testing, data binding, OData integration, routing, and troubleshooting. Use when building enterprise web applications with SAP UI5 framework,
SKILL.md
sapui5.SKILL.mdname: sapui5
description: "This skill should be used when developing SAP UI5 applications, including creating freestyle apps, Fiori Elements apps, custom controls, testing, data binding, OData integration, routing, and troubleshooting. Use when building enterprise web applications with SAP UI5 framework, implementing MVC patterns, configuring manifest.json, creating XML views, writing controllers, setting up data models (JSON, OData v2/v4), implementing responsive UI with sap.m controls, building Fiori Elements apps, writing unit tests with QUnit, integration tests with OPA5, setting up mock servers, handling security (XSS, CSP), optimizing performance, implementing accessibility features, or debugging UI5 applications. Also covers sap.ui.mdc controls and TypeScript control libraries."
license: GPL-3.0
metadata:
maintainer: "Eduard Jiglau"
maintainer_email: "hello@sap-ai-skills.com"
website: "https://sap-ai-skills.com"
version: "2.4.1"
last_verified: 2026-05-31
framework_version: "1.148.1 latest verified, 1.120.0+ baseline"
documentation_source: "https://github.com/SAP-docs/sapui5"
documentation_files_analyzed: 1416
reference_files: 15
mcp_integration: true
mcp_tools: 9
specialized_agents: 4
slash_commands: 5
status: production
keywords: [sapui5, ui5, openui5, sap ui5, ui5 framework, ui5 application, ui5 development, ui5 tooling, ui5 cli, Component.js, manifest.json, xml view, data binding, odata v2, odata v4, fiori elements, sap.m controls, mvc pattern, routing, navigation, qunit, opa5, testing, mock server, sap.ui.mdc, mdc table, typescript, accessibility, security, performance, ui5 inspector]
SAPUI5 Development Skill
Related Skills
- **sap-fiori-tools**: Use for rapid Fiori application development, Page Editor configuration, and deployment automation
- **sap-cap-capire**: Use for backend service integration, OData model binding, and CAP service consumption
- **sap-btp-cloud-platform**: Use for deployment options, HTML5 Application Repository service, and BTP integration
- **sap-abap**: Use when connecting to ABAP backends or consuming OData services from SAP systems
- **sap-api-style**: Use when documenting UI5 application APIs or following REST/OData standards
- **sap-dependency-security**: Use for secure dependency upgrades, lockfile policies, supply-chain controls, and exact MCP server pins in SAPUI5 frontend toolchains
When to Use This Skill
Use this skill when building SAPUI5/OpenUI5 applications, XML views, controllers, custom controls, routing, OData v2/v4 model binding, Fiori Elements integrations, QUnit/OPA5 tests, accessibility/security/performance improvements, or UI5 MCP-assisted scaffolding and API lookup.
Comprehensive skill for building enterprise applications with SAP UI5 framework.
Using MCP Tools (New in v2.0.0)
This skill integrates with the official **@ui5/mcp-server** for live development tools:
- **Scaffolding**: Create projects with `ui5-app-scaffolder` agent or `/ui5-scaffold` command
- **API Reference**: Lookup controls with `ui5-api-explorer` agent or `/ui5-api` command
- **Code Quality**: Run linter with `ui5-code-quality-advisor` agent or `/ui5-lint` command
- **Migration**: Upgrade versions with `ui5-migration-specialist` agent
- **Version Info**: Check releases with `/ui5-version` command
- **Tool Catalog**: List all MCP tools with `/ui5-mcp-tools` command
For setup and troubleshooting, see [references/mcp-integration.md](references/mcp-integration.md). MCP package pins are governed by **sap-dependency-security** and validated by `npm run validate:mcp-security`.
**Graceful Fallback**: All features work without MCP by using reference files and built-in templates.
Table of Contents
1. [Quick Start](#quick-start) 2. [Core Concepts](#core-concepts) 3. [SAP Fiori Elements](#sap-fiori-elements) 4. [Metadata-Driven Controls (MDC)](#metadata-driven-controls-mdc) 5. [Testing](#testing) 6. [Best Practices](#best-practices) 7. [Common Patterns](#common-patterns) 8. [Troubleshooting](#troubleshooting-common-issues) 9. [Development Tools](#development-tools) 10. [Bundled Resources](#bundled-reference-files)
---
Quick Start
Creating a Basic SAPUI5 App
Use UI5 Tooling (recommended) or SAP Business Application Studio:
# Install UI5 CLI
npm install -g @ui5/cli
# Create new project
mkdir my-sapui5-app && cd my-sapui5-app
npm init -y
# Initialize UI5 project
ui5 init
# Add UI5 dependencies
npm install --save-dev @ui5/cli
# Start development server
ui5 serve
**Project Structure**:
my-sapui5-app/
├── webapp/
│ ├── Component.js
│ ├── manifest.json
│ ├── index.html
│ ├── controller/
│ │ └── Main.controller.js
│ ├── view/
│ │ └── Main.view.xml
│ ├── model/
│ │ └── formatter.js
│ ├── i18n/
│ │ └── i18n.properties
│ ├── css/
│ │ └── style.css
│ └── test/
│ ├── unit/
│ └── integration/
├── ui5.yaml
└── package.json
**Templates Available**:
- `templates/basic-component.js`: Component template
- `templates/manifest.json`: Application descriptor template
- `templates/xml-view.xml`: XML view with common patterns
- `templates/controller.js`: Controller with best practices
- `templates/formatter.js`: Common formatter functions
**Use templates** by copying to your project and replacing placeholders (`{{namespace}}`, `{{ControllerName}}`, etc.).
---
Core Concepts
1. MVC Architecture
- **Model**: Data layer (JSON, OData, XML, Resource models)
- **View**: Presentation layer (XML, JavaScript, JSON, HTML)
- **Controller**: Business logic layer
- **Binding**: Synchronizes model and view (One-way, Two-way, One-time)
**Reference**: `references/core-architecture.md` for detailed architecture concepts.
2. Component & Manifest
- **Component.js**: Entry point, initializes router and models
- **manifest.json**: Central configuration (models, routing, dependencies, data sources)
**Key manifest sections**:
- `sap.app`: Application me
Read more
name: sapui5 description: "This skill should be used when developing SAP UI5 applications, including creating freestyle apps, Fiori Elements apps, custom controls, testing, data binding, OData integration, routing, and troubleshooting. Use when building enterprise web applications with SAP UI5 framework, implementing MVC patterns, configuring manifest.json, creating XML views, writing controllers, setting up data models (JSON, OData v2/v4), implementing responsive UI with sap.m controls, building Fiori Elements apps, writing unit tests with QUnit, integration tests with OPA5, setting up mock servers, handling security (XSS, CSP), optimizing performance, implementing accessibility features, or debugging UI5 applications. Also covers sap.ui.mdc controls and TypeScript control libraries." license: GPL-3.0 metadata: maintainer: "Eduard Jiglau" maintainer_email: "hello@sap-ai-skills.com" website: "https://sap-ai-skills.com" version: "2.4.1" last_verified: 2026-05-31 framework_version: "1.148.1 latest verified, 1.120.0+ baseline" documentation_source: "https://github.com/SAP-docs/sapui5" documentation_files_analyzed: 1416 reference_files: 15 mcp_integration: true mcp_tools: 9 specialized_agents: 4 slash_commands: 5 status: production keywords: [sapui5, ui5, openui5, sap ui5, ui5 framework, ui5 application, ui5 development, ui5 tooling, ui5 cli, Component.js, manifest.json, xml view, data binding, odata v2, odata v4, fiori elements, sap.m controls, mvc pattern, routing, navigation, qunit, opa5, testing, mock server, sap.ui.mdc, mdc table, typescript, accessibility, security, performance, ui5 inspector]
SAPUI5 Development Skill
Related Skills
- **sap-fiori-tools**: Use for rapid Fiori application development, Page Editor configuration, and deployment automation
- **sap-cap-capire**: Use for backend service integration, OData model binding, and CAP service consumption
- **sap-btp-cloud-platform**: Use for deployment options, HTML5 Application Repository service, and BTP integration
- **sap-abap**: Use when connecting to ABAP backends or consuming OData services from SAP systems
- **sap-api-style**: Use when documenting UI5 application APIs or following REST/OData standards
- **sap-dependency-security**: Use for secure dependency upgrades, lockfile policies, supply-chain controls, and exact MCP server pins in SAPUI5 frontend toolchains
When to Use This Skill
Use this skill when building SAPUI5/OpenUI5 applications, XML views, controllers, custom controls, routing, OData v2/v4 model binding, Fiori Elements integrations, QUnit/OPA5 tests, accessibility/security/performance improvements, or UI5 MCP-assisted scaffolding and API lookup.
Comprehensive skill for building enterprise applications with SAP UI5 framework.
Using MCP Tools (New in v2.0.0)
This skill integrates with the official **@ui5/mcp-server** for live development tools:
- **Scaffolding**: Create projects with `ui5-app-scaffolder` agent or `/ui5-scaffold` command
- **API Reference**: Lookup controls with `ui5-api-explorer` agent or `/ui5-api` command
- **Code Quality**: Run linter with `ui5-code-quality-advisor` agent or `/ui5-lint` command
- **Migration**: Upgrade versions with `ui5-migration-specialist` agent
- **Version Info**: Check releases with `/ui5-version` command
- **Tool Catalog**: List all MCP tools with `/ui5-mcp-tools` command
For setup and troubleshooting, see [references/mcp-integration.md](references/mcp-integration.md). MCP package pins are governed by **sap-dependency-security** and validated by `npm run validate:mcp-security`.
**Graceful Fallback**: All features work without MCP by using reference files and built-in templates.
Table of Contents
1. [Quick Start](#quick-start) 2. [Core Concepts](#core-concepts) 3. [SAP Fiori Elements](#sap-fiori-elements) 4. [Metadata-Driven Controls (MDC)](#metadata-driven-controls-mdc) 5. [Testing](#testing) 6. [Best Practices](#best-practices) 7. [Common Patterns](#common-patterns) 8. [Troubleshooting](#troubleshooting-common-issues) 9. [Development Tools](#development-tools) 10. [Bundled Resources](#bundled-reference-files)
---
Quick Start
Creating a Basic SAPUI5 App
Use UI5 Tooling (recommended) or SAP Business Application Studio:
# Install UI5 CLI npm install -g @ui5/cli # Create new project mkdir my-sapui5-app && cd my-sapui5-app npm init -y # Initialize UI5 project ui5 init # Add UI5 dependencies npm install --save-dev @ui5/cli # Start development server ui5 serve
**Project Structure**:
my-sapui5-app/ ├── webapp/ │ ├── Component.js │ ├── manifest.json │ ├── index.html │ ├── controller/ │ │ └── Main.controller.js │ ├── view/ │ │ └── Main.view.xml │ ├── model/ │ │ └── formatter.js │ ├── i18n/ │ │ └── i18n.properties │ ├── css/ │ │ └── style.css │ └── test/ │ ├── unit/ │ └── integration/ ├── ui5.yaml └── package.json
**Templates Available**:
- `templates/basic-component.js`: Component template
- `templates/manifest.json`: Application descriptor template
- `templates/xml-view.xml`: XML view with common patterns
- `templates/controller.js`: Controller with best practices
- `templates/formatter.js`: Common formatter functions
**Use templates** by copying to your project and replacing placeholders (`{{namespace}}`, `{{ControllerName}}`, etc.).
---
Core Concepts
1. MVC Architecture
- **Model**: Data layer (JSON, OData, XML, Resource models)
- **View**: Presentation layer (XML, JavaScript, JSON, HTML)
- **Controller**: Business logic layer
- **Binding**: Synchronizes model and view (One-way, Two-way, One-time)
**Reference**: `references/core-architecture.md` for detailed architecture concepts.
2. Component & Manifest
- **Component.js**: Entry point, initializes router and models
- **manifest.json**: Central configuration (models, routing, dependencies, data sources)
**Key manifest sections**:
- `sap.app`: Application me
40 SAP development plugins with evidence-tracked verification SAP development plugins for AI coding assistants, with public-source or package-registry verification tracked where available.
Repo: secondsky/sap-skills
Other skills on sap-skills.
- /sap-abap-cds
Comprehensive SAP ABAP CDS (Core Data Services) reference for data modeling, view development, and semantic enrichment. Use when creating CDS views or view entities, defining data models with annotations, working with associations and cardinality, implementing input parameters,
Open skill - /sap-abap
Comprehensive ABAP development skill for SAP systems. Use when writing ABAP code, working with internal tables, structures, ABAP SQL, object-oriented programming, RAP (RESTful Application Programming Model), CDS views, EML statements, ABAP Cloud development, string processing,
Open skill - /sap-ai-core
Guides development with SAP AI Core and SAP AI Launchpad for enterprise AI/ML workloads on SAP BTP. Use when: deploying generative AI models, building orchestration workflows with templating/filtering/grounding, implementing RAG with vector databases, managing ML training
Open skill - /sap-api-policy
Evidence-based assessment of whether an SAP API/interface usage scenario aligns with the SAP API Policy (v.4.2026a). Use whenever someone asks whether a way of calling SAP is allowed/compliant — e.g. Published API vs internal/private/"confidential" API status, "Documented Use",
Open skill - /sap-api-style
This skill provides comprehensive guidance for documenting SAP APIs following the SAP API Style Guide standards. It should be used when creating or reviewing API documentation for REST, OData, Java, JavaScript, .NET, or C/C++ APIs. The skill covers naming conventions,
Open skill - /sap-browser-automation
Use when an agent must inspect or operate an authenticated SAP web UI through an in-app Browser, Microsoft Edge CDP, or an existing Playwright client, especially when SAP SSO reuse, isolated Edge profiles, deterministic target selection, screenshots, or browser bootstrap
Open skill

