What problem does it solve? Building Wix service plugins (SPIs) requires exact handler signatures, response schemas, and a two-step extension registration process that is easy to get wrong, causing plugins to silently fail or never activate. ## Core Features & Use Cases - SPI Implementation Guidance: Step-by-step patterns for seven SPI types including shipping rates, additional fees, tax calculation, validations, discount triggers, gift cards, and bookings staff sorting. - Reference Documentation: Per-SPI references with correct imports, handler signatures, working TypeScript examples, and links to fetch exact request/response schemas. - Extension Registration: Enforces the mandatory two-step registration with builder methods, unique UUIDs, and updates to the main extensions file. - Use Case: A developer needs to add a custom handling fee at checkout; the Skill guides them to create plugin.ts with provideHandlers(), register it via extensions.ecomAdditionalFees(), and verify with tsc and wix build. ## Quick Start Ask the AI to create a Wix service plugin for custom shipping rates and follow the checklist to implement, register, and build the extension.