sap-data-workbook

sap-data-workbook is a skill for Claude Code from marcellourbani/vscode_abap_remote_fs. It costs 81 tokens per session (1,652 once invoked), scanned A, original, MIT.

A VS Code notebook format for repeatable SAP data analysis. It combines queries against SAP with JavaScript steps that process the results, and can be run as a complete workbook.

In plain words
What is it for?
Use it to query and compare SAP data, profile tables, find data-quality problems, calculate summaries, and build reports where later queries depend on earlier results.
Why use it?
It keeps the queries and processing steps together so another person can rerun the same analysis. This avoids repeating manual data checks or losing the steps behind a report.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to query and compare SAP data, profile tables, find data-quality problems, calculate summaries, and build reports where later queries depend on earlier results.

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

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-data-workbook

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/marcellourbani/vscode_abap_remote_fs/sap-data-workbook"><img src="https://agentmods.dev/badge/skills/marcellourbani/vscode_abap_remote_fs/sap-data-workbook.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,652 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 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.00081 $0.01652
Opus 5 $0.00041 $0.00826
Sonnet 5 $0.00016 $0.00330
Haiku 4.5 $0.00008 $0.00165

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

Security

Grade A, and why

sap-data-workbook 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.

client/media/skills/sap-data-workbook/SKILL.md · 115 lines

How it starts

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

SAP Data Workbook — SAP Data Analysis Made Reproducible

You create .sapwb files — VS Code notebooks with ABAP SQL and JavaScript cells that query SAP and process results. The user opens the file and clicks "Run All."

When To Create a Workbook

Create a workbook when the user wants to:

  • Analyze SAP data (multi-table, aggregations, comparisons)
  • Build a data quality check or report
  • Profile table data (row counts, distributions, outliers)
  • Compare data across criteria (e.g., "vendors with vs without recent orders")
  • Any task requiring multiple queries where later queries depend on earlier results

How to Create the File

Mandatory: You MUST follow steps 1→2→3 in order. Do NOT create the file with any cells. Do NOT skip the read-back step.

  1. Create the .sapwb file with ONLY metadata and an empty cells array: {"version": 1, "title": "Your Title", "cells": []}
  2. Read the file back to confirm it was created.
  3. Now insert ALL cells (including the first markdown cell) using the notebook editing tools. When inserting cells, use language "abap-sql" for SQL cells (NOT "sql"), "javascript" for JS cells, and "markdown" for markdown cells.

File Format

.sapwb files are JSON:

{
  "version": 1,
  "title": "Descriptive Title",
  "cells": [
    { "type": "markdown", "content": "# Title\nExplanation" },
    { "type": "abap-sql", "content": "SELECT matnr, mtart FROM mara WHERE mtart = 'FERT'" },
    { "type": "javascript", "content": "const rows = cells[1].result;\nreturn rows.map(r => ({ MATNR: r.MATNR, MTART: r.MTART }));" },
    { "type": "abap-sql", "content": "SELECT matnr, werks FROM marc WHERE matnr = ${cells[2].result[0].MATNR}" }
  ]
}

Critical Rules

  1. Get ABAP SQL syntax. Call abapfs_get_sql_syntax before writing SQL cells. ABAP SQL differs from standard SQL (tilde for table~field, no semicolons, etc.).

  2. Cell types are exactly: "abap-sql", "javascript", or "markdown". No other values.

  3. SQL cells execute ABAP SQL via ADT. Only SELECT and WITH are allowed. No DML. No semicolons.

Read the full file on GitHub · 115 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. 10d ago First seen · 115 lines · 81 tokens per session scan A e9c9bb177657

Subscribe to this mod's changes

sap-data-workbook is a skill published in the GitHub repository marcellourbani/vscode_abap_remote_fs (388 stars, last pushed today), licensed MIT. It adds 81 tokens to every session and 1,652 once invoked, about $0.0004 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

oh-my-posh

Install, configure, or troubleshoot Oh My Posh/ohmyposh: shell init, themes, segments, Nerd Font icons, and prompt setup on PowerShell, zsh, bash, or fish.

JanDeDobbeleer/oh-my-posh · 47 tokens

ai-sdk

Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI…

browseros-ai/BrowserOS · 155 tokens

sap-datasphere

SAP Datasphere development skill with 3 specialized agents, 5 slash commands, and validation hooks. Use when building data warehouses on SAP BTP, creating analytic models, configuring data flows and replication flows, setting up connections, managing spaces and users, implementing data access controls, using the…

secondsky/sap-skills · 110 tokens

sap-ai-core

Guides development with SAP AI Core and SAP AI Launchpad for enterprise AI/ML workloads on SAP BTP. Use when: deploying generative AI models, building orchestration workflows with templating/filtering/grounding, implementing RAG with vector databases, managing ML training pipelines with Argo Workflows, configuring…

secondsky/sap-skills · 152 tokens

sap-bw-query

Use when automating SAP BW query inspection, InfoProvider metadata reads (characteristics, key figures), metadata-verified specification review, unsaved draft preparation, or human-confirmed query draft population through Eclipse or HANA Studio with BW Modeling Tools.

secondsky/sap-skills · 54 tokens

sap-cloud-sdk-ai-python

Integrates the SAP Cloud SDK for AI for Python (sap-ai-sdk-gen, formerly generative-ai-hub-sdk) into Python applications. Use when building Python apps with SAP AI Core, Generative AI Hub, or the Orchestration Service: chat completion, embeddings, streaming, LangChain integration, templating, content filtering, data…

secondsky/sap-skills · 103 tokens