lisa-abap-api

lisa-abap-api is a skill for Claude Code, Codex from ClementRingot/LISA. It costs 150 tokens per session (1,151 once invoked), scanned A, original, MIT.

An interface for reading, changing, and comparing translations in SAP, an enterprise software system. It works with objects such as data elements, domains, CDS views, message classes, text pools, and text tables through JSON requests.

In plain words
What is it for?
Use it to list languages and texts, get or set translations, compare translations, and check which actions the SAP service supports.
Why use it?
It gives an agent a defined way to work with SAP translations without putting login handling inside the interface.

Skill for Claude CodeCodex

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

Good fit Use it to list languages and texts, get or set translations, compare translations, and check which actions the SAP service supports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/clementringot/lisa/lisa-abap-api
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 ClementRingot/LISA --skill lisa-abap-api
Clone the repo
git clone --depth 1 https://github.com/ClementRingot/LISA

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 lisa-abap-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/clementringot/lisa/lisa-abap-api.svg)](https://agentmods.dev/skills/clementringot/lisa/lisa-abap-api)
Your own site
<a href="https://agentmods.dev/skills/clementringot/lisa/lisa-abap-api"><img src="https://agentmods.dev/badge/skills/clementringot/lisa/lisa-abap-api.svg" alt="Measured on agentmods" height="20"></a>
Per session 150 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,151 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00150 $0.01151
Opus 5 $0.00075 $0.00575
Sonnet 5 $0.00030 $0.00230
Haiku 4.5 $0.00015 $0.00115

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

Security

Grade A, and why

lisa-abap-api scanned grade A with 1 finding 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 7d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**Never** build a `curl -u user:pass`, read a credential from a `.env`, or put a secret in a
skills/lisa-abap-api/SKILL.md · 73 lines

How it starts

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

LISA ABAP API — using zi18n_service

ZCL_I18N_SERVICE (zi18n_service) is one ABAP HTTP service. Every action is a POST of a JSON body to {base}{path}/{action}, with a single response envelope:

{ "success": true,  "data": { … } }            // HTTP 200
{ "success": false, "error": { "code": "…", "message": "…" } }   // HTTP 400

Default path /sap/bc/http/sap/zi18n_service. Actions: capabilities, list_languages, list_texts, get_translation, set_translation, compare_translations. Full request/response shapes, selectors and error codes are in reference.md; the machine-readable contract is api/zi18n_service.openapi.yaml.

Authentication is out of scope — on purpose

This skill never handles a credential. Something else carries the auth, and the agent only ever sends a JSON body:

  • From a BTP runtime (Joule Studio action, CAP, SAP Build): a BTP destination authenticates the call — bind your action to it. Creating that destination (per-user propagation or a shared Basic-auth user, per landscape) is documented in BTP destination setup.
  • Want a runtime that holds credentials and exposes the three tools directly? Run the LISA MCP server (@lisa-mcp/server) or the ARC-1 extension — the agent calls the tools and never sees a secret.

Never build a curl -u user:pass, read a credential from a .env, or put a secret in a prompt. If you have no authenticated way to reach the system, stop and point the user at the two options above — do not improvise auth.

Workflow (pure JSON, whatever the runtime)

  1. Probe firstcapabilities (body {}) returns the per-action allow-list of target_types for THIS system; public cloud and on-premise support different sets. Never assume a type works (an unlisted one fails with CLOUD_UNSUPPORTED or an XCO error).
  2. Read before writinglist_texts returns every slot with a populated flag (false = still to translate): {"target_type":"data_element","object_name":"ZMY_DTEL","language":"FR"}
  3. Write with a transportset_translation needs a modifiable transport request the caller's user can record into: {"target_type":"data_element","object_name":"ZMY_DTEL","language":"FR","transport":"A4HK900123","texts":[{"attribute":"short_field_label","value":"Client"}]}

Read the full file on GitHub · 73 lines

Files

What ships with it

1 file 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. 7d ago First seen · 73 lines · 150 tokens per session scan A a7cc0bc611b8

Subscribe to this mod's changes

lisa-abap-api is a skill published in the GitHub repository ClementRingot/LISA (8 stars, last pushed 7d ago), licensed MIT. It adds 150 tokens to every session and 1,151 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

i18n-date-patterns

Implements internationalization (i18n) in React applications. Covers user-facing strings, date/time handling, locale-aware formatting, ICU MessageFormat, and RTL support. Use when building multilingual UIs or formatting dates/currency.

yonatangross/orchestkit · 53 tokens

tongwen

Use when translating engineering CAD drawings between languages — DWG text extraction, translation workspace with terminology management, quality-checked write-back. TongWen (同文): local-first CAD/BIM lossless translation suite for AutoCAD 2019-2026.

znlgis/opengis-skills · 55 tokens

backend-internationalization

Use this skill when implementing multi-language support, translation workflows, or locale-aware formatting. This skill enforces: BCP 47 locale tags, ICU MessageFormat for complex messages, dot-separated namespaced keys, fallback chains, and CI-validated translation files. Applies to any backend stack serving…

j4flmao/agent-skills · 86 tokens

raqam

Teaches the raqam React number-input library — headless NumberField compound components, useNumberFieldState/useNumberField hooks, Intl presets, locale plugins (fa/ar/bn/hi/th), raqam/server formatting, validation, ScrubArea, accessibility, and form integration. Use when building or debugging currency/percent/unit…

47vigen/raqam · 102 tokens

internationalization-i18n

Audits and implements internationalization (i18n) and localization (l10n) for a frontend application. Covers message format selection, locale file organisation, pluralization, RTL layout, and CI extraction workflows. Invoked when the user asks to add i18n support, set up translations, or make the UI multilingual.

soulcodex/agentic · 72 tokens

xcstrings-mcp

Use this skill for ANY task involving iOS/macOS localization: translating strings, adding or removing languages, checking coverage, finding missing or stale translations, validating format specifiers, managing plural forms, migrating from legacy .strings format, exporting/importing XLIFF for external translators…

Murzav/xcstrings-mcp · 122 tokens