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-event-meshgit 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-event-mesh)<a href="https://agentmods.dev/skills/efeumutaslan/sap-skills/sap-event-mesh"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-event-mesh/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-event-mesh"><img src="https://agentmods.dev/badge/skills/efeumutaslan/sap-skills/sap-event-mesh.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.00083 | $0.02705 |
| Opus 5 | $0.00042 | $0.01352 |
| Sonnet 5 | $0.00017 | $0.00541 |
| Haiku 4.5 | $0.00008 | $0.00270 |
Grade A, and why
sap-event-mesh 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
token_resp = requests.post( How it starts
The opening of the file, as written. The whole thing — 324 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SAP Event Mesh & Event-Driven Architecture
Related Skills
sap-kyma-runtime— Event-driven Functions on Kyma consuming Event Meshsap-s4hana-extensibility— S/4HANA business events as event sourcessap-build-process-automation— Trigger workflows from events
Quick Start
Choose your event broker:
| Broker | Use Case | Protocol | Scale |
|---|---|---|---|
| SAP Event Mesh | BTP-native events, simple pub/sub | AMQP 1.0, REST, MQTT | Standard workloads |
| Advanced Event Mesh | Enterprise event mesh, multi-cloud | AMQP, MQTT, REST, SMF, JMS, WebSocket | High throughput, global |
Minimal CAP event producer:
// srv/order-service.js
const cds = require('@sap/cds');
module.exports = class OrderService extends cds.ApplicationService {
async init() {
this.after('CREATE', 'Orders', async (order) => {
const msg = await cds.connect.to('messaging');
await msg.emit('sap/sales/order/created/v1', {
orderId: order.ID,
customer: order.customer_ID,
total: order.total
});
});
await super.init();
}
};
Core Concepts
CloudEvents Specification
SAP Event Mesh uses CloudEvents 1.0 standard:
{
"specversion": "1.0",
"type": "sap.s4.beh.salesorder.v1.SalesOrder.Created.v1",
"source": "/default/sap.s4.beh/S4HANA_CLD",
"id": "a1b2c3d4-5678-90ab-cdef",
"time": "2026-03-24T10:00:00Z",
"datacontenttype": "application/json",
"data": {
"SalesOrder": "1000001",
"SalesOrganization": "1010",
"SoldToParty": "CUST001"
}
}
Topic Naming Convention
{namespace}/{business-object}/{event-type}/{version}
Examples:
sap.s4.beh/salesorder/created/v1
sap.s4.beh/businesspartner/changed/v1
custom/myapp/order/fulfilled/v1
Hierarchy rules:
- Use
/as level separator - Wildcards:
+(single level),*(multi-level) — for subscriptions only - Subscription example:
sap/s4/beh/+/created/v1matches all "created" events
What ships with it
2 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 · 324 lines · 83 tokens per session scan A 52b3a6dc11f8
sap-event-mesh 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,705 once invoked, about $0.0004 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-31.
Other skills, from other repositories
cao-provider
Create a new CLI agent provider for CAO (CLI Agent Orchestrator). Use this skill whenever the user wants to add support for a new CLI-based AI agent (e.g., a new coding assistant CLI), integrate a new provider, or scaffold a provider implementation. Also use when the user asks about the provider architecture, what…
adt-api-discovery
Investigate SAP ADT REST API endpoints. Use when the user asks about ADT API endpoints, request/response XML formats, content types, or how a specific ADT feature works under the hood. Teaches how to trace from discovery documents → RESAPP classes → handler classes → Simple Transformations → XML schemas. Requires the…
api-design
REST/GraphQL/gRPC API design best practices. Use when designing APIs, defining contracts, handling versioning. Covers OpenAPI 3.2, GraphQL Federation, gRPC streaming.
ask-opencli
A helper for asking Grok or Gemini through OpenCLI, which uses an already signed-in Chrome browser session instead of a paid API.
gemma4-local-deploy
A guide for running Gemma 4 12B, an AI language model, locally on a Mac or Apple Silicon computer. It uses downloaded model files and a local service that provides an OpenAI-compatible API or Ollama access when requested.
config-secrets-environments
Design, audit, and verify configuration, environment separation, secrets, BYOK flows, key rotation, config schema validation, and drift checks across local, dev, staging, and production. Use when adding env vars, changing runtime config, handling API keys or user-provided keys, diagnosing config drift, or preparing…