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 efeumutaslan/SAP-SKILLS --skill sap-rap-comprehensivegit clone --depth 1 https://github.com/efeumutaslan/SAP-SKILLSWrote 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/efeumutaslan/sap-skills/sap-rap-comprehensive)<a href="https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-rap-comprehensive"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-rap-comprehensive/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/efeumutaslan/sap-skills/sap-rap-comprehensive"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-rap-comprehensive.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00104 | $0.03723 |
| Opus 5 | $0.00052 | $0.01861 |
| Sonnet 5 | $0.00021 | $0.00745 |
| Haiku 4.5 | $0.00010 | $0.00372 |
Grade A, and why
sap-rap-comprehensive 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.
How it starts
The opening of the file, as written. The whole thing — 399 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SAP RAP — RESTful Application Programming Model
Related Skills
sap-s4hana-extensibility— Extending standard SAP RAP BOssap-security-authorization— RAP authorization patternssap-testing-quality— RAP test doubles in depth
Quick Start
RAP BO in 5 artifacts:
1. Database Table → ZTAB_TRAVEL
2. CDS View Entity → ZI_Travel (interface, root)
3. Behavior Definition → ZI_Travel (managed, draft)
4. Behavior Impl. → ZBP_I_Travel (handler + saver)
5. Service Definition → ZSD_Travel → Service Binding (V4)
Minimum BDEF (managed with draft):
managed implementation in class zbp_i_travel unique;
strict ( 2 );
with draft;
define behavior for ZI_Travel alias Travel
persistent table ztab_travel
draft table zdraft_travel
etag master LocalLastChangedAt
lock master total etag LastChangedAt
authorization master ( global, instance )
{
field ( readonly ) TravelUUID;
field ( mandatory ) AgencyID, CustomerID;
create; update; delete;
determination SetStatusNew on modify { create; }
validation ValidateDates on save { field BeginDate, EndDate; }
action ( features : instance ) AcceptTravel result [1] $self;
draft action Resume;
draft action Edit;
draft action Activate optimized;
draft action Discard;
draft determine action Prepare;
mapping for ztab_travel corresponding;
}
Core Concepts
RAP Architecture Layers
┌─ Service Layer ──────────────────────────────┐
│ Service Definition → Service Binding (V2/V4) │
├─ BO Projection Layer ────────────────────────┤
│ CDS Projection View (C_*) + Projection BDEF │
├─ BO Interface Layer ─────────────────────────┤
│ CDS View Entity (I_*) + Behavior Definition │
│ + Behavior Implementation (Handler/Saver) │
├─ Data Layer ─────────────────────────────────┤
│ Database Tables / CDS Abstract Entities │
└──────────────────────────────────────────────┘
Implementation Types
| Type | When to Use | Key Difference |
|---|---|---|
| Managed | New greenfield development | Framework handles CRUD + persistence |
| Unmanaged | Wrapping legacy (BAPIs, FMs) | Developer handles all persistence |
| Managed + Unmanaged Save | Managed CRUD but custom save | Framework CRUD, you handle DB write |
| Managed + Additional Save | Managed save + extra side-effects | Framework saves, you do extra work |
What ships with it
7 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.
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.
- 11d ago First seen · 399 lines · 104 tokens per session scan A 8a6c89cd3b4a
sap-rap-comprehensive is a skill published in the GitHub repository efeumutaslan/SAP-SKILLS (5 stars, last pushed 5mo ago), licensed MIT. It adds 104 tokens to every session and 3,723 once invoked, about $0.0005 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.
Other skills, from other repositories
data-contract-migrations
Design and verify data contracts, schema changes, migrations, rollbacks, backfills, compatibility windows, tenant isolation, and API-to-database field mapping. Use when changing database schema, event payloads, persisted documents, analytics tables, multi-tenant data boundaries, or any user-visible data contract where…
cds-view-entities
Help with CDS (Core Data Services) view entity development including data modeling, annotations, associations, compositions, access controls, aggregate expressions, built-in functions, and input parameters. Use when users ask about CDS views, CDS view entities, CDS annotations, CDS associations, CDS compositions, CDS…
sap-cap-capire
SAP Cloud Application Programming Model (CAP) development skill using Capire documentation. Use when: building CAP applications, defining CDS models, implementing services, working with SAP HANA/SQLite/PostgreSQL databases, deploying to SAP BTP Cloud Foundry or Kyma, implementing Fiori UIs, handling authorization…
sap-sqlscript
This skill should be used when the user asks to "write a SQLScript procedure", "create HANA stored procedure", "implement AMDP method", "optimize SQLScript performance", "handle SQLScript exceptions", "debug HANA procedure", "create table function", "inspect a browser-based Datasphere SQL editor with Microsoft Edge…
moodle-performance
Use when optimizing Moodle plugin performance — MUC caching definitions, query optimization, recordsets vs records, ad-hoc and scheduled tasks, lazy loading, OPcache, query log analysis, $PERF, and performance debug toolbar.
performance-caching-rate-limits
Use this capability for performance optimization, load tests, k6/JMeter/Locust plans, caching, Redis, CDN, Cache-Control, invalidation, rate limiting, quotas, token bucket, sliding window, 429 behavior, abuse protection, and cost-based throttling.