abap

abap is a skill for Claude Code, Codex from Ciltress/sap-abap-mcp. It costs 184 tokens per session (1,598 once invoked), scanned A, original, MIT.

A review workflow for checking ABAP code for syntax errors, automated quality issues, and Clean ABAP style. It uses SAP's own checks when an ADT connection is available, or abaplint when working without a system.

In plain words
What is it for?
Use it to run syntax checks or ATC, lint serialized ABAP files in CI, and review naming, structure, and style against Clean ABAP principles.
Why use it?
It catches code that will not activate and highlights maintainability problems, while choosing checks that match whether a live SAP system is available.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to run syntax checks or ATC, lint serialized ABAP files in CI, and review naming, structure, and style against Clean ABAP principles.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ciltress/sap-abap-mcp/abap
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 Ciltress/sap-abap-mcp --skill abap
Clone the repo
git clone --depth 1 https://github.com/Ciltress/sap-abap-mcp

Made for: Claude Code, Codex.

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 abap

README.md
[![agentmods](https://agentmods.dev/badge/skills/ciltress/sap-abap-mcp/abap/github.svg)](https://agentmods.dev/skills/ciltress/sap-abap-mcp/abap)
Your own site
<a href="https://agentmods.dev/skills/ciltress/sap-abap-mcp/abap"><img src="https://agentmods.dev/badge/skills/ciltress/sap-abap-mcp/abap/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 abap

Your own site · 80×15
<a href="https://agentmods.dev/skills/ciltress/sap-abap-mcp/abap"><img src="https://agentmods.dev/badge/skills/ciltress/sap-abap-mcp/abap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 184 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,598 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.
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.00184 $0.01598
Opus 5 $0.00092 $0.00799
Sonnet 5 $0.00037 $0.00320
Haiku 4.5 $0.00018 $0.00160

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

Security

Grade A, and why

abap 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 10d 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.

skills/ABAP/skills/abap/SKILL.md · 179 lines

How it starts

The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ABAP

Check and improve ABAP code quality using three complementary approaches:

  • The system's own checks — ABAP syntax check and ATC, via the ABAP ADT MCP server. Authoritative: they know the DDIC, the release and what will actually activate.
  • abaplint: static analysis via CLI over serialized (abapGit) files. The right tool in CI, or when there is no system to talk to.
  • Clean ABAP: manual review against the style guide, for everything no tool can decide.

Step 0 — is there a system?

Check whether the ABAP ADT MCP server's tools are available (readAbapObject, syntaxCheckCode, createAtcRun).

  • Yes → prefer the system's checks. Read references/mcp-adt-tools.md and follow it: fetch the source by name with readAbapObject, run syntaxCheckCode, run ATC, then do the Clean ABAP review for the judgement calls. Do not ask the user to paste code you can read yourself.
  • No → use the abaplint workflow below plus the Clean ABAP review.

Either way the Clean ABAP review still applies — only the mechanical checks differ.

Workflow

  1. Determine check type based on user request:

    • If the user asks to run ATC or check against the system: use ATC (references/mcp-adt-tools.md)
    • If the user asks to lint, run abaplint, or check syntax: use the syntax check with a system, abaplint without one
    • If the user asks for clean code review, best practices, or code quality: use Clean ABAP review
    • If unclear or the user asks for a full check: use all that are available
  2. For abaplint checks:

    • Verify abaplint is installed (npx @abaplint/cli --version or abaplint --version)
    • If not installed, install with: npm install @abaplint/cli -g
    • Check if abaplint.json exists in the project root
    • If no config exists, help the user create one (see starter configs in references/abaplint.md)
    • Run abaplint in the project root directory
    • Parse and present findings to the user

Read the full file on GitHub · 179 lines

Files

What ships with it

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

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. 10d ago First seen · 179 lines · 184 tokens per session scan A b6b9c9099317

Subscribe to this mod's changes

abap is a skill published in the GitHub repository Ciltress/sap-abap-mcp (3 stars, last pushed 17d ago), licensed MIT. It adds 184 tokens to every session and 1,598 once invoked, about $0.0009 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-08-31.