--- name: wix-toolset-config description: Configure WiX Toolset for Windows MSI installers allowed-tools: Read, Write, Edit, Bash, Glob, Grep tags: [windows, wix, msi, installer, packaging] --- # wix-toolset-config Configure WiX Toolset for creating Windows MSI installers with proper component structure and features. ## Capabilities - Generate WiX source files (.wxs) - Configure product and package info - Set up components and features - Configure registry entries - Set up services - Handle upgrades - Configure custom actions ## Input Schema ```json { "type": "object", "properties": { "projectPath": { "type": "string" }, "productName": { "type": "string" }, "version": { "type": "string" }, "manufacturer": { "type": "string" }, "upgradeCode": { "type": "string" } }, "required": ["projectPath", "productName", "version"] } ``` ## WiX Example ```xml ``` ## Related Skills - `nsis-installer-generator` - `msix-package-generator`