sc4sap:analyze-cbo-obj

sc4sap:analyze-cbo-obj is a skill for Claude Code from babamba2/superclaude-for-sap. It costs 72 tokens per session (1,657 once invoked), scanned A, original, MIT.

An inventory and reference tool for SAP Customer Business Object packages, meaning packages containing custom business objects and related development elements.

In plain words
What is it for?
Use it when joining or extending an SAP module with an established custom package. It saves a reference for later development workflows to consult.
Why use it?
It shows which custom tables, classes, function modules, structures, and other elements already exist and are reused, reducing unnecessary new development.

Skill 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 when joining or extending an SAP module with an established custom package. It saves a reference for later development workflows to consult.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/babamba2/superclaude-for-sap/analyze-cbo-obj
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 babamba2/superclaude-for-sap --skill analyze-cbo-obj
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 sc4sap:analyze-cbo-obj

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/babamba2/superclaude-for-sap/analyze-cbo-obj"><img src="https://agentmods.dev/badge/skills/babamba2/superclaude-for-sap/analyze-cbo-obj.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,657 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 5
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
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.00072 $0.01657
Opus 5 $0.00036 $0.00829
Sonnet 5 $0.00014 $0.00331
Haiku 4.5 $0.00007 $0.00166

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

Security

Grade A, and why

sc4sap:analyze-cbo-obj 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.

skills/analyze-cbo-obj/SKILL.md · 92 lines

How it starts

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

SC4SAP Analyze CBO Objects

Walks a CBO (Customer Business Object) package, inventories every project-built ABAP element (table, structure, data element, class, interface, function module, program, view, table type), detects which elements are frequently reused inside the package, infers each element's business purpose from its name/fields/descriptions, and persists the result to .sc4sap/cbo/<MODULE>/<PACKAGE>/ for downstream skills (program, program-to-spec, create-object, autopilot) to consult before creating anything new.

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

<Use_When>

  • Starting development on a module that already has a sizeable Z-package
  • Onboarding onto an AMS / support engagement (need a map of custom assets)
  • Before /sc4sap:create-program or /sc4sap:create-object on a new spec — so reuse is evaluated
  • User says "analyze CBO", "analyze custom objects", "map Z package", "list frequently used customs", "CBO inventory" </Use_When>

<Do_Not_Use_When>

  • User wants a code quality review of one object → /sc4sap:analyze-code
  • User wants to reverse-engineer ONE program into a spec → /sc4sap:program-to-spec
  • User wants to create an object → /sc4sap:create-object
  • Package does not yet contain custom objects (CBO discovery is not meaningful) </Do_Not_Use_When>

<Session_Trust_Bootstrap> MANDATORY — runs as Step 0 before any MCP call or user interaction.

Invoke /sc4sap:trust-session with parent_skill=sc4sap:analyze-cbo-obj to pre-grant all MCP tool + file-op permissions for this session (eliminates per-tool "Allow this tool?" prompts during the 8-step walk).

  • If .sc4sap/session-trust.log already has a line within the last 24h, skip silently.
  • Otherwise run it and surface the one-line confirmation.

Full spec: see ../trust-session/SKILL.md. </Session_Trust_Bootstrap>

<Workflow_Steps> Orchestration is 3 main-thread Socratic steps (Haiku) + one delegated dispatch to sap-stocker (Sonnet) + a branching hand-off. Detailed spec lives in workflow-steps.md.

  • Step 1 / 1.5 / 2 (main thread · Haiku) — Socratic intake: package name → flagship programs (optional <KEY_PROGRAMS>) → module. Frontmatter model: haiku pins the main thread to Haiku 4.5 for cost-efficient Q&A — no domain judgment required for intake.
  • Step 3–7 (delegated · Sonnet 4.6) — One Agent(...) dispatch to sap-stocker. The stocker runs its own Investigation_Protocol: walk → GetWhereUsed graph → pin/frequency tiering → business-purpose inference → cross-module gap analysis (per ../../common/active-modules.md) → sensitive-name flagging → persist index.md + inventory.json → return a Logic-heavy: <bool> flag. Authoritative spec: ../../agents/sap-stocker.md § Investigation_Protocol + § Output_Format.
  • Step 8 (branching):
    • Branch A (Logic-heavy: false, DDIC-dominant) — canned summary printed by main thread (Haiku). No agent dispatch.
    • Branch B (Logic-heavy: true, FM/CLAS/INTF/large-PROG in inventory) — dispatch sap-writer (Haiku 4.5) for a reader-facing briefing: pinned highlights · business-logic assets · cross-module gaps · sensitive objects · next-step hint. Writer BLOCKED → fallback to Branch A.

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

Subscribe to this mod's changes

sc4sap:analyze-cbo-obj is a skill published in the GitHub repository babamba2/superclaude-for-sap (54 stars, last pushed 17d ago), licensed MIT. It adds 72 tokens to every session and 1,657 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

event-store-design

Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.

wshobson/agents · 33 tokens

convex-explain-app

Explain an existing Convex app — data model + relationships, public vs internal functions, auth/ownership model, components, a request→data flow — read from the schema and function surface. Read-only.

openclaw/clawhub · 47 tokens

platform-custom-field-generate

Use this skill when users need to create, generate, or validate Salesforce Custom Field metadata. Trigger when users mention custom fields, field types, Roll-up Summary fields, Master-Detail relationships, Lookup relationships, formula fields, picklists, dependent (controlling) picklists, referencing a value set from…

forcedotcom/sf-skills · 194 tokens

field-service-sobject-create-configure

Headless 360 REST API deployment step for creating sObject records. Handles describe-based field discovery, required-field derivation, entity-relationship ordering, and composite graph transactions. Use this skill when a designer skill (or a user directly) needs to create sObject records after design confirmation…

forcedotcom/sf-skills · 74 tokens

openloomi-api

OpenLoomi ships a local-first HTTP API served from the desktop app (port 3414, fallback 3515). All auth, Memory, AI, RAG, Loop, and Audit data live in a local SQLite database — your data stays on your machine and the OpenLoomi app is the source of truth. The only externally-routed auth path is the Composio OAuth…

melandlabs/openloomi · 106 tokens

nornicdb-grpc

Drive NornicDB over gRPC — the Qdrant-compatible surface (Collections, Points, Snapshots) plus the additive NornicSearch service. Use when ingesting via Qdrant SDKs, migrating from Qdrant, or running hybrid text+vector search from a non-Bolt client. Covers connection, RPC catalog, collection→database mapping…

orneryd/NornicDB · 98 tokens