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 agentmods add skills/babamba2/superclaude-for-sap/create-programnpx skills add babamba2/superclaude-for-sap --skill create-programgit clone --depth 1 https://github.com/babamba2/superclaude-for-sapWrote 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/babamba2/superclaude-for-sap/create-program)<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>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 | $0.00040 | $0.03961 |
| Opus 5 | $0.00020 | $0.01980 |
| Sonnet 5 | $0.00008 | $0.00792 |
| Haiku 4.5 | $0.00004 | $0.00396 |
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.
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 bridge — user-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/UpdateIncludeMCP 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-objectwith 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 |
What ships with it
13 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.
- agent-pipeline.md 20 KB
- execution-mode.md 4.4 KB
- interview-gating.md 8.7 KB
- inventory-lookups.md 5.0 KB
- multi-executor-split.md 4.8 KB
- phase4-parallel.md 15 KB
- phase6-buckets.md 6.4 KB
- phase6-output-format.md 3.6 KB
- phase6-review.md 14 KB
- spec-approval-gate.md 4.5 KB
- team-mode-b.md 6.0 KB
- team-mode-d.md 6.9 KB
- team-mode.md 8.0 KB
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.
- 3d ago First seen · 176 lines · 40 tokens per session scan A c8c6d0934dc7
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.
Other skills, from other repositories
development
开发语言能力索引。Python、Go、Rust、TypeScript、Java、C++、Shell。当用户提到编程、开发、代码、语言时路由到此。.
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.
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.
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.
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…
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…