sap-samples/cap-agentic-engineered · Archived

sap-ui5

Query @ui5/mcp-server before writing SAPUI5 controllers, XML views, control APIs, or model bindings. Triggers on views and controller extensions in app/.

First seen Jun 18, 2026

Installation

$ npx skills add sap-samples/cap-agentic-engineered --skill sap-ui5

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from sap-samples/cap-agentic-engineered.

npx skills add sap-samples/cap-agentic-engineered

Browse all from sap-samples/cap-agentic-engineered

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSES
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,685 B
  • docs SUMMARY.md 168 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

UI5 MCP-First Development

Before writing, modifying, debugging, or fixing SAPUI5 controllers, XML views, or control bindings, you MUST query the UI5 MCP server and apply its guidance.

Tools

Use mcpui5* tools — primarily mcpui5getapireference, mcpui5getguidelines, mcpui5runui5linter, and mcpui5getproject_info.

Workflow

  1. Query before coding — call mcpui5getapireference for control APIs, or mcpui5get_guidelines for project-level patterns
  2. Trust MCP over training knowledge — if guidance conflicts with what you know, follow MCP
  3. Run the linter after changes — call mcpui5runui5linter to catch deprecated APIs
  4. Prefer the simplest pattern when MCP returns multiple valid approaches

Scope

This skill covers:

  • XML views with sap.m, sap.f, sap.uxap namespaces
  • Controller extensions (app/**/ext/controller/*.js)
  • Model bindings, formatters, event handlers
  • Control APIs and property configuration

UI5 Code Standards

  • XML views only — no JavaScript views
  • sap.ui.define for all modules — no globals
  • Async loading: data-sap-ui-async="true"
  • i18n for all user-facing text
  • No deprecated APIs (jQuery.sap.*, sync loading, sap.ui.getCore())
  • Fiori Elements controller extensions must be plain objects (not ES6 classes) — this refers to the ExtensionAPI instance