npx skills add a5c-ai/babysitter --skill wix-toolset-config --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Product Id="*" Name="My Application" Version="1.0.0.0" Manufacturer="My Company" Language="1033" UpgradeCode="PUT-GUID-HERE"> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/> <MajorUpgrade DowngradeErrorMessage="A newer version is already installed."/> <MediaTemplate EmbedCab="yes"/> <Feature Id="ProductFeature" Title="My Application" Level="1"> <ComponentGroupRef Id="ProductComponents"/> </Feature> </Product>
- Capabilities
- Input Schema
- WiX Example
- Related Skills
What does the wix-toolset-config skill do?
Configure WiX Toolset for Windows MSI installers
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill wix-toolset-config --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
