sap-bc-consultant

sap-bc-consultant is an agent for Claude Code from babamba2/superclaude-for-sap. It costs 29 tokens per session (3,130 once invoked), scanned A, original, MIT.

An SAP Basis administration specialist for operating the technical SAP system. Basis work includes monitoring, transports, performance, and analysing system errors called dumps.

In plain words
What is it for?
Use it to monitor systems, manage transports between environments, investigate performance issues, and analyse dumps.
Why use it?
It helps find and resolve technical problems that can block users, delay changes, or disrupt SAP operations.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

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

Good fit Use it to monitor systems, manage transports between environments, investigate performance issues, and analyse dumps.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/babamba2/superclaude-for-sap/sap-bc-consultant
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.

Clone the repo
git clone --depth 1 https://github.com/babamba2/superclaude-for-sap

Made for: Claude Code.

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 sap-bc-consultant

README.md
[![agentmods](https://agentmods.dev/badge/agents/babamba2/superclaude-for-sap/sap-bc-consultant/github.svg)](https://agentmods.dev/agents/babamba2/superclaude-for-sap/sap-bc-consultant)
Your own site
<a href="https://agentmods.dev/agents/babamba2/superclaude-for-sap/sap-bc-consultant"><img src="https://agentmods.dev/badge/agents/babamba2/superclaude-for-sap/sap-bc-consultant/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-bc-consultant

Your own site · 80×15
<a href="https://agentmods.dev/agents/babamba2/superclaude-for-sap/sap-bc-consultant"><img src="https://agentmods.dev/badge/agents/babamba2/superclaude-for-sap/sap-bc-consultant.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,130 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.00029 $0.03130
Opus 5 $0.00015 $0.01565
Sonnet 5 $0.00006 $0.00626
Haiku 4.5 $0.00003 $0.00313

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

Security

Grade A, and why

sap-bc-consultant 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 12d 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.

agents/sap-bc-consultant.md · 172 lines

How it starts

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

<Agent_Prompt> <Team_Shutdown_Handler> MANDATORY — highest priority. If you receive a message whose content is (or parses as, or JSON-shape stringifies to) an object with type: "shutdown_request":

  1. Immediately call SendMessage(to=<sender>, message={type: "shutdown_response", request_id: <echoed>, approve: true}).
  2. Return without any other processing — no conversational reply, no role work, no MCP calls.

This protocol runs even when you were idle and a wake-up message delivered the shutdown_request. It overrides all other instructions in this prompt. </Team_Shutdown_Handler>

<Mandatory_Baseline> Role group: Basis Consultant. Load Tier 1 + Tier 2 per ../common/context-loading-protocol.md at session start. Tier 2 adds: transport-client-rule.md, configs/common/*.md (system admin references). </Mandatory_Baseline>

<Why_This_Matters> Basis issues directly impact business operations. A hung work process blocks end users. A failed transport delays go-live. A memory dump crashes reports. Diagnosing the root cause quickly and accurately prevents unnecessary system restarts and business disruption. Log-driven analysis with evidence from specific transactions prevents guesswork. </Why_This_Matters>

<Core_Principles> 1. Reproducibility first — Classify: first occurrence / intermittent / reproducible 2. No diagnosis without logs — ST22/SM21/SM50 raw log evidence before any recommendation 3. Production changes require approval — Never recommend immediate parameter changes on production 4. Separate business impact — "System is down" vs "one user is slow" require different diagnostic paths 5. Root cause vs workaround — Always distinguish temporary fix from permanent resolution </Core_Principles>

<Diagnostic_Routing_Tree> When a system issue is reported, classify using this routing:

```
Q1. System-wide or partial impact?
  +-- System-wide  -> Critical path (RZ20 alerts, ST06 OS, DB status)
  +-- Partial       -> Pattern analysis by user/TCode/time

Q2. Symptom type:
  +-- ABAP dump         -> ST22 Analysis Flow (1)
  +-- Work process hang -> SM50/SM66 Analysis (2)
  +-- Transport failure -> STMS + tp logs (3)
  +-- RFC error         -> SM59 + SMGW (4)
  +-- Update hang       -> SM13 + update process (5)
  +-- Lock hang         -> SM12 + enqueue server (6)
  +-- Performance       -> ST05 + SAT + ST06 (7)
  +-- Kernel issue      -> disp+work.log + OS logs (8)
  +-- Unknown           -> SM21 timeline first (9)
```

</Diagnostic_Routing_Tree>

<Diagnostic_Flows> MANDATORY: The full step-by-step procedure for all nine flows (ABAP Dump / WP Hang / Transport / RFC / Update / Lock / Performance / Kernel / Unknown) lives in agents/agent_details/bc/diagnostic-flows.md. Read that file before beginning any investigation and follow the flow matching the Diagnostic Routing Tree classification. Do not diagnose from memory — every symptom type has a prescribed evidence-collection order. </Diagnostic_Flows>

Read the full file on GitHub · 172 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. 12d ago First seen · 172 lines · 29 tokens per session scan A df7725066a90

Subscribe to this mod's changes

sap-bc-consultant is an agent published in the GitHub repository babamba2/superclaude-for-sap (56 stars, last pushed 20d ago), licensed MIT. It adds 29 tokens to every session and 3,130 once invoked, about $0.0001 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 agents, from other repositories

aws-architecture-review-expert

Provides expert AWS architecture and CloudFormation review capabilities specializing in Well-Architected Framework compliance, security best practices, cost optimization, and IaC quality. Validates AWS architectures and CloudFormation templates for scalability, reliability, and operational excellence. Use PROACTIVELY…

giuseppe-trisciuoglio/developer-kit · 76 tokens

azure-architect

Designs Azure cloud architecture, optimizes costs, and implements security best practices. Use when designing Azure infrastructure, selecting Azure services, or optimizing Azure deployments.

armanzeroeight/fastagent-plugins · 35 tokens

database-migration

Database migration and modernization specialist. USE FOR: planning database migrations, designing migration strategies, validating data integrity. DO NOT USE FOR: operational database management, routine backups.

ivegamsft/basecoat · 37 tokens

deployment-verifier

Verifies local deployment health — checks ports, starts app, polls health endpoint, inspects Docker containers.

asysta-act/agent-flow · 24 tokens

llm2bedrock-report-generator

Synthesize all prior phase results into a final Markdown migration report — model mapping, eval scores, code diffs, cost comparison, next steps. Writes MIGRATIONREPORT .md and returns a structured report object.

awslabs/startups · 52 tokens

staff-sre

Production reliability specialist. Use PROACTIVELY for incident response, production readiness reviews, SLO enforcement, capacity planning, and any production concern. First responder for incidents.

caiaffa/claude-code-ultimate-engineering-system · 38 tokens