ui-theme-designer-help

ui-theme-designer-help is a skill for Claude Code from SAP/ui-theme-designer-plugins-for-coding-agents. It costs 217 tokens per session (801 once invoked), scanned A, original, Apache-2.0.

Customer-facing documentation for SAP UI theme designer, a tool for creating and managing the visual design of SAP applications on BTP and Cloud Foundry.

In plain words
What is it for?
Use it to look up how to create, edit, publish, transport, and organize themes and theme sets, and how to manage users and roles.
Why use it?
It helps you check the official guidance for setup, access roles, theme publishing, transport between systems, and fallback behavior without guessing.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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.

agentmods
npx agentmods add skills/sap/ui-theme-designer-plugins-for-coding-agents/ui-theme-designer-help
Any agent
npx skills add SAP/ui-theme-designer-plugins-for-coding-agents --skill ui-theme-designer-help
Clone the repo
git clone --depth 1 https://github.com/SAP/ui-theme-designer-plugins-for-coding-agents

Made for: Claude Code.

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 ui-theme-designer-help

README.md
[![agentmods](https://agentmods.dev/badge/skills/sap/ui-theme-designer-plugins-for-coding-agents/ui-theme-designer-help.svg)](https://agentmods.dev/skills/sap/ui-theme-designer-plugins-for-coding-agents/ui-theme-designer-help)
Your own site
<a href="https://agentmods.dev/skills/sap/ui-theme-designer-plugins-for-coding-agents/ui-theme-designer-help"><img src="https://agentmods.dev/badge/skills/sap/ui-theme-designer-plugins-for-coding-agents/ui-theme-designer-help.svg" alt="Measured on agentmods" height="20"></a>
Per session 217 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 801 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00217 $0.00801
Opus 5 $0.00109 $0.00400
Sonnet 5 $0.00043 $0.00160
Haiku 4.5 $0.00022 $0.00080

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

Security

Grade A, and why

ui-theme-designer-help scanned grade A with 1 finding 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 6d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

allowed-tools: Bash(curl *) Bash(jq *)
plugins/ui-theme-designer/skills/ui-theme-designer-help/SKILL.md · 39 lines

How it starts

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

UI theme designer help

Context

The UI theme designer documentation is served by https://help.sap.com via a JSON HTTP API:

  • Deliverable metadata — resolves human-readable identifiers to internal IDs and provides the flat readable-URL-to-loio mapping: GET https://help.sap.com/http.svc/deliverableMetadata?product_url=btp&deliverable_url=ui-theme-designer&version=LATEST Returns data.deliverable.id (deliverable_id), data.deliverable.buildNo, and data.filePath (landing page file path).

  • Page content — fetches the HTML body of a single topic, and optionally the full hierarchical TOC: GET https://help.sap.com/http.svc/pagecontent?deliverable_id={id}&buildNo={buildNo}&file_path={loio}.html Returns data.body (HTML). With the extra param deliverableInfo=1 also returns data.deliverable.fullToc — a recursive tree of {t: title, u: filename, c: children[]} nodes covering all 80+ topics.

Procedure

Use curl -s to call all API endpoints, and jq to parse the JSON responses.

  1. Fetch deliverable metadata to obtain deliverable_id and buildNo:
    curl -s "https://help.sap.com/http.svc/deliverableMetadata?product_url=btp&deliverable_url=ui-theme-designer&version=LATEST" | jq '{id: .data.deliverable.id, buildNo: .data.deliverable.buildNo, filePath: .data.filePath}'
    
  2. Fetch the landing page with deliverableInfo=1 to get the full TOC tree:
    curl -s "https://help.sap.com/http.svc/pagecontent?deliverableInfo=1&deliverable_id={id}&buildNo={buildNo}&file_path={filePath}" | jq '.data.deliverable.fullToc'
    
  3. From the TOC, identify the topic(s) whose title best matches the user's question. If uncertain, pick 2–3 candidates.
  4. For each candidate, fetch its page content and strip HTML tags:
    curl -s "https://help.sap.com/http.svc/pagecontent?deliverable_id={id}&buildNo={buildNo}&file_path={loio}.html" | jq -r '.data.body' | sed 's/<[^>]*>//g' | tr -s '\n'
    
  5. Answer based on the retrieved content.

Read the full file on GitHub · 39 lines

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. 6d ago First seen · 39 lines · 217 tokens per session scan A c68273876b55

Subscribe to this mod's changes

ui-theme-designer-help is a skill published in the GitHub repository SAP/ui-theme-designer-plugins-for-coding-agents (2 stars, last pushed 16d ago), licensed Apache-2.0. It adds 217 tokens to every session and 801 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sap-expert

Expert in SAP ERP systems, ABAP programming, SAP HANA, S/4HANA, Fiori applications, and SAP integration patterns including OData, RFC, and IDoc. Use when the user mentions ERP, enterprise, business apps, ABAP, HANA, or S/4HANA, or when the task involves SAP Ecosystem, ABAP Development, Integration Technologies, or…

personamanagmentlayer/pcl · 92 tokens

change-management

Use when planning or executing organizational change for an SAP implementation. Triggers on requests for stakeholder impact analysis, change readiness assessment, communication planning, training needs analysis, resistance management, or adoption measurement.

vigneshbarani24/sap-superpowers · 42 tokens

estimation

Use when estimating effort, timelines, or complexity for SAP work items, sprints, phases, or full projects. Triggers on requests for hours, days, duration, cost, resource count, or project sizing.

vigneshbarani24/sap-superpowers · 46 tokens

fit-gap-analysis

Use when classifying business requirements against SAP standard capability during Explore phase. Triggers on requests to assess coverage, identify gaps, classify requirements, determine custom development need, or build a fit-gap matrix.

vigneshbarani24/sap-superpowers · 44 tokens

process-design

Use when designing SAP business processes during Explore or Realize phases. Triggers on requests to map current processes, design future-state processes, define process variants, assign process owners, set KPIs, or align to SAP Best Practices.

vigneshbarani24/sap-superpowers · 49 tokens

solution-architecture

Use when designing SAP solution landscapes, defining integration architecture, making BTP vs on-premise decisions, creating extensibility strategies, or producing solution architecture documents for any SAP implementation.

vigneshbarani24/sap-superpowers · 39 tokens