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.
npx skills add SAP/ai-skills-library --skill sap-fiori-iosgit clone --depth 1 https://github.com/SAP/ai-skills-libraryWrote 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.
[](https://agentmods.dev/skills/sap/ai-skills-library/sap-fiori-ios)<a href="https://agentmods.dev/skills/sap/ai-skills-library/sap-fiori-ios"><img src="https://agentmods.dev/badge/skills/sap/ai-skills-library/sap-fiori-ios/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.
<a href="https://agentmods.dev/skills/sap/ai-skills-library/sap-fiori-ios"><img src="https://agentmods.dev/badge/skills/sap/ai-skills-library/sap-fiori-ios.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00140 | $0.06546 |
| Opus 5 | $0.00070 | $0.03273 |
| Sonnet 5 | $0.00028 | $0.01309 |
| Haiku 4.5 | $0.00014 | $0.00655 |
Grade A, and why
sap-fiori-ios 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 13d 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.
How it starts
The opening of the file, as written. The whole thing — 444 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SAP Fiori for iOS — Design Skill
Figma UI Kit
File key: 1450853598524410675
Community URL: https://www.figma.com/community/file/1450853598524410675/sap-fiori-for-ios-ui-kit
How to read a component from Figma
get_figma_data(fileKey: "1450853598524410675", nodeId: "<nodeId>", depth: 3)
Known Page Node IDs (depth=1 from file root)
| Page | Contents |
|---|---|
| Cover | File cover |
| 🎨 Foundations | Colors, typography, spacing, elevation |
| 🔘 Buttons | FioriButton all variants |
| 🗂 Cards | Card, KPI Card, Timeline Card |
| 📋 Lists | ObjectItem, SectionHeader, KeyValueItem |
| 🗺 Navigation | TabBar, NavigationBar, SideBar |
| 📝 Forms | TextFieldFormView, NoteFormView, SwitchFormView |
| 📊 Charts | All chart types |
| 🔔 Notifications | Banners, toasts, badges |
| 📅 Pickers | DateTimePicker, DurationPicker |
| 📈 KPI | KPIItem, KPIProgressItem, KPIHeader |
Core Rule: NEVER hardcode hex values
Always use Fiori color tokens. The API is:
// Dynamic color (adapts to Light / Dark automatically)
Color.preferredColor(.primaryLabel)
// In a view modifier context
.foregroundStyle(Color.preferredColor(.tintColor))
// Force a specific scheme
Color.preferredColor(.tintColor, background: .darkConstant)
See references/foundations/colors.md and references/colors.md for the full token table.
Figma Variant → SwiftUI Mapping
FioriButton
| Figma Variant Property | Figma Value | SwiftUI |
|---|---|---|
| Type | Primary | .fioriPrimaryButtonStyle |
| Type | Secondary | .fioriSecondaryButtonStyle |
| Type | Tertiary | .fioriTertiaryButtonStyle |
| Type | Destructive | .fioriDestructiveButtonStyle |
| Type | Menu | .fioriMenuButtonStyle |
| State | Default | (no modifier) |
| State | Pressed | .disabled(false) + tap gesture |
| State | Disabled | .disabled(true) |
// Primary button
FioriButton { _ in Text("Continue") }
.fioriButtonStyle(.fioriPrimaryButtonStyle)
// Secondary
FioriButton { _ in Text("Cancel") }
.fioriButtonStyle(.fioriSecondaryButtonStyle)
// Full width
FioriButton { _ in Text("Submit") }
.fioriButtonStyle(.fioriPrimaryButtonStyle)
.frame(maxWidth: .infinity)
What ships with it
60 files 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.
- .well-known/skills/index.json 502 B
- README.md 6.1 KB
- references/carplay/design-principles.md 2.2 KB
- references/carplay/get-started.md 1.4 KB
- references/colors.md 3.7 KB
- references/components/activity-indicator.md 3.4 KB
- references/components/attachment-form-cell.md 7.2 KB
- references/components/avatars-and-images.md 269 B
- references/components/avatars.md 8.5 KB
- references/components/banner.md 8.2 KB
- references/components/button-form-cell.md 4.9 KB
- references/components/buttons.md 11 KB
- references/components/calendar.md 8.7 KB
- references/components/cards.md 37 KB
- references/components/chart-header.md 6.0 KB
- references/components/checkout-indicator.md 4.8 KB
- references/components/collection-view.md 14 KB
- references/components/contact-cell.md 5.2 KB
- references/components/data-table.md 8.7 KB
- references/components/dimension-selector.md 4.2 KB
- references/components/empty-state-view.md 2.2 KB
- references/components/error-handling.md 3.6 KB
- references/components/feedback-indicators.md 3.9 KB
- references/components/filter-feedback-bar.md 11 KB
- references/components/filter-form-cell.md 5.5 KB
- references/components/hierarchy-view.md 5.8 KB
- references/components/illustrated-message.md 10 KB
- references/components/info-view.md 7.6 KB
- references/components/inline-signature-form-cell.md 7.8 KB
- references/components/inline-validation.md 6.8 KB
- references/components/key-value-table-view-cell.md 4.5 KB
- references/components/kpi-header.md 5.8 KB
- references/components/kpis.md 8.5 KB
- references/components/linear-progress-indicator.md 7.6 KB
- references/components/list-picker-form-cell.md 9.9 KB
- references/components/modals.md 5.8 KB
- references/components/multi-message-handling.md 8.8 KB
- references/components/navigation-bar.md 8.9 KB
- references/components/object-cell.md 8.6 KB
- references/components/object-header.md 9.4 KB
- references/components/offline.md 6.1 KB
- references/components/order-picker-form-cell.md 8.9 KB
- references/components/pickers.md 6.3 KB
- references/components/preview-table-view.md 5.0 KB
- references/components/profile-header.md 7.6 KB
- references/components/progress-and-processing-indicator.md 4.5 KB
- references/components/rating-control-form-cell.md 4.1 KB
- references/components/rating-control.md 4.7 KB
- references/components/search-bar.md 6.0 KB
- references/components/search-to-select.md 7.6 KB
- references/components/segmented-control-form-cell.md 6.1 KB
- references/components/segmented-control.md 3.4 KB
- references/components/sheets.md 6.6 KB
- references/components/sibling-navigation.md 6.4 KB
- references/components/sidebar.md 7.5 KB
- references/components/signature-capture.md 5.3 KB
- references/components/skeleton-loading.md 11 KB
- references/components/slider-form-cell.md 5.9 KB
- references/components/standard-table-view-cell.md 3.2 KB
- references/components/status-info-label.md 5.4 KB
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.
- 13d ago First seen · 444 lines · 0 tokens per session scan A 4421ed753e21
sap-fiori-ios is a skill published in the GitHub repository SAP/ai-skills-library (51 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 140 tokens to every session and 6,546 once invoked, about $0.0007 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-30.
Other skills, from other repositories
adaptive
Instructions to make or update an app's UI so that it adapts to different Android devices including phones, tablets, foldables, laptops, desktop, TV, Auto and XR. It includes how to handle different window sizes, pointing devices (such as mouse) and text entry devices (such as keyboard) using the Compose MediaQuery…
styles
Use this skill to integrate the Jetpack Compose Styles API into an Android project. This skill guides you through upgrading dependencies, setting up component themes, making custom components styleable, and migrating existing layout properties to use unified styles. Migrate custom design system components, replace…
display-glasses-with-jetpack-compose-glimmer
Provides guidelines for developing projected Android XR apps for display glasses using the Jetpack Compose Glimmer UI toolkit. This skill covers foundational Glimmer design principles, workflows for implementing Jetpack Compose Glimmer, and interaction models for the glasses form factor. Use this skill to build an…
hz-unity-meta-quest-ui
Configures Unity UI for Meta Quest and Horizon OS VR development — world-space canvases, TextMesh Pro setup, comfortable sizing, viewing distances, and interaction readiness.
adapt
Responsive layout pass covering breakpoints, touch targets, safe areas, and fluid type. Use when the UI has layout or touch issues on mobile/tablet, when adding a new screen that hasn't been tested across viewports, or when the user says "make it responsive" / "fix mobile layout". Invoke when the user asks for adapt…
hig
Applies Human Interface Guidelines (HIG) principles — Hierarchy, Harmony, and Consistency — to UI/UX designs to ensure intuitive and cohesive interfaces / Menerapkan prinsip Human Interface Guidelines (HIG) — Hierarchy, Harmony, dan Consistency — pada desain UI/UX untuk memastikan antarmuka yang intuitif dan kohesif.