ecom-integrations
SKILL.md
Decomposer/Composer Patterns
Decomposer Pattern
Decomposers transform external platform data → Violet canonical models.
Interface
public interface Decomposer<P, V> {
V decompose(P platformEntity);
List<V> decomposeList(List<P> platformEntities);
}
Example: Shopify Product Decomposer
public class ShopifyProductDecomposer implements Decomposer<ShopifyProduct, Offer> {