sap-expert

sap-expert is a skill for Claude Code from personamanagmentlayer/pcl. It costs 92 tokens per session (3,033 once invoked), scanned A, original, Apache-2.0.

A reference skill for SAP enterprise software, including ABAP programming, HANA databases, S/4HANA business systems, Fiori applications, and SAP integration methods. SAP is a suite used to run business operations such as finance, human resources, and supply chains.

In plain words
What is it for?
Use it for SAP architecture, ABAP development, HANA and S/4HANA work, Fiori apps, and OData, RFC, IDoc, or SOAP integrations.
Why use it?
It gives an agent domain guidance when a task depends on SAP terms, systems, programming, or data integration.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it for SAP architecture, ABAP development, HANA and S/4HANA work, Fiori apps, and OData, RFC, IDoc, or SOAP integrations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/personamanagmentlayer/pcl/sap-expert
Install

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.

Any agent
npx skills add personamanagmentlayer/pcl --skill sap-expert
Clone the repo
git clone --depth 1 https://github.com/personamanagmentlayer/pcl

Made for: Claude Code.

Wrote 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.

agentmods badge for sap-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/sap-expert/github.svg)](https://agentmods.dev/skills/personamanagmentlayer/pcl/sap-expert)
Your own site
<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.

agentmods 80×15 button for sap-expert

Your own site · 80×15
<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>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,033 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
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.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 65628be14a87, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

stdlib/domains/sap-expert/SKILL.md · 448 lines

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.

Read the full file on GitHub · 448 lines

Changes

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.

  1. 4d ago First seen · 448 lines · 92 tokens per session scan A 65628be14a87

Subscribe to this mod's changes

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.

Related

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.

vigneshbarani24/sap-superpowers · 44 tokens

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.

vigneshbarani24/sap-superpowers · 39 tokens

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.

vigneshbarani24/sap-superpowers · 56 tokens

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…

vigneshbarani24/sap-superpowers · 0 tokens

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.

vigneshbarani24/sap-superpowers · 47 tokens

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.

vigneshbarani24/sap-superpowers · 46 tokens