Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generate MSIX packaging configuration with manifest, assets, and signing for Windows applications
.claude/skills/a5c-ai-msix-package-generator/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 67% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 86% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 179% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 63% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 543% | 0% |
Generate MSIX packaging configuration for Windows applications with proper manifest, assets, signing configuration, and Store submission preparation. This skill handles the complete MSIX packaging workflow.
json{ "type": "object", "properties": { "projectPath": { "type": "string", "description": "Path to the project" }, "appInfo": { "type": "object", "properties": { "name": { "type": "string" }, "displayName": { "type": "string" }, "publisher": { "type": "string" }, "publisherDisplayName": { "type": "string" }, "version": { "type": "string" }, "description": { "type": "string" } }, "required": ["name", "displayName", "publisher", "version"] }, "capabilities": { "type": "array", "items": { "enum": ["internetClient", "privateNetworkClientServer", "documentsLibrary", "musicLibrary", "picturesLibrary", "webcam", "microphone", "location", "removableStorage", "appointments", "contacts"] } }, "executables": { "type": "array", "items": { "type": "object", "properties": { "target": { "type": "string" }, "id": { "type": "string" }, "subsystem": { "enum": ["windows", "console"] } } } }, "distribution": { "enum": ["store", "sideload", "both"], "default": "sideload" } }, "required": ["projectPath", "appInfo"] }
json{ "type": "object", "properties": { "success": { "type": "boolean" }, "files": { "type": "array", "items": { "type": "object", "properties": { "path": { "type": "string" }, "type": { "enum": ["manifest", "assets", "priconfig", "signing"] } } } }, "buildCommands": { "type": "object", "properties": { "package": { "type": "string" }, "sign": { "type": "string" } } } }, "required": ["success"] }
xml<?xml version="1.0" encoding="utf-8"?> <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap uap3 desktop rescap"> <Identity Name="MyCompany.MyApp" Publisher="CN=My Company, O=My Company, L=City, S=State, C=US" Version="1.0.0.0" ProcessorArchitecture="x64"/> <Properties> <DisplayName>My Application</DisplayName> <PublisherDisplayName>My Company</PublisherDisplayName> <Logo>Assets\StoreLogo.png</Logo> <Description>A wonderful application</Description> </Properties> <Dependencies> <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0"/> </Dependencies> <Resources> <Resource Language="en-us"/> </Resources> <Applications> <Application Id="App" Executable="MyApp.exe" EntryPoint="Windows.FullTrustApplication"> <uap:VisualElements DisplayName="My Application" Description="A wonderful application" BackgroundColor="transparent" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png"> <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\Square310x310Logo.png" Square71x71Logo="Assets\SmallTile.png" ShortName="MyApp"> <uap:ShowNameOnTiles> <uap:ShowOn Tile="square150x150Logo"/> <uap:ShowOn Tile="wide310x150Logo"/> <uap:ShowOn Tile="square310x310Logo"/> </uap:ShowNameOnTiles> </uap:DefaultTile> <uap:SplashScreen Image="Assets\SplashScreen.png"/> </uap:VisualElements> <!-- File type associations --> <Extensions> <uap:Extension Category="windows.fileTypeAssociation"> <uap:FileTypeAssociation Name="myapp"> <uap:SupportedFileTypes> <uap:FileType>.myapp</uap:FileType> </uap:SupportedFileTypes> </uap:FileTypeAssociation> </uap:Extension> <!-- Protocol handler --> <uap:Extension Category="windows.protocol"> <uap:Protocol Name="myapp"> <uap:DisplayName>My App Protocol</uap:DisplayName> </uap:Protocol> </uap:Extension> <!-- Startup task --> <desktop:Extension Category="windows.startupTask"> <desktop:StartupTask TaskId="MyAppStartupTask" Enabled="false" DisplayName="My App Background Service"/> </desktop:Extension> </Extensions> </Application> </Applications> <Capabilities> <Capability Name="internetClient"/> <rescap:Capability Name="runFullTrust"/> </Capabilities> </Package>
Assets/
├── AppIcon.ico # Traditional icon
├── StoreLogo.png # 50x50
├── Square44x44Logo.png # 44x44 (with .targetsize-* variants)
├── Square44x44Logo.targetsize-16.png
├── Square44x44Logo.targetsize-24.png
├── Square44x44Logo.targetsize-32.png
├── Square44x44Logo.targetsize-48.png
├── Square44x44Logo.targetsize-256.png
├── Square150x150Logo.png # 150x150
├── Square310x310Logo.png # 310x310
├── Wide310x150Logo.png # 310x150
├── SmallTile.png # 71x71
├── SplashScreen.png # 620x300
└── BadgeLogo.png # 24x24xml<?xml version="1.0" encoding="utf-8"?> <resources targetOsVersion="10.0.0" majorVersion="1"> <packaging> <autoResourcePackage qualifier="Language"/> <autoResourcePackage qualifier="Scale"/> </packaging> <index root="\" startIndexAt="\"> <default> <qualifier name="Language" value="en-US"/> <qualifier name="Scale" value="100"/> </default> <indexer-config type="folder" foldernameAsQualifier="true" filenameAsQualifier="true"/> <indexer-config type="resw" convertDotsToSlashes="true" initialPath=""/> <indexer-config type="resfiles" qualifierDelimiter="."/> <indexer-config type="PRI"/> </index> </resources>
powershell# Build MSIX package msbuild MyApp.wapproj /p:Configuration=Release /p:Platform=x64 /p:AppxBundle=Always # Create package with makeappx makeappx pack /d output\ /p MyApp.msix # Sign package signtool sign /fd SHA256 /a /f certificate.pfx /p password MyApp.msix # Create self-signed certificate for testing $cert = New-SelfSignedCertificate -Type Custom -Subject "CN=MyCompany" ` -KeyUsage DigitalSignature -FriendlyName "MyApp Test Cert" ` -CertStoreLocation "Cert:\CurrentUser\My" Export-PfxCertificate -cert $cert -FilePath test.pfx -Password (ConvertTo-SecureString -String "password" -Force -AsPlainText)
xml<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net8.0-windows</TargetFramework> <UseWPF>true</UseWPF> <!-- MSIX Packaging --> <EnableMsixTooling>true</EnableMsixTooling> <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <PublishProfile>MSIX</PublishProfile> <!-- Package identity --> <ApplicationId>MyCompany.MyApp</ApplicationId> <ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion> <ApplicationVersion>1</ApplicationVersion> </PropertyGroup> <ItemGroup> <Content Include="Assets\**" CopyToOutputDirectory="PreserveNewest"/> </ItemGroup> </Project>
yamlname: Build MSIX on: [push] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4 with: dotnet-version: '8.0.x' - name: Decode certificate run: | $bytes = [Convert]::FromBase64String("${{ secrets.SIGNING_CERTIFICATE }}") [IO.File]::WriteAllBytes("cert.pfx", $bytes) - name: Build MSIX run: | dotnet publish -c Release -p:PublishProfile=MSIX signtool sign /fd SHA256 /f cert.pfx /p "${{ secrets.CERT_PASSWORD }}" MyApp.msix - name: Upload artifact uses: actions/upload-artifact@v4 with: name: msix-package path: '**/*.msix'
windows-authenticode-signer - Code signingwpf-mvvm-scaffold - Application setupdesktop-build-pipeline process - CI/CDwindows-platform-expert - Windows expertiserelease-manager - Release workflow| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | pass→pass | 12,364 | 12,562 | +2% | 1 | 1 | 0% | 2,478 | 5,177 | +109% | 0 | 0 | — |
case-02 | pass→pass | 10,836 | 10,306 | -5% | 1 | 1 | 0% | 2,316 | 4,910 | +112% | 0 | 0 | — |
case-03 | pass→pass | 7,548 | 9,135 | +21% | 1 | 1 | 0% | 1,555 | 4,713 | +203% | 0 | 0 | — |
case-04 | fail→pass | 14,049 | 11,942 | -15% | 1 | 1 | 0% | 3,475 | 5,820 | +67% | 0 | 0 | — |
case-05 | fail→pass | 11,397 | 8,524 | -25% | 1 | 1 | 0% | 2,704 | 5,033 | +86% | 0 | 0 | — |
case-06 | fail→pass | 9,059 | 12,494 | +38% | 1 | 1 | 0% | 2,166 | 6,040 | +179% | 0 | 0 | — |
case-07 | pass→pass | 7,113 | 7,029 | -1% | 1 | 1 | 0% | 1,713 | 4,529 | +164% | 0 | 0 | — |
case-08 | pass→pass | 2,690 | 3,099 | +15% | 1 | 1 | 0% | 560 | 3,290 | +488% | 0 | 0 | — |
case-09 | pass→pass | 5,466 | 6,402 | +17% | 1 | 1 | 0% | 1,107 | 4,339 | +292% | 0 | 0 | — |
case-10 | pass→pass | 5,738 | 4,722 | -18% | 1 | 1 | 0% | 1,081 | 3,774 | +249% | 0 | 0 | — |
case-11 | pass→pass | 9,503 | 4,830 | -49% | 1 | 1 | 0% | 1,909 | 3,948 | +107% | 0 | 0 | — |
case-12 | fail→pass | 13,962 | 7,865 | -44% | 1 | 1 | 0% | 2,607 | 4,249 | +63% | 0 | 0 | — |
case-13 | fail→pass | 3,050 | 3,104 | +2% | 1 | 1 | 0% | 533 | 3,426 | +543% | 0 | 0 | — |
case-14 | pass→pass | 4,802 | 3,148 | -34% | 1 | 1 | 0% | 976 | 3,289 | +237% | 0 | 0 | — |
case-15 | pass→pass | 10,407 | 7,757 | -25% | 1 | 1 | 0% | 2,022 | 4,438 | +119% | 0 | 0 | — |
case-16 | fail→pass | 24,997 | 5,657 | -77% | 1 | 1 | 0% | 2,165 | 4,052 | +87% | 0 | 0 | — |
case-17 | fail→fail | 5,984 | 4,965 | -17% | 1 | 1 | 0% | 983 | 3,743 | +281% | 0 | 0 | — |
case-18 | pass→pass | 8,294 | 4,864 | -41% | 1 | 1 | 0% | 1,550 | 3,789 | +144% | 0 | 0 | — |
case-19 | pass→pass | 7,197 | 6,602 | -8% | 1 | 1 | 0% | 1,409 | 4,230 | +200% | 0 | 0 | — |
case-20 | pass→pass | 8,742 | 5,458 | -38% | 1 | 1 | 0% | 1,586 | 4,086 | +158% | 0 | 0 | — |
case-21 | pass→pass | 3,392 | 1,879 | -45% | 1 | 1 | 0% | 684 | 3,209 | +369% | 0 | 0 | — |
case-22 | pass→pass | 6,302 | 3,593 | -43% | 1 | 1 | 0% | 1,209 | 3,562 | +195% | 0 | 0 | — |
case-23 | pass→pass | 3,865 | 3,859 | -0% | 1 | 1 | 0% | 815 | 3,796 | +366% | 0 | 0 | — |
case-24 | fail→fail | 10,665 | 2,702 | -75% | 1 | 1 | 0% | 1,891 | 3,431 | +81% | 0 | 0 | — |
case-25 | pass→pass | 5,014 | 4,833 | -4% | 1 | 1 | 0% | 1,023 | 3,982 | +289% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 25 cases were attempted. The headline lift of +24 percentage points is the difference between those two pass rates over the 25 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.