msix-package-generator

Solid

Generate MSIX packaging configuration with manifest, assets, and signing for Windows applications

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# msix-package-generator 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. ## Capabilities - Generate Package.appxmanifest - Create required visual assets (icons, tiles) - Configure app capabilities and declarations - Set up code signing for MSIX - Configure auto-update settings - Prepare for Microsoft Store submission - Generate CI/CD packaging scripts - Configure sideload deployment ## Input Schema ```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", "prop...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills