.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/oisee/vibing-steampunk
home/mcp-servers/oisee/vibing-steampunk
oisee avatar

vibing-steampunk

byoisee· 1 MCP server

Stars

425

Forks

101

Category

Backend & APIs

View on GitHub

TL;DR

AI-Agentic Development Unlocked for ABAP — ECC, S/4HANA, everywhere ADT is available.

How to install vibing-steampunk?

oisee/vibing-steampunk
$git clone https://github.com/oisee/vibing-steampunk

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install vibing-steampunk by running `git clone https://github.com/oisee/vibing-steampunk`, then use it for the current task and follow its documentation at https://github.com/oisee/vibing-steampunk.

Files · 1

View on GitHub
README.md
1# Vibing Steampunk (vsp)
2 
3**AI-Agentic Development Unlocked for ABAP** — ECC, S/4HANA, everywhere ADT is available.
4 
5> **ADT ↔ MCP Bridge**: Gives Claude (and other AI assistants) full access to SAP ADT APIs.
6> Read code, write code, debug, deploy, run tests — all through natural language (or DSL for automation).
7>
8> See also: [OData ↔ MCP Bridge](https://github.com/oisee/odata_mcp_go) for SAP data access.
9>
10> **Want to review or test?** Start here: **[Reviewer Guide](docs/reviewer-guide.md)** — 8 hands-on tasks, no SAP needed.
11 
12![Vibing ABAP Developer](./media/vibing-steampunk.png)
13 
14## Hot Right Now
15 
16### Package Analysis Suite
17 
18Five analysis commands that answer real questions about your ABAP packages:
19 
20```bash
21vsp health --package '$ZDEV' # tests + ATC + boundaries + staleness
22vsp health --package '$ZDEV' --report html # full HTML report with details
23vsp slim '$ZDEV' --level methods # dead code detection (method-level)
24vsp api-surface '$ZDEV' --include-subpackages # Clean Core: which standard APIs do you use?
25vsp boundaries '$ZDEV' # directional boundary crossing analysis
26vsp boundaries '$ZDEV' --format mermaid # visual graph with package subgraphs
27```
28 
29### Transport & Change History
30 
31```bash
32vsp changelog '$ZDEV' --since 20260101 # what changed in this package?
33vsp changes '$ZDEV' --attribute SAPTEST # group transports by CR attribute (E070A)
34```
35 
36### Directional Boundary Crossings
37 
38Not just "crossed" or "not crossed" — **which direction** the dependency flows:
39 
40| Direction | Meaning | Verdict |
41|-----------|---------|---------|
42| UPWARD | child → parent | OK |
43| COMMON | anything → _00 package | OK |
44| SIBLING | module → module | BAD — extract to common |
45| DOWNWARD | parent → child | BAD — inverts hierarchy |
46| EXTERNAL | cross-hierarchy | WARN — isolation violation |
47| CIRCULAR | A→B + B→A siblings | BAD — coupled modules |
48 
49Export to 7 formats: `text`, `json`, `md`, `mermaid`, `html`, `dot` (Graphviz), `plantuml`, `graphml` (Gephi/yEd).
50 
51### Side Effect & LUW Analysis
52 
53The parser detects transactional patterns in ABAP source:
54 
55| What | Detected |
56|------|----------|
57| DB read/write | SELECT, INSERT, UPDATE, DELETE, MODIFY |
58| LUW ownership | COMMIT WORK, ROLLBACK WORK |
59| Deferred execution | IN UPDATE TASK, IN BACKGROUND TASK |
60| Async | STARTING NEW TASK (aRFC), SUBMIT VIA JOB |
61| External calls | RFC DESTINATION, HTTP client, APC/WebSocket |
62| Transactions | CALL TRANSACTION, LEAVE TO TRANSACTION |
63| Transformations | CALL TRANSFORMATION |
64 
65LUW classification: **safe** / **participant** / **owner** / **unsafe**.
66 
67### Health Reports
68 
69Full health reports with test details, ATC findings, and boundary crossings:
70 
71```bash
72vsp health --package '$ZDEV' --details # text with all details
73vsp health --package '$ZDEV' --report md # → _ZDEV.md
74vsp health --package '$ZDEV' --report html # → _ZDEV.html
75vsp health --package '$ZDEV' --report my.html # → my.html
76```
77 
78Tests discover embedded local test classes across the full package hierarchy — the same as Eclipse Ctrl+Shift+F10.
79 
80### More
81 
82- `vsp graph co-change CLAS ZCL_FOO` for transport-based co-change analysis
83- `vsp graph where-used-config ZKEKEKE` for heuristic TVARVC usage discovery
84- `.vsp.json` `transport_attribute` for per-system CR correlation config
85- **[Analysis & Refactoring Guide](docs/analysis-refactoring-guide.md)** for what these commands do
86- **[Graph Guide](docs/graph-guide.md)** for examples, data sources, and current limits
87 
88## 0x101 Stars!
89 
90Read the latest article: **[VSP IS ONLY 5% EXPLORED](articles/2026-04-07-vsp-only-5-percent-explored.md)** — 257 stars, 147 tools, compilers, graph analysis, and why 95% of the surface is still unexplored.
91 
92Previous: **[Agentic ABAP at 100 Stars](articles/2026-02-18-100-stars-celebration.md)**
93 
94## What's New — Analysis & Intelligence Sprint
95 
96> **Sprint goal:** move from CRUD tool to ABAP intelligence platform. P

Preview

oisee/vibing-steampunkoisee/vibing-steampunk

# Vibing Steampunk (vsp)

**AI-Agentic Development Unlocked for ABAP** — ECC, S/4HANA, everywhere ADT is available.

> **ADT ↔ MCP Bridge**: Gives Claude (and other AI assistants) full access to SAP ADT APIs.

> Read code, write code, debug, deploy, run tests — all through natural language (or DSL for automation).

Repooisee/vibing-steampunk
TypeMCP Servers
CategoryBackend & APIs
UpdatedJun 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPabapadt

Related

6 picks
Type
  1. tadata-org avatarfastapi_mcpAutomatic MCP server generator for FastAPI applications - converts FastAPI endpoints to MCP tools for LLM integrationMCP ServersNov 202519M12k
  2. ivnvxd avatarmcp-server-odooA Model Context Protocol server for Odoo ERP systemsMCP ServersJul 2026551k349
  3. pantalytics avatarodoo-mcp-proAI connector for Odoo ERP -- connect Claude, ChatGPT, and other AI tools to Odoo via MCP (Model Context Protocol)MCP ServersJul 2026551k65
  4. cap-js avatarmcp-serverModel Context Protocol (MCP) server for AI-assisted development of CAP applications.MCP ServersJul 2026295k105
  5. punitarani avatarfliA Python wrapper for Google Flights APIMCP ServersJul 2026211k3.1k
  6. meilisearch avatarmeilisearch-mcpMCP server for MeilisearchMCP ServersJun 202661k194