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 personamanagmentlayer/pcl --skill sap-expertgit clone --depth 1 https://github.com/personamanagmentlayer/pclWrote 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/personamanagmentlayer/pcl/sap-expert)<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/sap-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/sap-expert/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/personamanagmentlayer/pcl/sap-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/sap-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
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 Data Exfiltration · line 424 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00092 | $0.03033 |
| Opus 5 | $0.00046 | $0.01517 |
| Sonnet 5 | $0.00018 | $0.00607 |
| Haiku 4.5 | $0.00009 | $0.00303 |
Grade A, and why
sap-expert 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 4d 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 — 448 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SAP Expert
Core Concepts
SAP Ecosystem
- SAP ERP - Enterprise Resource Planning suite (ECC, S/4HANA)
- SAP HANA - In-memory database platform
- SAP Fiori - Modern UX layer with responsive apps
- SAP Business Suite - Finance, HR, Supply Chain, Manufacturing modules
- SAP BTP - Business Technology Platform (cloud services)
ABAP Development
- ABAP Objects - Object-oriented programming in ABAP
- CDS Views - Core Data Services for data modeling
- AMDP - ABAP Managed Database Procedures
- ALV - ABAP List Viewer for reports
- BAPIs - Business Application Programming Interfaces
- RFCs - Remote Function Calls for integration
Integration Technologies
- OData Services - RESTful APIs for SAP data
- IDoc - Intermediate Documents for data exchange
- SOAP/RFC - Web services and remote function calls
- SAP PI/PO - Process Integration/Orchestration
- SAP Gateway - OData and REST API framework
Implementation Examples
ABAP Report with ALV Grid
*&---------------------------------------------------------------------*
*& Report Z_EMPLOYEE_REPORT
*&---------------------------------------------------------------------*
REPORT z_employee_report.
TABLES: pa0001. " Organizational Assignment
TYPES: BEGIN OF ty_employee,
pernr TYPE pa0001-pernr,
ename TYPE pa0001-ename,
orgeh TYPE pa0001-orgeh,
plans TYPE pa0001-plans,
stell TYPE pa0001-stell,
END OF ty_employee.
DATA: gt_employee TYPE TABLE OF ty_employee,
gs_employee TYPE ty_employee,
go_alv TYPE REF TO cl_salv_table.
SELECT-OPTIONS: s_pernr FOR pa0001-pernr.
START-OF-SELECTION.
" Fetch employee data
SELECT pernr ename orgeh plans stell
FROM pa0001
INTO TABLE gt_employee
WHERE pernr IN s_pernr
AND endda = '99991231'
AND begda <= sy-datum.
IF sy-subrc = 0.
" Display ALV
TRY.
cl_salv_table=>factory(
IMPORTING
r_salv_table = go_alv
CHANGING
t_table = gt_employee ).
" Enable all standard functions
go_alv->get_functions( )->set_all( abap_true ).
" Optimize column width
go_alv->get_columns( )->set_optimize( abap_true ).
" Display
go_alv->display( ).
CATCH cx_salv_msg INTO DATA(lx_msg).
MESSAGE lx_msg TYPE 'E'.
ENDTRY.
ELSE.
MESSAGE 'No data found' TYPE 'I'.
ENDIF.
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.
- 4d ago First seen · 448 lines · 92 tokens per session scan A 65628be14a87
sap-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 2d ago), licensed Apache-2.0. It adds 92 tokens to every session and 3,033 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-09-05.
Other skills, from other repositories
fit-gap-analysis
Use when classifying business requirements against SAP standard capability during Explore phase. Triggers on requests to assess coverage, identify gaps, classify requirements, determine custom development need, or build a fit-gap matrix.
solution-architecture
Use when designing SAP solution landscapes, defining integration architecture, making BTP vs on-premise decisions, creating extensibility strategies, or producing solution architecture documents for any SAP implementation.
concur
Use when working with SAP Concur — Concur Expense, Concur Travel, Concur Invoice, Concur Request, expense policy configuration, receipt management, travel booking, approval workflows, integration with S/4HANA FI, audit rules, or compliance monitoring.
clean-core-strategy
You are a clean core strategy expert. SAP's clean core principle is the foundation of cloud-ready, upgrade-safe S/4HANA implementations. Your job is to enforce the three-pillar model (clean data, clean processes, clean extensions), prevent unauthorized modifications, and produce a remediation roadmap that makes clean…
abap-cloud
Use when writing, reviewing, or troubleshooting ABAP Cloud code, RAP business objects, CDS views, released APIs, or any ABAP development in S/4HANA Public Cloud or BTP ABAP Environment.
btp
Use when designing, building, or troubleshooting solutions on SAP Business Technology Platform — subaccounts, Cloud Foundry, Kyma, CAP, HANA Cloud, XSUAA, destinations, or any BTP service.