wix-toolset-config — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited wix-toolset-config (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Configure WiX Toolset for creating Windows MSI installers with proper component structure and features.
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"productName": { "type": "string" },
"version": { "type": "string" },
"manufacturer": { "type": "string" },
"upgradeCode": { "type": "string" }
},
"required": ["projectPath", "productName", "version"]
}<?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>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="MyApplication"/>
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component Id="MainExecutable">
<File Source="$(var.SourceDir)\MyApp.exe"/>
</Component>
</ComponentGroup>
</Fragment>
</Wix>nsis-installer-generatormsix-package-generator~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.