qt-installer-framework-config
SolidConfigure Qt Installer Framework for cross-platform installers with component management, online updates, and custom UI
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# qt-installer-framework-config
Configure Qt Installer Framework (IFW) for cross-platform installers. This skill generates installer configurations with component management, online updates, maintenance tool, and custom branding.
## Capabilities
- Generate installer configuration files
- Set up component structure with dependencies
- Configure online repository for updates
- Customize installer UI and branding
- Set up maintenance tool configuration
- Configure uninstaller behavior
- Generate component scripts
- Set up platform-specific settings
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": {
"type": "string",
"description": "Path to the project"
},
"installerName": {
"type": "string",
"description": "Name of the installer"
},
"appInfo": {
"type": "object",
"properties": {
"name": { "type": "string" },
"version": { "type": "string" },
"publisher": { "type": "string" },
"url": { "type": "string" }
},
"required": ["name", "version", "publisher"]
},
"components": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"displayName": { "type": "string" },
"description": { "type": "string" },
"version": { "type": "string" },
"required": { "type": "boolean" },
"dependencies": { "type": "array" }
}
}
...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
qt-qml-component-generator
Generate QML components with proper property bindings, signal/slot connections, and Qt Quick Controls integration
1,160 Updated today
a5c-ai AI & Automation Solid
qt-cmake-project-generator
Generate CMake-based Qt project with proper module dependencies, cross-compilation support, and modern Qt6 configuration
1,160 Updated today
a5c-ai AI & Automation Solid
qt-translation-workflow
Set up Qt Linguist workflow with .ts files, lupdate/lrelease integration, and translation management
1,160 Updated today
a5c-ai AI & Automation Solid
wix-toolset-config
Configure WiX Toolset for Windows MSI installers
1,160 Updated today
a5c-ai Testing & QA Solid
qt-test-fixture-generator
Generate Qt Test fixtures with mock QObject signals and slots, data-driven tests, and GUI testing setup
1,160 Updated today
a5c-ai