generate-rap-service

generate-rap-service is a skill for Claude Code from arc-mcp/arc-1. It costs 76 tokens per session (9,131 once invoked), scanned A, original, MIT.

A generator for creating a complete RAP OData UI service from a plain-language description of a business object, such as orders or travel requests.

In plain words
What is it for?
Use it to scaffold a Fiori-style SAP application with standard create, read, update, and delete operations, with optional drafts.
Why use it?
It provides the connected SAP database, data views, business rules, user-interface metadata, and service files needed for a starting application.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the arc-1 plugin — 24 skills, 8 commands, 1 MCP server shipped together

Good fit Use it to scaffold a Fiori-style SAP application with standard create, read, update, and delete operations, with optional drafts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arc-mcp/arc-1/generate-rap-service
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 arc-mcp/arc-1 --skill generate-rap-service
Clone the repo
git clone --depth 1 https://github.com/arc-mcp/arc-1

Made for: Claude Code.

Or install arc-1, the plugin that ships this one along with the rest of its 24 skills, 8 commands, 1 MCP server.

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 generate-rap-service

README.md
[![agentmods](https://agentmods.dev/badge/skills/arc-mcp/arc-1/generate-rap-service/github.svg)](https://agentmods.dev/skills/arc-mcp/arc-1/generate-rap-service)
Your own site
<a href="https://agentmods.dev/skills/arc-mcp/arc-1/generate-rap-service"><img src="https://agentmods.dev/badge/skills/arc-mcp/arc-1/generate-rap-service/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 generate-rap-service

Your own site · 80×15
<a href="https://agentmods.dev/skills/arc-mcp/arc-1/generate-rap-service"><img src="https://agentmods.dev/badge/skills/arc-mcp/arc-1/generate-rap-service.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,131 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 208
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00076 $0.09131
Opus 5 $0.00038 $0.04566
Sonnet 5 $0.00015 $0.01826
Haiku 4.5 $0.00008 $0.00913

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

Security

Grade A, and why

generate-rap-service 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 10d 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/generate-rap-service/SKILL.md · 894 lines

How it starts

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

Generate RAP OData UI Service

Generate a complete RAP OData UI service from a natural language description of a business object. Creates the full artifact stack: database table, CDS views, behavior definitions, metadata extension, service definition, and behavior pool class.

This skill replicates SAP Joule's "RAP Service Generation" capability by combining ARC-1 (SAP system access) with mcp-sap-docs (documentation & best practices).

v1 Guardrails (fast path): managed scenario only, UUID internal early numbering, single root entity by default, standard CRUD first, draft optional, OData V4 preferred. For multi-entity compositions or heavy custom actions, prefer generate-rap-service-researched.

Smart Defaults (apply silently, do NOT ask)

Setting Default Rationale
Package User's Z* package with transport Production-ready; only use $TMP if user explicitly asks
Key strategy UUID (sysuuid_x16), managed numbering Simplest, no collision risk
Behavior scenario Managed Framework handles CRUD
OData version V4 Current SAP standard
Draft Prefer for transactional Fiori Elements UI services; verify against release/constraints Best default for editable FE apps, but not every RAP service needs draft
Admin fields syuname/timestampl (on-prem) or abp_* types (BTP) System-appropriate
Strict mode strict ( 2 ) unless system patterns or SAP constraints justify otherwise Current RAP best practice, but not universal
Entity prefix Z + entity name (e.g., ZTRAVEL) SAP standard Z namespace
Naming SAP standard: ZI_, ZC_, ZSD_, ZSB_, ZBP_I_ Consistent with SAP docs
Service exposure OData V4 UI provider contract by default Best fit for Fiori Elements unless the use case is API-first

Input

The user provides a natural language description of the business object (e.g., "a travel booking app with fields for agency, customer, destination, begin/end date, total price, currency, status").

Read the full file on GitHub · 894 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. 10d ago First seen · 894 lines · 76 tokens per session scan A c3eb5f3669c6

Subscribe to this mod's changes

generate-rap-service is a skill published in the GitHub repository arc-mcp/arc-1 (183 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 9,131 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-30.

Related

Other skills, from other repositories

event-store-design

Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.

wshobson/agents · 33 tokens

convex-explain-app

Explain an existing Convex app — data model + relationships, public vs internal functions, auth/ownership model, components, a request→data flow — read from the schema and function surface. Read-only.

openclaw/clawhub · 47 tokens

platform-custom-field-generate

Use this skill when users need to create, generate, or validate Salesforce Custom Field metadata. Trigger when users mention custom fields, field types, Roll-up Summary fields, Master-Detail relationships, Lookup relationships, formula fields, picklists, dependent (controlling) picklists, referencing a value set from…

forcedotcom/sf-skills · 194 tokens

field-service-sobject-create-configure

Headless 360 REST API deployment step for creating sObject records. Handles describe-based field discovery, required-field derivation, entity-relationship ordering, and composite graph transactions. Use this skill when a designer skill (or a user directly) needs to create sObject records after design confirmation…

forcedotcom/sf-skills · 74 tokens

openloomi-api

OpenLoomi ships a local-first HTTP API served from the desktop app (port 3414, fallback 3515). All auth, Memory, AI, RAG, Loop, and Audit data live in a local SQLite database — your data stays on your machine and the OpenLoomi app is the source of truth. The only externally-routed auth path is the Composio OAuth…

melandlabs/openloomi · 106 tokens

nornicdb-grpc

Drive NornicDB over gRPC — the Qdrant-compatible surface (Collections, Points, Snapshots) plus the additive NornicSearch service. Use when ingesting via Qdrant SDKs, migrating from Qdrant, or running hybrid text+vector search from a non-Bolt client. Covers connection, RPC catalog, collection→database mapping…

orneryd/NornicDB · 98 tokens