Build AppImage bundles with AppDir structure for portable Linux applications
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill appimage-builder --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Appimage Builder?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-appimage-builder)More formats (shields.io, HTML) on the badges page.
---
name: appimage-builder
description: Build AppImage bundles with AppDir structure for portable Linux applications
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
tags: [linux, appimage, portable, packaging, distribution]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:cross-platform-desktop, skill-area:deployment-infrastructure-management]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# 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
```json
{
"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
```bash
# 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`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!