sap-build-apps

sap-build-apps is a skill for Claude Code, Codex from efeumutaslan/SAP-SKILLS. It costs 83 tokens per session (2,294 once invoked), scanned A, original, MIT.

A guide for building web and mobile applications in SAP Build Apps, SAP's visual low-code/no-code app builder. It covers drag-and-drop screens, data connections, and formula-based logic.

In plain words
What is it for?
Use it to build visual apps, connect S/4HANA or other services through BTP destinations and OData or REST, add flow logic, and deploy web or mobile applications.
Why use it?
It gives developers a structured way to connect SAP or REST data, add application behavior, preview the result, and deploy it through SAP Business Technology Platform.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build visual apps, connect S/4HANA or other services through BTP destinations and OData or REST, add flow logic, and deploy web or mobile applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/efeumutaslan/sap-skills/sap-build-apps
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add efeumutaslan/SAP-SKILLS --skill sap-build-apps
Clone the repo
git clone --depth 1 https://github.com/efeumutaslan/SAP-SKILLS

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sap-build-apps

README.md
[![agentmods](https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-build-apps/github.svg)](https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-build-apps)
Your own site
<a href="https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-build-apps"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-build-apps/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sap-build-apps

Your own site · 80×15
<a href="https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-build-apps"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-build-apps.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,294 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00083 $0.02294
Opus 5 $0.00042 $0.01147
Sonnet 5 $0.00017 $0.00459
Haiku 4.5 $0.00008 $0.00229

Measured 11d ago against content hash f6a18f2b5a91, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

sap-build-apps scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/sap-build-apps/SKILL.md · 241 lines

How it starts

The opening of the file, as written. The whole thing — 241 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SAP Build Apps (Low-Code/No-Code)

  • sap-build-process-automation — Trigger workflows from Build Apps
  • sap-s4hana-extensibility — Consume S/4HANA APIs in Build Apps
  • sap-security-authorization — BTP authentication for Build Apps

Quick Start

Getting started:

  1. Open SAP Build Lobby → Create → Build an Application → Web & Mobile Application
  2. Choose template or start blank
  3. Three main editors: UI Canvas (drag-drop), Data (integrations), Logic (flow functions)

Development flow:

Design UI ──► Connect Data ──► Add Logic ──► Preview ──► Build ──► Deploy
  │              │                │
  Canvas     Destinations/     Flow functions
  + Theme    OData/REST        + Formulas

Core Concepts

Application Types

Type Platform Deployment
Web App Browser BTP HTML5 Repository
Mobile (PWA) iOS/Android browser BTP + app icon
Mobile (Native) iOS/Android native App Store / Google Play via Build

Data Integration Options

Source Method Setup
SAP S/4HANA BTP Destination + OData Destination config in BTP cockpit
SAP SuccessFactors BTP Destination + OData Destination with OAuth2SAMLBearer
REST API Direct REST integration URL + auth headers
Firebase/Supabase Visual Cloud Functions API connector
Local (On-device) On-device storage Built-in, no config needed
BTP CAP BTP Destination + OData Destination to CAP service URL

Variable Types

Variable Scope Use Case
App Variable Global, in-memory User session state, auth token
Page Variable Single page Form inputs, UI state
Data Variable Bound to data resource API data (auto-fetch/refresh)
Page Parameter Passed between pages Navigation context (record ID)
Translation Variable Global Multi-language strings

Formula Language

// String
CONCATENATE("Hello, ", pageVars.userName)
UPPERCASE(data.customer.name)
FORMAT_LOCALIZED_DECIMAL(outputs.price, "en", 2)

// List operations
MAP(data.Orders, {id: item.ID, label: item.description})
SELECT(data.Orders, item.status == "Open")
SUM(MAP(data.OrderItems, item.quantity * item.unitPrice))
COUNT(data.Orders)

// Conditional
IF(pageVars.isAdmin, "Admin Panel", "User Dashboard")
IF(IS_EMPTY(data.results), "No results found", "Found " + COUNT(data.results))

// Date
FORMAT_DATETIME_LOCAL(NOW(), "YYYY-MM-DD")
DATETIME_DIFFERENCE(data.order.createdAt, NOW(), "days")

Read the full file on GitHub · 241 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 241 lines · 83 tokens per session scan A f6a18f2b5a91

Subscribe to this mod's changes

sap-build-apps is a skill published in the GitHub repository efeumutaslan/SAP-SKILLS (5 stars, last pushed 5mo ago), licensed MIT. It adds 83 tokens to every session and 2,294 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

mcp-apps-builder

Load the official MCP Apps builder skills (create-mcp-app, migrate-oai-app, add-app-to-server, convert-web-app) from github.com/modelcontextprotocol/ext-apps. Use when the user says "build an MCP App", "add a ui:// view to my MCP server", "create an interactive MCP App from scratch", "migrate from OpenAI Apps SDK to…

awslabs/cli-agent-orchestrator · 137 tokens

app-ui-design

Mobile app UI design expert for iOS and Android. Use when designing app interfaces, creating design systems, ensuring accessibility, or following platform guidelines. Covers Material Design 3, Human Interface Guidelines, color theory, typography, and 2025 trends.

majiayu000/spellbook · 54 tokens

app-user-story-qa

End-to-end app feature inventory and user-story testing workflow with a canonical tracker. Use when the user asks to audit every feature, derive expected behavior from code, test user journeys, or explicitly fix and retest documented UX or logistical defects.

majiayu000/spellbook · 54 tokens

css-debug

Use this skill to diagnose CSS and frontend layout issues such as positioning, overflow clipping, Tailwind class conflicts, z-index stacking, and React rendering visibility problems.

majiayu000/spellbook · 35 tokens

frontend-design

Create distinctive, production-grade web frontend interfaces with high design quality. Use when the user explicitly asks to build or substantially redesign a web component, page, or application. Only applies when repository inspection confirms that the visual surface is a browser-rendered web UI. Do not use for native…

majiayu000/spellbook · 86 tokens

react-best-practices

React and Next.js performance playbook distilled from Vercel Engineering guidance. Use when building, reviewing, or refactoring React/Next.js code for waterfalls, bundle size, rendering cost, and client/server data flow.

majiayu000/spellbook · 50 tokens