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 BoxLogoDev/sapstack --skill sap-btpgit clone --depth 1 https://github.com/BoxLogoDev/sapstackWrote 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/boxlogodev/sapstack/sap-btp)<a href="https://agentmods.dev/skills/boxlogodev/sapstack/sap-btp"><img src="https://agentmods.dev/badge/skills/boxlogodev/sapstack/sap-btp.svg" alt="Measured on agentmods" 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.00132 | $0.02149 |
| Opus 5 | $0.00066 | $0.01074 |
| Sonnet 5 | $0.00026 | $0.00430 |
| Haiku 4.5 | $0.00013 | $0.00215 |
Grade A, and why
sap-btp 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 2d 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 — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.
1. BTP Landscape Structure
Global Account
└── Subaccount (region-specific)
├── Cloud Foundry (CF) Environment
│ └── Spaces → CF Applications + Service Instances
├── Kyma Environment
│ └── Namespaces → Pods / Serverless Functions
└── BTP ABAP Environment
└── ABAP Instances (Clean Core ABAP development)
Key platform services:
| Service | Purpose |
|---|---|
| XSUAA | OAuth 2.0 authorization server — user auth + service-to-service |
| Destination Service | Connection config to backend systems (S/4HANA, etc.) |
| Connectivity Service | On-premise access via Cloud Connector (SCC) |
| Event Mesh | Async event-driven messaging between applications |
| HANA Cloud | Managed SAP HANA database service |
| Alert Notification | Event-based alerting and notification |
2. CAP (Cloud Application Programming Model)
Project Structure
my-cap-project/
├── db/
│ └── schema.cds ← Data model (entities, associations)
├── srv/
│ ├── service.cds ← Service definition (projection, actions, functions)
│ └── service-impl.js ← Custom event handlers (Node.js)
│ └── service-impl.java ← Custom handlers (Java alternative)
├── app/
│ └── fiori-app/ ← Fiori Elements UI (optional)
├── mta.yaml ← Multi-target application deployment descriptor
└── package.json ← Node.js dependencies + CDS config
Essential Commands
cds init my-project # Scaffold new CAP project
cds watch # Local dev server with mock data + live reload
cds build # Compile CDS → HANA artifacts + OData metadata
cds deploy --to hana # Deploy DB schema to HANA Cloud
cf push # Deploy to Cloud Foundry
mbt build && cf deploy *.mtar # MTA build + deploy (recommended for production)
Custom Handler Patterns (Node.js)
module.exports = cds.service.impl(async function () {
const db = await cds.connect.to('db');
// Before hook — validate input
this.before('CREATE', 'MyEntity', async (req) => {
if (!req.data.CompanyCode) req.reject(400, 'CompanyCode is required');
});
// On hook — custom read logic
this.on('READ', 'MyEntity', async (req) => {
return db.run(req.query);
});
// Remote service call to S/4HANA
this.on('getStock', async (req) => {
const s4 = await cds.connect.to('S4HANA_MM');
return s4.run(SELECT.from('A_MaterialStock').where({ Plant: req.data.Plant }));
});
});
What ships with it
10 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.
- references/best-practices/governance.md 1.9 KB
- references/best-practices/operational.md 1.4 KB
- references/best-practices/period-end.md 1.3 KB
- references/de/quick-guide-de.md 1.9 KB
- references/en/quick-guide-en.md 1.8 KB
- references/ja/quick-guide-ja.md 2.0 KB
- references/ko/quick-guide.md 1.6 KB
- references/ko/SKILL-ko.md 6.3 KB
- references/vi/quick-guide-vi.md 2.0 KB
- references/zh/quick-guide-zh.md 1.7 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.
- 2d ago First seen · 247 lines · 132 tokens per session scan A d6bc254dfb99
sap-btp is a skill published in the GitHub repository BoxLogoDev/sapstack (18 stars, last pushed 6d ago), licensed MIT. It adds 132 tokens to every session and 2,149 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-09-04.
Other skills, from other repositories
sap-btp-developer-guide
Develops business applications on SAP Business Technology Platform (BTP) using CAP (Node.js/Java) or ABAP Cloud. Use when: building cloud applications on SAP BTP, deploying to Cloud Foundry or Kyma runtimes, integrating with SAP HANA Cloud, implementing SAP Fiori UIs, connecting to remote SAP systems, building…
sap-btp-integration-suite
Enterprise integration solutions using SAP Integration Suite on BTP. Covers Cloud Integration (iFlows), API Management, Event Mesh, Edge Integration Cell, Integration Advisor, Trading Partner Management, and Migration Assessment. Use for building integration flows, managing API proxies, event-driven architectures…
sap-btp-connectivity
SAP BTP Connectivity skill covering Destination Service, Connectivity Service, Cloud Connector, Connectivity Proxy, and Transparent Proxy for Kubernetes. Use when configuring destinations (HTTP, RFC, LDAP, MAIL, TCP), setting up cloud-to-on-premise connectivity, implementing OAuth and principal propagation, deploying…
multi-tenant-architecture
Designs tenant isolation, hostname routing, custom-domain lifecycle, and plan limits on Cloudflare or Vercel. Use when asked to "isolate tenant data", "support custom domains", "build a white-label platform", or assess PSL registration. For general module structure use codebase-architecture; for SEO content use…
ring:migrating-to-lib-systemplane
Migrating Lerian Go services from .env/YAML operational knobs (log levels, feature flags, rate limits, timeouts) to the lib-systemplane hot-reloadable runtime config client, wiring the migration-only make systemplane-ddl pipeline (runtime DDL forbidden in v1.6.0+). Orchestrates an 11-gate cycle dispatching…
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…