-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathmarketplace.json
More file actions
1096 lines (1096 loc) · 47.6 KB
/
Copy pathmarketplace.json
File metadata and controls
1096 lines (1096 loc) · 47.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "sap-skills",
"version": "2.4.1",
"description": "SAP development skills with evidence-tracked public-source and package-registry verification",
"repository": "https://github.com/secondsky/sap-skills",
"owner": {
"name": "Eduard Jiglau",
"email": "hello@sap-ai-skills.com"
},
"metadata": {
"version": "2.4.1",
"last_updated": "2026-08-08",
"total_skills": 40,
"categories": [
"abap",
"ai",
"btp",
"cap",
"data-analytics",
"hana",
"tooling",
"ui-development"
]
},
"plugins": [
{
"name": "sap-abap",
"source": "./plugins/sap-abap",
"description": "Comprehensive ABAP development skill for SAP systems. Use when writing ABAP code, working with internal tables, structures, ABAP SQL, object-oriented programming, RAP (RESTful Application Programming Model), CDS views, EML statements, ABAP Cloud development, string processing, dynamic programming, RTTI/RTTC, field symbols, data references, exception handling, or ABAP unit testing. Covers both classic ABAP and modern ABAP for Cloud Development patterns.",
"version": "2.4.1",
"category": "abap",
"keywords": [
"abap",
"abap cloud",
"cds",
"internal tables",
"oop",
"rap",
"rest",
"sap",
"sap-abap",
"sql"
],
"license": "GPL-3.0",
"commands": [
"./commands/abap-cloud-review.md"
]
},
{
"name": "sap-abap-cds",
"source": "./plugins/sap-abap-cds",
"description": "Comprehensive SAP ABAP CDS (Core Data Services) reference for data modeling, view development, and semantic enrichment. Use when creating CDS views or view entities, defining data models with annotations, working with associations and cardinality, implementing input parameters, using built-in functions, writing CASE expressions, implementing access control with DCL, handling CURR/QUAN data types, troubleshooting CDS errors, querying CDS views from ABAP, or displaying data with SALV IDA. Covers ABAP 7.4+ through ABAP Cloud.",
"version": "2.4.1",
"category": "abap",
"keywords": [
"abap",
"abap cloud",
"cds",
"internal tables",
"oop",
"rap",
"sap",
"sap-abap-cds"
],
"license": "GPL-3.0",
"commands": [
"./commands/abap-cds-model-check.md"
]
},
{
"name": "sap-ai-core",
"source": "./plugins/sap-ai-core",
"description": "Guides development with SAP AI Core and SAP AI Launchpad for enterprise AI/ML workloads on SAP BTP. Use when: deploying generative AI models, building orchestration workflows with templating/filtering/grounding, implementing RAG with vector databases, managing ML training pipelines with Argo Workflows, configuring content filtering and data masking for PII protection, using the Generative AI Hub for prompt experimentation, managing prompt templates via the Prompt Registry, or integrating AI capabilities into SAP applications. Covers service plans (Free/Standard/Extended), model providers (Azure OpenAI, AWS Bedrock, GCP Vertex AI, Mistral, IBM, Perplexity), orchestration modules, embeddings, tool calling, and structured outputs.",
"version": "2.4.1",
"category": "ai",
"keywords": [
"artificial intelligence",
"btp",
"cap",
"core",
"llm",
"machine learning",
"sap",
"sap-ai-core"
],
"license": "GPL-3.0",
"commands": [
"./commands/ai-core-deployment-check.md"
]
},
{
"name": "sap-api-policy",
"source": "./plugins/sap-api-policy",
"description": "Evidence-based assessment of whether an SAP API/interface usage scenario aligns with the SAP API Policy (v.4.2026a). Use whenever someone asks whether a way of calling SAP is allowed/compliant — e.g. Published API vs internal/private/\"confidential\" API status, \"Documented Use\", whether a third-party tool / iPaaS / middleware / RPA bot / AI agent / MCP server may call SAP APIs, agentic or generative-AI access to SAP, bulk data extraction or replication into a lake/warehouse, custom Z/Y OData or RFC/BAPI wrappers and Clean Core, ADT/developer-tooling boundaries, ODP-RFC and other \"not permitted\" interfaces, partner Integration Certification, or RISE integration remediation. Trigger even when the policy is not named, e.g. \"are we allowed to…\", \"is it compliant to…\", \"can we connect X to SAP…\", \"will this break under the new API policy\". Produces a sourced technical assessment with a confidence level — explicitly NOT legal advice and NOT a final SAP compliance decision.",
"version": "2.4.1",
"category": "tooling",
"keywords": [
"api",
"automation",
"cli",
"development",
"odata",
"policy",
"productivity",
"sap",
"sap-api-policy",
"tools"
],
"license": "GPL-3.0"
},
{
"name": "sap-api-style",
"source": "./plugins/sap-api-style",
"description": "This skill provides comprehensive guidance for documenting SAP APIs following the SAP API Style Guide standards. It should be used when creating or reviewing API documentation for REST, OData, Java, JavaScript, .NET, or C/C++ APIs. The skill covers naming conventions, documentation comments, OpenAPI specifications, quality checklists, deprecation policies, and manual documentation templates. It ensures consistency with SAP API Business Hub standards and industry best practices. Keywords: SAP API, REST, OData, OpenAPI, Swagger, Javadoc, JSDoc, XML documentation, API Business Hub, API naming, API deprecation, x-sap-stateInfo, Entity Data Model, EDM, documentation tags, API quality, API templates",
"version": "2.4.1",
"category": "tooling",
"keywords": [
"api",
"automation",
"cli",
"development",
"java",
"javascript",
"odata",
"productivity",
"rest",
"sap",
"sap-api-style",
"style",
"tools",
"xml"
],
"license": "GPL-3.0",
"agents": [
"./agents/api-style-reviewer.md"
],
"commands": [
"./commands/api-style-review.md"
]
},
{
"name": "sap-browser-automation",
"source": "./plugins/sap-browser-automation",
"description": "Use when an agent must inspect or operate an authenticated SAP web UI through an in-app Browser, Microsoft Edge CDP, or an existing Playwright client, especially when SAP SSO reuse, isolated Edge profiles, deterministic target selection, screenshots, or browser bootstrap recovery is required.",
"version": "2.4.1",
"category": "tooling",
"keywords": [
"automation",
"browser",
"cli",
"development",
"edge",
"productivity",
"sap",
"sap-browser-automation",
"tools"
],
"license": "GPL-3.0"
},
{
"name": "sap-btp-best-practices",
"source": "./plugins/sap-btp-best-practices",
"description": "SAP BTP best practices for enterprise architecture, account management, security, and operations, with verification evidence tracked in the repository ledger. Use when planning BTP implementations, setting up account hierarchies, configuring environments, implementing authentication, designing CI/CD pipelines, establishing governance, building Platform Engineering teams, implementing failover strategies, or managing application lifecycle on SAP BTP. Keywords: SAP BTP, account hierarchy, global account, directory, subaccount, Cloud Foundry, Kyma, ABAP, SAP Identity Authentication, CI/CD, governance, Platform Engineering, failover, multi-region, SAP BTP best practices",
"version": "2.4.1",
"category": "btp",
"keywords": [
"abap",
"authentication",
"best",
"btp",
"cloud foundry",
"cloud platform",
"edge",
"kyma",
"practices",
"sap",
"sap-btp-best-practices"
],
"license": "GPL-3.0",
"commands": [
"./commands/btp-architecture-review.md"
]
},
{
"name": "sap-btp-build-work-zone-advanced",
"source": "./plugins/sap-btp-build-work-zone-advanced",
"description": "Develops and administers SAP Build Work Zone, advanced edition digital workplace solutions. Use when creating workspaces, workpages, and collaborative sites, developing UI Integration Cards in SAP Business Application Studio, building content packages and workspace templates, integrating with Microsoft 365/Teams/SharePoint/Google Drive, configuring chatbots and webhooks, implementing SCIM API user provisioning, setting up OData business records, managing themes and branding, configuring role-based access and SSO, troubleshooting deployment issues, or working with the Administration Console. Keywords: SAP Build Work Zone advanced edition, digital workplace, UI Integration Cards, content packages, workspace templates, SAP Business Application Studio, SAP Conversational AI, SCIM API, OData, Microsoft Teams integration, SSO, theming, Administration Console",
"version": "2.4.1",
"category": "btp",
"keywords": [
"advanced",
"api",
"btp",
"build",
"cloud foundry",
"cloud platform",
"deployment",
"kyma",
"odata",
"sap",
"sap-btp-build-work-zone-advanced",
"work",
"zone"
],
"license": "GPL-3.0",
"commands": [
"./commands/work-zone-content-check.md"
]
},
{
"name": "sap-btp-business-application-studio",
"source": "./plugins/sap-btp-business-application-studio",
"description": "This skill provides comprehensive guidance for SAP Business Application Studio (BAS), the cloud-based IDE on SAP BTP built on Code-OSS. Use when setting up BAS subscriptions, creating dev spaces, connecting to external systems, deploying MTA applications, troubleshooting connectivity issues, managing Git repositories, configuring runtime versions, or using the layout editor. Keywords: SAP Business Application Studio, BAS, SAP BTP, dev space, Cloud Foundry, MTA, multitarget application, SAP Fiori, CAP, HANA, destination, WebIDEEnabled, Cloud Connector, Service Center, Storyboard, Layout Editor, ABAP, OData, subscription, entitlements, role collection, Business_Application_Studio_Developer, Git, clone, push, pull, Gerrit, PAT, OAuth, asdf, runtime, Node.js, Java, Python, Task Explorer, CI/CD, Yeoman, generator, template wizard, mbt, mtar, debugging, breakpoint",
"version": "2.4.1",
"category": "btp",
"keywords": [
"abap",
"application",
"btp",
"business",
"cap",
"cloud foundry",
"cloud platform",
"fiori",
"hana",
"java",
"kyma",
"node.js",
"oauth",
"odata",
"python",
"sap",
"sap-btp-business-application-studio",
"studio"
],
"license": "GPL-3.0",
"commands": [
"./commands/bas-dev-space-diagnose.md"
]
},
{
"name": "sap-btp-cias",
"source": "./plugins/sap-btp-cias",
"description": "SAP BTP Cloud Integration Automation Service (CIAS) skill for guided integration workflows. Use when: setting up CIAS subscriptions, configuring destinations, assigning roles (CIASIntegrationAdministrator, CIASIntegrationExpert, CIASIntegrationMonitor), planning integration scenarios, working with My Inbox tasks, monitoring scenario execution, troubleshooting CIAS errors, creating OAuth2 instances, configuring identity providers for CIAS, understanding CIAS security architecture, or integrating SAP products (S/4HANA, SuccessFactors, BTP services, SAP Build, IBP).",
"version": "2.4.1",
"category": "btp",
"keywords": [
"btp",
"cias",
"cloud foundry",
"cloud platform",
"hana",
"kyma",
"oauth",
"sap",
"sap-btp-cias"
],
"license": "GPL-3.0",
"commands": [
"./commands/cias-scenario-check.md"
]
},
{
"name": "sap-btp-cloud-identity-services",
"source": "./plugins/sap-btp-cloud-identity-services",
"description": "SAP Cloud Identity Services for BTP applications: Identity Authentication (IAS), Identity Provisioning (IPS), and Authorization Management (AMS). Use when configuring authentication for BTP apps, setting up OIDC or SAML app registrations, federating corporate identity providers, establishing subaccount trust, provisioning users, writing AMS authorization policies, migrating from XSUAA to IAS-based authentication, or troubleshooting token and trust errors.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"authentication",
"authorization",
"btp",
"cloud",
"cloud foundry",
"cloud platform",
"identity",
"kyma",
"saml",
"sap",
"sap-btp-cloud-identity-services",
"services"
],
"license": "GPL-3.0",
"agents": [
"./agents/identity-security-advisor.md"
],
"commands": [
"./commands/identity-trust-check.md"
]
},
{
"name": "sap-btp-cloud-logging",
"source": "./plugins/sap-btp-cloud-logging",
"description": "This skill provides comprehensive guidance for SAP Cloud Logging service on SAP BTP. Use when setting up Cloud Logging instances, configuring log ingestion from Cloud Foundry or Kyma runtimes, implementing OpenTelemetry observability, analyzing logs/metrics/traces in OpenSearch Dashboards, configuring SAML authentication, managing certificates, or troubleshooting ingestion issues. Covers service plans (dev/standard/large), all 4 instance creation methods (BTP Cockpit, CF CLI, BTP CLI, Service Operator), all 4 ingestion methods (Cloud Foundry, Kyma, OpenTelemetry, JSON API), and security best practices.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"api",
"authentication",
"btp",
"cloud",
"cloud foundry",
"cloud platform",
"json",
"kyma",
"logging",
"saml",
"sap",
"sap-btp-cloud-logging"
],
"license": "GPL-3.0",
"commands": [
"./commands/btp-logging-ingestion-check.md"
]
},
{
"name": "sap-btp-cloud-platform",
"source": "./plugins/sap-btp-cloud-platform",
"description": "Comprehensive SAP Business Technology Platform (BTP) reference for cloud development, deployment, and operations. Use when setting up BTP accounts, working with Cloud Foundry environment, deploying to Kyma (Kubernetes, serverless), developing in ABAP environment (RAP, CDS), managing entitlements and quotas, configuring identity providers (XSUAA), using btp CLI or CF CLI, deploying multi-target applications (MTA), setting up connectivity (destinations, Cloud Connector), implementing CI/CD pipelines, extending SAP solutions, or troubleshooting BTP services. Covers all three runtime environments.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"abap",
"btp",
"cds",
"cloud",
"cloud foundry",
"cloud platform",
"deployment",
"kyma",
"platform",
"sap",
"sap-btp-cloud-platform",
"serverless"
],
"license": "GPL-3.0",
"agents": [
"./agents/btp-platform-advisor.md"
],
"commands": [
"./commands/btp-subaccount-readiness.md"
]
},
{
"name": "sap-btp-cloud-transport-management",
"source": "./plugins/sap-btp-cloud-transport-management",
"description": "Comprehensive skill for SAP Cloud Transport Management service on SAP BTP. Use when setting up transport landscapes, configuring transport nodes and routes, managing import queues, deploying MTAs across Cloud Foundry environments, integrating with CI/CD pipelines, configuring ABAP environment transports, troubleshooting deployment errors, or implementing change management workflows. Covers entitlements, subscriptions, role collections, service instances, destinations, and API integrations.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"abap",
"api",
"btp",
"cap",
"cloud",
"cloud foundry",
"cloud platform",
"deployment",
"kyma",
"management",
"sap",
"sap-btp-cloud-transport-management",
"transport"
],
"license": "GPL-3.0",
"commands": [
"./commands/btp-transport-check.md"
]
},
{
"name": "sap-btp-connectivity",
"source": "./plugins/sap-btp-connectivity",
"description": "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 connectivity proxies in Kubernetes/Kyma, troubleshooting connectivity errors (405, 407, 503), or configuring multitenancy.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"btp",
"cloud foundry",
"cloud platform",
"connectivity",
"http",
"kyma",
"oauth",
"sap",
"sap-btp-connectivity"
],
"license": "GPL-3.0",
"commands": [
"./commands/btp-destination-diagnose.md"
]
},
{
"name": "sap-btp-developer-guide",
"source": "./plugins/sap-btp-developer-guide",
"description": "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 multitenant SaaS applications, extending SAP S/4HANA or SuccessFactors, setting up CI/CD pipelines, implementing observability, or following SAP development best practices. Keywords: SAP BTP, Business Technology Platform, CAP, Cloud Application Programming Model, ABAP Cloud, Cloud Foundry, Kyma, SAP HANA Cloud, SAP Fiori, SAPUI5, CI/CD, observability, multitenant, SaaS, SAP BTP ABAP environment, SAP Business Application Studio, SAP Cloud SDK, SAP Integration Suite, SAP Event Mesh, SAP Connectivity Service, SAP Destination Service, XSUAA, OAuth, OpenID Connect, OData, CDS, Core Data Services, ABAP CDS, ABAP RESTful Application Programming Model, RAP, ABAP development, SAP BTP development",
"version": "2.4.1",
"category": "btp",
"keywords": [
"abap",
"btp",
"cap",
"cds",
"cloud foundry",
"cloud platform",
"developer",
"fiori",
"guide",
"hana",
"java",
"kyma",
"node.js",
"oauth",
"odata",
"rest",
"sap",
"sap-btp-developer-guide"
],
"license": "GPL-3.0",
"commands": [
"./commands/btp-app-readiness-review.md"
]
},
{
"name": "sap-btp-integration-suite",
"source": "./plugins/sap-btp-integration-suite",
"description": "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, B2B/EDI integrations, hybrid deployments, adapter configuration, Groovy/JavaScript message processing, and troubleshooting.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"api",
"btp",
"cloud foundry",
"cloud platform",
"deployment",
"edge",
"integration",
"javascript",
"kyma",
"migration",
"sap",
"sap-btp-integration-suite",
"suite"
],
"license": "GPL-3.0",
"agents": [
"./agents/integration-flow-advisor.md"
],
"commands": [
"./commands/integration-flow-review.md"
]
},
{
"name": "sap-btp-intelligent-situation-automation",
"source": "./plugins/sap-btp-intelligent-situation-automation",
"description": "This archived skill provides legacy guidance for SAP BTP Intelligent Situation Automation data export, unsubscription, and configuration review. It should be used only when maintaining existing ISA tenants, exporting data before access is removed, or understanding historical situation automation setups. The skill covers Event Mesh integration, destination configuration, system onboarding, user management with role collections, automatic situation resolution, unsubscription, and troubleshooting for existing deployments. Keywords: SAP BTP, Intelligent Situation Automation, ISA, situation handling, SAP S/4HANA, SAP S/4HANA Cloud, Event Mesh, Business Event Handling, situation automation, situation dashboard, analyze situations, SAP_COM_0345, SAP_COM_0376, SAP_COM_0092, SituationAutomationKeyUser, SituationAutomationAdminUser, Cloud Connector, cf-eu10, CA-SIT-ATM, business situations, situation types, situation actions",
"version": "2.4.1",
"category": "btp",
"keywords": [
"automation",
"btp",
"cloud foundry",
"cloud platform",
"deployment",
"hana",
"intelligent",
"kyma",
"sap",
"sap-btp-intelligent-situation-automation",
"situation"
],
"license": "GPL-3.0",
"commands": [
"./commands/isa-export-readiness.md"
]
},
{
"name": "sap-btp-job-scheduling",
"source": "./plugins/sap-btp-job-scheduling",
"description": "This skill provides comprehensive guidance for SAP BTP Job Scheduling Service development, configuration, and operations. It should be used when creating, managing, or troubleshooting scheduled jobs on SAP Business Technology Platform. The skill covers service setup, REST API usage, schedule types and formats, OAuth 2.0 authentication, multitenancy, Cloud Foundry tasks, Kyma runtime integration, and monitoring with SAP Cloud ALM and Alert Notification Service. Keywords: SAP BTP, Job Scheduling, jobscheduler, cron, schedule, recurring jobs, one-time jobs, Cloud Foundry tasks, CF tasks, Kyma, OAuth 2.0, XSUAA, @sap/jobs-client, REST API, asynchronous jobs, action endpoint, run logs, SAP Cloud ALM, Alert Notification Service, multitenancy, tenant-aware, BC-CP-CF-JBS",
"version": "2.4.1",
"category": "btp",
"keywords": [
"api",
"authentication",
"btp",
"cloud foundry",
"cloud platform",
"job",
"kyma",
"oauth",
"rest",
"sap",
"sap-btp-job-scheduling",
"scheduling"
],
"license": "GPL-3.0",
"commands": [
"./commands/job-schedule-check.md"
]
},
{
"name": "sap-btp-master-data-integration",
"source": "./plugins/sap-btp-master-data-integration",
"description": "Configures and integrates SAP Master Data Integration (MDI) service on SAP Business Technology Platform. Use when setting up MDI tenants, connecting applications (S/4HANA, SuccessFactors, Ariba, Fieldglass, etc.), configuring distribution models, SOAP APIs for business partners, extensibility, or troubleshooting master data replication. Covers One Domain Model integration, Business Data Orchestration, client authentication (OAuth2, mTLS), and security configurations.",
"version": "2.4.1",
"category": "btp",
"keywords": [
"api",
"authentication",
"btp",
"cloud foundry",
"cloud platform",
"data",
"hana",
"integration",
"kyma",
"master",
"oauth",
"sap",
"sap-btp-master-data-integration"
],
"license": "GPL-3.0",
"commands": [
"./commands/mdi-replication-check.md"
]
},
{
"name": "sap-btp-service-manager",
"source": "./plugins/sap-btp-service-manager",
"description": "This skill provides comprehensive knowledge for SAP Service Manager on SAP Business Technology Platform (BTP). It should be used when managing service instances, bindings, brokers, and platforms across Cloud Foundry, Kyma, Kubernetes, and other environments. Use when provisioning services via SMCTL CLI, BTP CLI, or REST APIs, configuring OAuth2 authentication, working with the SAP BTP Service Operator in Kubernetes, troubleshooting service consumption issues, or implementing cross-environment service management. Keywords: SAP Service Manager, BTP, service instances, service bindings, SMCTL, service broker, OSBAPI, Cloud Foundry, Kyma, Kubernetes, service-manager, service-operator-access, subaccount-admin, OAuth2, X.509, service marketplace, service plans, rate limiting, cf create-service, btp create services/instance, ServiceInstance CRD, ServiceBinding CRD",
"version": "2.4.1",
"category": "btp",
"keywords": [
"api",
"authentication",
"btp",
"cloud foundry",
"cloud platform",
"edge",
"kyma",
"manager",
"oauth",
"rest",
"sap",
"sap-btp-service-manager",
"service"
],
"license": "GPL-3.0",
"commands": [
"./commands/btp-service-manager-troubleshoot.md"
]
},
{
"name": "sap-bw-query",
"source": "./plugins/sap-bw-query",
"description": "Use when automating SAP BW query inspection, InfoProvider metadata reads (characteristics, key figures), metadata-verified specification review, unsaved draft preparation, or human-confirmed query draft population through Eclipse or HANA Studio with BW Modeling Tools.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"analytics",
"dashboard",
"data",
"hana",
"query",
"sac",
"sap",
"sap-bw-query",
"visualization"
],
"license": "GPL-3.0",
"commands": [
"./commands/bw-query-draft.md",
"./commands/bw-query-explain.md",
"./commands/bw-query-review.md",
"./commands/bw-query-spec-review.md",
"./commands/bw-studio-deploy.md"
],
"mcpServers": "./.mcp.json"
},
{
"name": "sap-cap-capire",
"source": "./plugins/sap-cap-capire",
"description": "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, multitenancy, or messaging. Covers CDL/CQL/CSN syntax, Node.js and Java runtimes, event handlers, OData services, and CAP plugins.",
"version": "2.4.1",
"category": "cap",
"keywords": [
"api",
"authorization",
"btp",
"cap",
"capire",
"cds",
"cloud application programming",
"cloud foundry",
"fiori",
"hana",
"java",
"kyma",
"node.js",
"odata",
"sap",
"sap-cap-capire",
"sql"
],
"license": "GPL-3.0",
"agents": [
"./agents/cap-cds-modeler.md",
"./agents/cap-performance-debugger.md",
"./agents/cap-project-architect.md",
"./agents/cap-service-developer.md"
],
"commands": [
"./commands/cap-cds-reference.md",
"./commands/cap-deployment-checklist.md",
"./commands/cap-mcp-tools.md",
"./commands/cap-setup-wizard.md",
"./commands/cap-troubleshooter.md"
],
"mcpServers": "./.mcp.json",
"lspServers": "./.lsp.json"
},
{
"name": "sap-cloud-sdk-ai",
"source": "./plugins/sap-cloud-sdk-ai",
"description": "Integrates SAP Cloud SDK for AI into JavaScript/TypeScript and Java applications. Use when building applications with SAP AI Core, Generative AI Hub, or Orchestration Service. Covers chat completion, embedding, streaming, function calling, content filtering, data masking, document grounding, prompt registry, and LangChain/Spring AI integration. Supports OpenAI GPT-4o, Llama, Gemini, Amazon Nova, and other foundation models via SAP BTP.",
"version": "2.4.1",
"category": "ai",
"keywords": [
"artificial intelligence",
"btp",
"cloud",
"java",
"javascript",
"llm",
"machine learning",
"sap",
"sap-cloud-sdk-ai",
"sdk",
"streaming",
"typescript"
],
"license": "GPL-3.0",
"commands": [
"./commands/cloud-sdk-ai-chat-template.md"
]
},
{
"name": "sap-cloud-sdk-ai-python",
"source": "./plugins/sap-cloud-sdk-ai-python",
"description": "Integrates the SAP Cloud SDK for AI for Python (sap-ai-sdk-gen, formerly generative-ai-hub-sdk) into Python applications. Use when building Python apps with SAP AI Core, Generative AI Hub, or the Orchestration Service: chat completion, embeddings, streaming, LangChain integration, templating, content filtering, data masking, and document grounding. Supports OpenAI GPT models, Llama, Gemini, Amazon Nova, and other foundation models via SAP BTP.",
"version": "2.4.1",
"category": "ai",
"keywords": [
"artificial intelligence",
"btp",
"cloud",
"llm",
"machine learning",
"python",
"sap",
"sap-cloud-sdk-ai-python",
"sdk",
"streaming"
],
"license": "GPL-3.0",
"commands": [
"./commands/cloud-sdk-ai-python-chat-template.md"
]
},
{
"name": "sap-datasphere",
"source": "./plugins/sap-datasphere",
"description": "SAP Datasphere development skill with 3 specialized agents, 5 slash commands, and validation hooks. Use when building data warehouses on SAP BTP, creating analytic models, configuring data flows and replication flows, setting up connections, managing spaces and users, implementing data access controls, using the datasphere CLI, or inspecting authenticated Datasphere browser UI state with Microsoft Edge CDP. Covers Data Builder, Business Builder, analytic models, 40+ connection types, real-time replication, task chains, content transport, and data marketplace.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"analytics",
"btp",
"dashboard",
"data",
"datasphere",
"edge",
"sac",
"sap",
"sap-datasphere",
"visualization"
],
"license": "GPL-3.0",
"agents": [
"./agents/datasphere-admin-helper.md",
"./agents/datasphere-integration-advisor.md",
"./agents/datasphere-modeler.md"
],
"commands": [
"./commands/datasphere-cli.md",
"./commands/datasphere-connection-guide.md",
"./commands/datasphere-mcp-tools.md",
"./commands/datasphere-space-template.md",
"./commands/datasphere-view-template.md"
],
"mcpServers": "./.mcp.json"
},
{
"name": "sap-dependency-security",
"source": "./plugins/sap-dependency-security",
"description": "SAP dependency security and MCP executable trust policy with secure upgrades, cooldowns, staged rollout, and supply-chain protection. Use when upgrading deps, configuring security policies, preventing supply chain attacks, pinning SAP MCP servers, or reviewing SAP CAP/UI5/Fiori/HANA/Datasphere/SAC/BTP/ABAP dependency workflows.",
"version": "2.4.1",
"category": "tooling",
"keywords": [
"abap",
"automation",
"btp",
"cap",
"cli",
"dependency",
"development",
"fiori",
"hana",
"productivity",
"sap",
"sap-dependency-security",
"security",
"tools"
],
"license": "GPL-3.0",
"commands": [
"./commands/sap-dependency-upgrade-plan.md"
]
},
{
"name": "sap-fiori-tools",
"source": "./plugins/sap-fiori-tools",
"description": "Develops SAP Fiori applications using SAP Fiori tools extensions for VS Code and SAP Business Application Studio. Use when: generating Fiori Elements or Freestyle SAPUI5 applications, configuring Page Editor for List Report or Object Page, working with annotations and Service Modeler, setting up deployment to ABAP or Cloud Foundry, creating adaptation projects, using Guided Development, previewing with mock data or live data, configuring SAP Fiori launchpad, or using AI-powered generation with Project Accelerator/Joule. Technologies: SAP Fiori Elements, SAPUI5, OData V2/V4, CAP, SAP BTP, ABAP, Cloud Foundry, fiori-mcp-server (MCP tools for AI-assisted generation).",
"version": "2.4.1",
"category": "ui-development",
"keywords": [
"abap",
"btp",
"cap",
"cloud foundry",
"components",
"deployment",
"fiori",
"frontend",
"mvc",
"odata",
"sap",
"sap-fiori-tools",
"sapui5",
"tools"
],
"license": "GPL-3.0",
"agents": [
"./agents/fiori-app-advisor.md"
],
"commands": [
"./commands/fiori-app-generate.md",
"./commands/fiori-preview-deploy.md"
],
"mcpServers": "./.mcp.json"
},
{
"name": "sap-hana-cli",
"source": "./plugins/sap-hana-cli",
"description": "Assists with SAP HANA Developer CLI (hana-cli) for database development and administration. Use when: installing hana-cli, connecting to SAP HANA databases, inspecting database objects (tables, views, procedures, functions), managing HDI containers, executing SQL queries, converting metadata to CDS/EDMX/OpenAPI formats, managing SAP HANA Cloud instances, working with BTP CLI integration, or troubleshooting hana-cli commands. Covers: 91 commands, 17+ output formats, HDI container management, cloud operations.",
"version": "2.4.1",
"category": "hana",
"keywords": [
"api",
"btp",
"cds",
"cli",
"cloud",
"database",
"hana",
"hdi",
"sap",
"sap-hana-cli",
"sql",
"sqlscript"
],
"license": "GPL-3.0",
"agents": [
"./agents/hana-database-advisor.md"
],
"commands": [
"./commands/hana-connect-check.md",
"./commands/hana-inspect-object.md"
],
"mcpServers": "./.mcp.json"
},
{
"name": "sap-hana-cloud-data-intelligence",
"source": "./plugins/sap-hana-cloud-data-intelligence",
"description": "Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, creating replication flows, developing ML scenarios with JupyterLab, or using Data Transformation Language functions. Covers Gen1/Gen2 operators, subengines (Python, Node.js, C++), structured data operators, and repository objects.",
"version": "2.4.1",
"category": "hana",
"keywords": [
"abap",
"cloud",
"data",
"database",
"hana",
"hdi",
"intelligence",
"node.js",
"python",
"sap",
"sap-hana-cloud-data-intelligence",
"sql",
"sqlscript"
],
"license": "GPL-3.0",
"commands": [
"./commands/data-intelligence-pipeline-check.md"
]
},
{
"name": "sap-hana-ml",
"source": "./plugins/sap-hana-ml",
"description": "SAP HANA Machine Learning Python Client (hana-ml) development skill. Use when: Building ML solutions with SAP HANA's in-database machine learning using Python hana-ml library for PAL/APL algorithms, DataFrame operations, AutoML, model persistence, and visualization. Keywords: hana-ml, SAP HANA, machine learning, PAL, APL, predictive analytics, HANA DataFrame, ConnectionContext, classification, regression, clustering, time series, ARIMA, gradient boosting, AutoML, SHAP, model storage",
"version": "2.4.1",
"category": "hana",
"keywords": [
"cloud",
"database",
"hana",
"hdi",
"python",
"sap",
"sap-hana-ml",
"sql",
"sqlscript"
],
"license": "GPL-3.0",
"commands": [
"./commands/hana-ml-experiment-plan.md"
]
},
{
"name": "sap-rpt1",
"source": "./plugins/sap-rpt1",
"description": "SAP-RPT-1-OSS local tabular prediction workflows for FI/CO prototype datasets. Use when preparing SAP finance CSV exports for classification or regression experiments with source-verified setup, leakage checks, and governance review.",
"version": "2.4.1",
"category": "ai",
"keywords": [
"artificial intelligence",
"llm",
"machine learning",
"rpt1",
"sap",
"sap-rpt1"
],
"license": "GPL-3.0",
"commands": [
"./commands/rpt1-fico-predict.md",
"./commands/rpt1-fico-prepare.md"
]
},
{
"name": "sap-sac-custom-widget",
"source": "./plugins/sap-sac-custom-widget",
"description": "SAP Analytics Cloud (SAC) Custom Widget development. Use when building custom visualizations, extending SAC with Web Components, or creating Widget Add-Ons. Covers JSON metadata, JavaScript Web Components, lifecycle functions, data binding with feeds, styling/builder panels, property/event/method definitions, third-party library integration, hosting, security, performance, and debugging. Includes Widget Add-On feature (QRC Q4 2023+) and templates for widgets, charts, and KPI cards.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"analytics",
"custom",
"dashboard",
"data",
"javascript",
"json",
"sac",
"sap",
"sap-sac-custom-widget",
"visualization",
"widget"
],
"license": "GPL-3.0",
"agents": [
"./agents/widget-api-assistant.md",
"./agents/widget-architect.md",
"./agents/widget-debugger.md"
],
"commands": [
"./commands/widget-generate.md",
"./commands/widget-lint.md",
"./commands/widget-validate.md"
]
},
{
"name": "sap-sac-planning",
"source": "./plugins/sap-sac-planning",
"description": "SAP Analytics Cloud (SAC) planning guidance for planning models, planning-enabled stories, data actions, multi actions, version management, data locking, calendar/input workflows, allocations, value driver trees, BPC live planning, and Seamless Planning with SAP Datasphere. Use this for planning design, planning APIs, data action debugging, planning performance reviews, and authenticated SAC planning story triage in Microsoft Edge via CDP; use sap-sac-scripting for non-planning SAC scripts and sap-datasphere for Datasphere modeling.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"analytics",
"api",
"dashboard",
"data",
"edge",
"planning",
"sac",
"sap",
"sap-sac-planning",
"visualization"
],
"license": "GPL-3.0",
"agents": [
"./agents/data-action-debugger.md",
"./agents/planning-api-assistant.md",
"./agents/planning-model-architect.md"
],
"commands": [
"./commands/data-action-template.md",
"./commands/sac-planning-checklist.md",
"./commands/seamless-planning-guide.md"
]
},
{
"name": "sap-sac-scripting",
"source": "./plugins/sap-sac-scripting",
"description": "Comprehensive SAC scripting skill for SAP Analytics Cloud Analytics Designer and Optimized Story Experience. This skill should be used when the user asks to \"create SAC script\", \"debug Analytics Designer\", \"optimize SAC performance\", \"planning operations in SAC\", \"filter data in SAC\", \"use DataSource API\", \"chart scripting\", \"table manipulation\", \"SAC event handlers\", \"version management\", \"data locking\", \"Optimized Story Experience API\", \"OSE scripting\", \"OSE widget API\", \"OSE DataSource\", \"story scripting API\", \"OSE planning API\", \"OSE method\", \"optimized story\", \"SAC story scripting\", \"story script\", \"SAC scripting\", \"debug SAC runtime in Microsoft Edge via CDP\", or works with SAC widgets, planning models, or analytics applications.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"analytics",
"api",
"dashboard",
"data",
"edge",
"sac",
"sap",
"sap-sac-scripting",
"scripting",
"visualization"
],
"license": "GPL-3.0",
"agents": [
"./agents/sac-api-helper.md",
"./agents/sac-performance-optimizer.md",
"./agents/sac-planning-assistant.md",
"./agents/sac-script-debugger.md"
],
"commands": [
"./commands/sac-debug.md",
"./commands/sac-optimize.md",
"./commands/sac-planning.md",
"./commands/sac-script-template.md"
],
"mcpServers": "./.mcp.json"
},
{
"name": "sap-sac-test-automation",
"source": "./plugins/sap-sac-test-automation",
"description": "SAP Analytics Cloud (SAC) automated testing skill for designing capability-gated browser discovery and deterministic Playwright test suites for SAC stories, dashboards, reports, planning workflows, comments, permissions, visual regression, and reusable QA automation. This skill should be used when building SAC end-to-end tests, onboarding SAC dashboards into Playwright, creating dashboard profiles or scenario YAML, using Microsoft Edge/CDP, Chrome DevTools MCP, Vercel Labs agent-browser, or manual discovery for SAC components, testing SAC optimized stories, configuring SAC auth storage state, managing visual/data baselines, testing comments, planning writeback, data actions, multi actions, role-based views, restricted Windows/company environments, or creating SAC failure triage artifacts.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"analytics",
"automation",
"cap",
"dashboard",
"data",
"edge",
"rest",
"sac",
"sap",
"sap-sac-test-automation",
"test",
"visualization",
"yaml"
],
"license": "GPL-3.0",
"agents": [
"./agents/sac-test-profile-reviewer.md"
],
"commands": [
"./commands/sac-test-onboard.md"
]
},
{
"name": "sap-sqlscript",
"source": "./plugins/sap-sqlscript",
"description": "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 CDP\", or mentions SQLScript, SAP HANA procedures, AMDP, EXIT HANDLER, or code-to-data paradigm. Comprehensive SQLScript development guidance for SAP HANA database programming including syntax patterns, built-in functions, exception handling, performance optimization, cursor management, and ABAP Managed Database Procedure (AMDP) integration.",
"version": "2.4.1",
"category": "data-analytics",
"keywords": [
"abap",
"analytics",
"dashboard",
"data",
"edge",
"hana",
"sac",
"sap",
"sap-sqlscript",
"sql",
"sqlscript",