Agent Skills: appimage-builder

Build AppImage bundles with AppDir structure for portable Linux applications

UncategorizedID: a5c-ai/babysitter/appimage-builder

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/plugins/babysitter/skills/babysit/process/specializations/desktop-development/skills/appimage-builder

Skill Files

Browse the full folder contents for appimage-builder.

Download Skill

Loading file tree…

plugins/babysitter/skills/babysit/process/specializations/desktop-development/skills/appimage-builder/SKILL.md

Skill Metadata

Name
appimage-builder
Description
Build AppImage bundles with AppDir structure for portable Linux applications

appimage-builder

Build AppImage bundles for portable Linux application distribution that runs on most distributions.

Capabilities

  • Create AppDir structure
  • Generate .desktop files
  • Bundle dependencies
  • Configure AppRun script
  • Use appimagetool or linuxdeploy
  • Configure update information
  • Sign AppImages

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "appName": { "type": "string" },
    "executablePath": { "type": "string" },
    "iconPath": { "type": "string" },
    "updateUrl": { "type": "string" }
  },
  "required": ["projectPath", "appName", "executablePath"]
}

AppDir Structure

MyApp.AppDir/
├── AppRun
├── myapp.desktop
├── myapp.png
└── usr/
    ├── bin/
    │   └── myapp
    └── lib/
        └── [bundled libraries]

Build Commands

# Using appimagetool
ARCH=x86_64 appimagetool MyApp.AppDir MyApp-x86_64.AppImage

# Using linuxdeploy
linuxdeploy --appdir MyApp.AppDir --output appimage

Related Skills

  • deb-package-builder
  • flatpak-manifest-generator