32 Claude Code plugins for SAP development
Production-ready Claude Code plugins for SAP development. Each plugin provides context-aware skills that activate automatically when you work with SAP BTP, CAP, Fiori, ABAP, Analytics, and more.
Note: These skills follow Claude Code plugin patterns and are optimized for the Claude Code CLI and Claude Desktop. While the underlying skill content can be adapted for other AI harnesses, they are not automatically usable outside Claude Code without extraction and modification.
This repository uses Claude Plugin Patterns — natively supported by:
| Platform | Status | Notes |
|---|---|---|
| Claude Code | ✅ Native | Full marketplace support |
| Factory Droid | ✅ Native | Full marketplace support |
**For all other Platforms like opencode, codex and others, you can use https://github.com/enulus/OpenPackage **
Add the SAP Skills marketplace to Claude Code:
# Add the marketplace
/plugin marketplace add https://github.com/secondsky/sap-skills
# Install individual plugins
/plugin install sap-cap-capire@sap-skills
# Or install multiple plugins at once
/plugin install sap-cap-capire@sap-skills sap-fiori-tools@sap-skillsTeam Setup: Add to .claude/settings.json for automatic availability:
{
"extraKnownMarketplaces": [
{ "name": "sap-skills", "url": "https://github.com/secondsky/sap-skills" }
]
}For contributors or local development:
# Clone the repository
git clone https://github.com/secondsky/sap-skills.git
# Plugins are automatically available from the plugins/ directoryOr browse and install from the marketplace:
claude-code marketplace browseOnce installed, plugins provide skills that automatically activate based on your project context. No manual invocation needed—just start working:
- "Create a new CAP service" →
sap-cap-capireactivates - "Set up Fiori Elements app" →
sap-fiori-toolsactivates - "Deploy to BTP" →
sap-btp-cloud-platformactivates - "Write ABAP CDS view" →
sap-abap-cdsactivates - "Create SAC planning model" →
sap-sac-planningactivates
Claude Code intelligently loads relevant skills when you need them, providing expert guidance without overwhelming your context.
All plugins include context-aware skills. Advanced features shown in table columns:
- Commands: Slash commands for quick access
- Agents: Specialized autonomous assistants
- MCP: Model Context Protocol server integration
| Plugin | Commands | Agents | MCP | Description |
|---|---|---|---|---|
| sap-api-style | — | — | — | API documentation standards following SAP guidelines |
| sap-hana-cli | — | — | ✓ | SAP HANA Developer CLI for database operations |
| Plugin | Commands | Agents | MCP | Description |
|---|---|---|---|---|
| sap-btp-best-practices | — | — | — | SAP BTP development best practices and patterns |
| sap-btp-build-work-zone-advanced | — | — | — | SAP Build Work Zone (Advanced Edition) development |
| sap-btp-business-application-studio | — | — | — | SAP Business Application Studio (BAS) development |
| sap-btp-cias | — | — | — | Cloud Identity Access Service (CIAS) integration |
| sap-btp-cloud-logging | — | — | — | SAP BTP Cloud Logging service |
| sap-btp-cloud-platform | — | — | — | SAP Business Technology Platform core services |
| sap-btp-cloud-transport-management | — | — | — | Cloud Transport Management (CTM) service |
| sap-btp-connectivity | — | — | — | SAP BTP Connectivity service |
| sap-btp-developer-guide | — | — | — | Comprehensive SAP BTP developer guide |
| sap-btp-integration-suite | — | — | — | SAP Integration Suite development |
| sap-btp-intelligent-situation-automation | — | — | — | Intelligent Situation Automation development |
| sap-btp-job-scheduling | — | — | — | SAP BTP Job Scheduling service |
| sap-btp-master-data-integration | — | — | — | Master Data Integration service |
| sap-btp-service-manager | — | — | — | SAP BTP Service Manager operations |
| Plugin | Commands | Agents | MCP | Description |
|---|---|---|---|---|
| sap-fiori-tools | — | — | — | SAP Fiori Tools development and deployment |
| sapui5 | 5 | 4 | ✓ | SAPUI5 framework development |
| sapui5-cli | — | — | — | SAPUI5 CLI tools and commands |
| sapui5-linter | — | — | — | SAPUI5 code quality and linting |
| Plugin | Commands | Agents | MCP | Description |
|---|---|---|---|---|
| sap-datasphere | 5 | 3 | ✓ | SAP Datasphere data modeling and management |
| sap-hana-cloud-data-intelligence | — | — | — | SAP HANA Cloud Data Intelligence |
| sap-sac-custom-widget | 3 | 3 | — | SAP Analytics Cloud custom widget development |
| sap-sac-planning | 3 | 3 | — | SAP Analytics Cloud planning applications |
| sap-sac-scripting | 4 | 4 | — | SAP Analytics Cloud scripting API |
| Plugin | Commands | Agents | MCP | Description |
|---|---|---|---|---|
| sap-abap | — | — | — | ABAP development patterns and best practices |
| sap-abap-cds | — | — | — | ABAP Core Data Services (CDS) views |
| sap-ai-core | — | — | — | SAP AI Core machine learning development |
| sap-cap-capire | 5 | 4 | ✓ | SAP Cloud Application Programming Model (CAP) |
| sap-cloud-sdk-ai | — | — | — | SAP Cloud SDK for AI development |
| sap-hana-ml | — | — | — | SAP HANA Machine Learning (ML) library |
| sap-sqlscript | 3 | 3 | — | SAP HANA SQLScript development |
This repository uses the Claude Code plugin architecture:
sap-skills/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
│
└── plugins/ # All plugins (33)
└── [plugin-name]/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
│
├── skills/
│ └── [skill-name]/
│ ├── SKILL.md # Main skill content
│ ├── README.md # Keywords for auto-discovery
│ └── references/ # Documentation files
│
├── agents/ # Optional: Specialized agents
├── commands/ # Optional: Slash commands
└── hooks/ # Optional: Event hooks
Key Features:
- Dual-level manifests: Plugin-level and skill-level
plugin.jsonfiles - Modular organization: Each plugin is self-contained with its own resources
- Advanced features: 7 plugins include commands (28 total), 7 with agents (24 total), 4 with MCP integration
- Cross-references: 13 plugins have marketplace cross-references to related plugins
Want to contribute a new SAP plugin? Follow the quick workflow:
-
Use plugin-dev for basics (FIRST):
- Run:
/use plugin-dev:skill-development - Covers: YAML frontmatter, plugin structure, directory layout
- Official Anthropic standards
- Run:
-
Add SAP-specific elements:
- Read Contributor Guide for:
- SAP SDK version tracking
- Production testing requirements
- Error catalog patterns
- Marketplace cross-references
- Read Contributor Guide for:
-
Generate plugin manifests:
./scripts/sync-plugins.sh
-
Test and verify:
- Check Workflow Checklist
-
Submit:
git add plugins/your-plugin .claude-plugin/marketplace.json git commit -m "Add your-plugin for [use case]"
For General Plugin Development: Use official plugin-dev skills FIRST
Run: /use plugin-dev:skill-development, plugin-dev:plugin-structure, etc.
SAP-Specific Documentation:
| Resource | Purpose |
|---|---|
| Getting Started | Installation and quick reference |
| Contributor Guide | Comprehensive development guide |
| Workflow Checklist | Quality verification checklist |
| CLAUDE.md | Project context and critical directives |
| CHANGELOG.md | Version history and changes |
Documentation Improvements:
- ✅ Clarified plugin vs. skill terminology throughout README
- ✅ Enhanced all plugin tables with component visibility (Commands, Agents, MCP)
- ✅ Added Component Legend explaining advanced features
- ✅ Updated badge from "Skills" to "Plugins" to reflect installable units
- ✅ Comprehensive terminology updates across 15+ sections
Component Breakdown:
- 7 plugins with Commands (28 total slash commands)
- 7 plugins with Agents (24 autonomous assistants)
- 4 plugins with MCP integration (CAP, Datasphere, HANA CLI, UI5)
See CHANGELOG.md for complete details.
BREAKING CHANGE: Migrated from flat skills/ directory to plugin-based architecture.
What's New:
- ✅ 33 plugins with dual-level manifests
- ✅ 91 JSON manifest files auto-generated
- ✅ 5 plugins with agents, commands, and hooks
- ✅ 22 new reference files across plugins
- ✅ Comprehensive marketplace cross-references
- ✅ 3 plugins with MCP server integrations (CAP, Datasphere, UI5)
See CHANGELOG.md for complete details.
This repository is open source under the GPL-3.0 License. Contributions are welcome!
Ways to contribute:
- Report issues or suggest features via GitHub Issues
- Submit new plugins (use plugin-dev + Contributor Guide)
- Improve existing plugins with updated docs or references
- Help maintain package versions and dependencies
Quality Standards:
- All plugins must be production-tested
- Package versions must be current (verified quarterly)
- Known issues must be documented with sources
Quality:
- ✅ 100% compliance with Anthropic Skills Spec
- ✅ All plugins production-tested
- ✅ Package versions current (checked quarterly)
Efficiency:
- ✅ 100% error prevention vs. manual setup
- ✅ Sub-5-minute plugin creation with templates
- ✅ 95%+ first-try auto-discovery rate
- Documentation: Browse guides in this repository
- Issues: GitHub Issues
- SAP Resources:
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
Maintained by: E.J. Repository: https://github.com/secondsky/sap-skills Last Updated: 2026-02-06 (v2.1.2)