agentsclimarketplace

Nsis installer generator

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/nsis-installer-generator

Generate NSIS installer scripts for Windows with custom UI and featuresFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill nsis-installer-generator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.8 KB, 366 tokens by cl100k_base, as published. Nobody here has run it

nsis-installer-generator

Generate NSIS (Nullsoft Scriptable Install System) installer scripts for Windows applications.

Capabilities

  • Generate NSIS scripts
  • Configure installer UI
  • Set up components selection
  • Configure file associations
  • Add registry entries
  • Create shortcuts
  • Configure uninstaller

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "appName": { "type": "string" },
    "version": { "type": "string" },
    "components": { "type": "array" },
    "createShortcuts": { "type": "boolean" }
  },
  "required": ["projectPath", "appName", "version"]
}

NSIS Script Example

!include "MUI2.nsh"

Name "My Application"
OutFile "MyApp-Setup.exe"
InstallDir "$PROGRAMFILES\MyApp"
RequestExecutionLevel admin

!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

!insertmacro MUI_LANGUAGE "English"

Section "Install"
  SetOutPath $INSTDIR
  File /r "dist\*.*"
  WriteUninstaller "$INSTDIR\Uninstall.exe"
  CreateShortcut "$DESKTOP\MyApp.lnk" "$INSTDIR\MyApp.exe"
SectionEnd

Section "Uninstall"
  Delete "$DESKTOP\MyApp.lnk"
  RMDir /r "$INSTDIR"
SectionEnd

Related Skills

  • wix-toolset-config
  • windows-authenticode-signer

What ships with it: 1 file

452 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.