sc4sap:create-program

sc4sap:create-program is a skill for Claude Code, Codex from babamba2/superclaude-for-sap. It costs 40 tokens per session (3,961 once invoked), scanned A, original, MIT.

A guided tool for creating ABAP programs in SAP, including reports, database operations, lists, and batch jobs. It supports object-oriented and procedural ABAP and organizes code into a main program and included files.

In plain words
What is it for?
Use it to create ABAP reports, CRUD programs, ALV lists, or batch programs with the requested coding style and review process.
Why use it?
It structures program creation around SAP version checks, planning, review, user confirmation, coding, and quality checks, reducing the risk of inconsistent or unchecked ABAP code.

Skill for Claude CodeCodex

Part of the sc4sap plugin — 14 skills, 26 agents, 11 hooks, 1 MCP server shipped together

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.

agentmods
npx agentmods add skills/babamba2/superclaude-for-sap/create-program
Any agent
npx skills add babamba2/superclaude-for-sap --skill create-program
Clone the repo
git clone --depth 1 https://github.com/babamba2/superclaude-for-sap

Made for: Claude Code, Codex.

Or install sc4sap, the plugin that ships this one along with the rest of its 14 skills, 26 agents, 11 hooks, 1 MCP server.

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 sc4sap:create-program

README.md
[![agentmods](https://agentmods.dev/badge/skills/babamba2/superclaude-for-sap/create-program.svg)](https://agentmods.dev/skills/babamba2/superclaude-for-sap/create-program)
Your own site
<a href="https://agentmods.dev/skills/babamba2/superclaude-for-sap/create-program"><img src="https://agentmods.dev/badge/skills/babamba2/superclaude-for-sap/create-program.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,961 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00040 $0.03961
Opus 5 $0.00020 $0.01980
Sonnet 5 $0.00008 $0.00792
Haiku 4.5 $0.00004 $0.00396

Measured 3d ago against content hash c8c6d0934dc7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

sc4sap:create-program 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 3d 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/create-program/SKILL.md · 176 lines

How it starts

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

SC4SAP Create Program

Core ABAP program creation skill. Generates a Main Program wrapped with conditional Includes following the sc4sap template convention. Supports both OOP (two-class split: Data + Screen/ALV) and Procedural (PERFORM) paradigms. Full pipeline: SAP version preflight → Socratic interview → planner → writer spec → user confirm → executor/qa/reviewer.

<Response_Prefix>Every response triggered by this skill MUST begin with [Model: <main-model> · Dispatched: <sub-summary>] per ../../common/model-routing-rule.md § Response Prefix Convention.</Response_Prefix>

<Phase_Banner>Multi-phase skill. Before each Agent(...) dispatch, emit ▶ phase=<id> (<label>) · agent=<name> · model=<Opus 4.7|Sonnet 4.6|Haiku 4.5> per ../../common/model-routing-rule.md § Phase Banner Convention.</Phase_Banner>

<Team_Mode>Four teamMode integration points — Type A: Phase 1A (post-interview cross-module consistency) + Phase 2 (planner conflict resolution) — see team-mode.md. Type B: Phase 4 Wave 2/3 (executor's novel code gets live consultant review) — see team-mode-b.md. Type D: Phase 1A↔1B bridgeuser-chosen at Phase 1A close (legacy sequential 1B vs Type D team synthesis); analyst + architect + consultant parallel synthesis replaces sequential 1B when selected — see team-mode-d.md. Base protocol: ../../common/team-consultation-protocol.md.</Team_Mode>

<Use_When>

  • User says "create program", "new report", "ALV program", "CRUD program", "make me a batch program", etc.
  • A new ABAP executable program (REPORT) needs to be created from scratch
  • Program requires the Main+Include wrapping convention
  • ALV display is needed (full CL_GUI_ALV_GRID or simple SALV popup) </Use_When>

<Do_Not_Use_When>

  • Creating a single class/interface/table — use /sc4sap:create-object
  • Modifying an existing program — use direct UpdateProgram / UpdateInclude MCP calls
  • Creating a RAP business object / OData service — use /sc4sap:create-object (with service binding + behavior definition)
  • User wants only scaffolding without coding — use /sc4sap:create-object with type=program </Do_Not_Use_When>

<Shared_Conventions> The following rules are shared across sc4sap skills and live in sc4sap/common/. Load and apply them during the relevant phases of this skill:

Convention Reference File Applied In
Include structure (t/s/c/a/o/i/e/f/_tst) ../../common/include-structure.md Planner, Executor
OOP two-class pattern (LCL_DATA + LCL_ALV) ../../common/oop-pattern.md Executor (OOP mode only)
ALV rules (Full vs SALV, field catalog standard) ../../common/alv-rules.md Executor, Reviewer
Text element rule (no hardcoded display literals) ../../common/text-element-rule.md Executor, Reviewer
Constant rule (no magic literals in logic) ../../common/constant-rule.md Executor, Reviewer
Procedural FORM naming (_{screen_no} suffix) ../../common/procedural-form-naming.md Executor (Procedural mode only), Reviewer
Naming conventions (program/include/class/screen) ../../common/naming-conventions.md Planner, Executor, Reviewer
ECC DDIC fallback (Table / DTEL / DOMA on ECC) ../../common/ecc-ddic-fallback.md Planner (gate), Executor (program generation), Reviewer
Clean ABAP — shared baseline ../../common/clean-code.md Executor, Reviewer (always)
Clean ABAP — OOP paradigm ../../common/clean-code-oop.md Executor, Reviewer — only when Phase 1B paradigm = OOP
Clean ABAP — Procedural paradigm ../../common/clean-code-procedural.md Executor, Reviewer — only when Phase 1B paradigm = Procedural
Mandatory main-program template (OOP) ../../common/oop-sample/zrsc4sap_oop_ex.prog.abap (+ companion includes / screens in same folder) Executor Wave 3 (starting skeleton) + Reviewer B3 bucket (structural match) — OOP paradigm
Mandatory main-program template (Procedural) ../../common/procedural-sample/main-program.abap Executor Wave 3 + Reviewer B3 bucket — Procedural paradigm

Read the full file on GitHub · 176 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. 3d ago First seen · 176 lines · 40 tokens per session scan A c8c6d0934dc7

Subscribe to this mod's changes

sc4sap:create-program is a skill published in the GitHub repository babamba2/superclaude-for-sap (52 stars, last pushed 11d ago), licensed MIT. It adds 40 tokens to every session and 3,961 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

development

开发语言能力索引。Python、Go、Rust、TypeScript、Java、C++、Shell。当用户提到编程、开发、代码、语言时路由到此。.

fengshao1227/ccg-workflow · 41 tokens

rust-pro

Master modern Rust (2024 edition) with async patterns, advanced type system features, and production-ready systems programming. Expert in the current Rust ecosystem including Tokio, axum, and modern crates. Use PROACTIVELY for Rust development, performance optimization, or systems programming.

vudovn/ag-kit · 58 tokens

ax-python-agent

Use when writing Python code with axllm for agents, child delegation, tools, MCP, citations, persistent playbook learning, stage instructions, runtime state, final typed responses, and direct-respond executor skipping.

ax-llm/ax · 49 tokens

migrate-better-result-3

Migrate a TypeScript codebase from better-result 2.x to 3.0. Use when upgrading better-result across the TaggedError syntax, removed Result serialization helpers, recovery inference, matching, or retry APIs.

dmmulroy/better-result · 52 tokens

mps-aspect-actions

Use when defining or editing MPS node factories (the "actions" aspect) — NodeFactories roots, per-concept NodeFactory setup functions that initialize a freshly created node and optionally copy data from a replaced sampleNode, plus the actions aspect's CopyPasteHandlers and PasteWrappers roots. Reach for this skill…

JetBrains/MPS · 115 tokens

product-marketing

Build product marketing strategy including positioning, messaging, and go-to-market. Use when the user says "positioning", "messaging framework", "go-to-market", "GTM strategy", "product marketing", "competitive positioning", "battlecard", "sales enablement", "launch plan", or asks about how to position or message…

OpenClaudia/openclaudia-skills · 77 tokens