sap-dtw-expert
SAP DTW Expert
Quick start
- Search
assets/TEMPLATE_INDEX.yamlbytable_codeorobject_nameto find the right template(s). - Read the target
.tsvfile — row 1 is the DI API field name (used by DTW), row 2 is a label (ignored by DTW). - Fill data from row 3 onward; every column in row 1 is available, only a subset is mandatory.
Template lookup
import yaml, pathlib
index = yaml.safe_load(pathlib.Path("assets/TEMPLATE_INDEX.yaml").read_text())
matches = [e for e in index if e["table_code"] == "OCRD"]
matches = [e for e in index if "BusinessPartner" in e["object_name"]]
matches = [e for e in index if e["module"] == "Business Partners"]
More from kehwar/skills
setup-workflow-skills
Scaffolds AGENTS.md, docs/glossary.md, docs/adr/, docs/issue-tracker.md, and Beads issue tracking in a fresh repo.
17tdd
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
17write-a-skill
Create new agent skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill.
14improve-codebase-architecture
Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.
12to-prd
Turn the current conversation context into a PRD and publish it to Beads Issue Tracker. Use when user wants to create a PRD from the current context.
12grill-with-docs
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
10