linux-installer

Installs, launches, and uninstalls Linux desktop apps by resolving the safest supported source first, then running a local helper CLI. Use when the user asks to install software like GIMP, Notepad++, or other desktop apps on Linux and wants the install command plus the command to launch or remove it.

3,891 stars

Best use case

linux-installer is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Installs, launches, and uninstalls Linux desktop apps by resolving the safest supported source first, then running a local helper CLI. Use when the user asks to install software like GIMP, Notepad++, or other desktop apps on Linux and wants the install command plus the command to launch or remove it.

Teams using linux-installer should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/linux-installer/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/baladoodle/linux-installer/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/linux-installer/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How linux-installer Compares

Feature / Agentlinux-installerStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Installs, launches, and uninstalls Linux desktop apps by resolving the safest supported source first, then running a local helper CLI. Use when the user asks to install software like GIMP, Notepad++, or other desktop apps on Linux and wants the install command plus the command to launch or remove it.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Linux Installer

## What This Skill Does

Resolves the best supported install path for a Linux desktop app, explains the recommendation briefly, asks for confirmation before any system change, performs the install, and returns the exact launch or uninstall command.

If the chosen source needs missing tooling like `snapd`, `flatpak`, `wine`, or `winetricks`, the helper can bootstrap that tooling first through the host's native package manager.

It can also return curated community workarounds when no official Linux package exists. These must be clearly labeled and require an extra explicit confirmation before install.

When no curated or official path exists, the helper may surface unreviewed community suggestions from public package metadata. These are research results, not trusted install metadata.

Default source preference is:

1. Flatpak
2. Snap
3. Native package manager
4. openSUSE `zypper`
5. Arch `pacman`
6. Native Arch AUR helper
7. Nix profile install
8. AppImage
9. Curated official manual/archive fallback
10. Curated Wine/manual fallback

Community workarounds are only allowed when they are explicitly curated in the catalog.

Unreviewed community suggestions may be installed only when:

1. `skills.entries.linux-installer.unsafeCommunityInstalls` is enabled in `openclaw.json`
2. the user explicitly confirms the unreviewed install
3. the install command includes `--allow-unsafe`

## Prerequisites

Before using this skill, ensure the helper CLI is installed:

```bash
cd ~/.openclaw/skills/linux-installer
pip install -e .
```

## Workflow

If you are expanding curated coverage, use [CATALOG_GUIDE.md](./CATALOG_GUIDE.md) to decide which apps belong in `catalog.json` and which should rely on dynamic discovery.

When the user asks to install an app:

1. Resolve the best path:

```bash
linux-installer resolve "gimp"
```

2. Summarize the result:
   - chosen source
   - package id
   - whether it is an official package, fallback, or community workaround
   - whether it is curated or unreviewed
   - missing tooling, if any
   - tooling bootstrap command, if any
   - source URL, if available
   - public summary and any best-effort review note
   - exact install command
   - launch command
   - warnings or fallbacks

3. Ask for confirmation before installing.

4. If the selected result is a community workaround, ask for a second explicit confirmation that acknowledges it is unofficial/community-maintained.

5. If the selected result is an unreviewed suggestion, explain that:
   - it was discovered dynamically from public package metadata
   - it is not maintainer-reviewed
   - opt-in support for unreviewed suggestions must be enabled first
   - it requires a separate unreviewed-install confirmation

6. After confirmation, run:

```bash
linux-installer install "gimp" --source flatpak --package org.gimp.GIMP --yes
```

For a community workaround, include `--allow-community`:

```bash
linux-installer install "roblox" --source flatpak --package org.vinegarhq.Sober --yes --allow-community
```

For an unreviewed suggestion, include `--allow-unsafe` and ensure opt-in support for unreviewed suggestions is enabled in `openclaw.json`.

7. Return the launch command:

```bash
linux-installer run-info "gimp" --source flatpak --package org.gimp.GIMP
```

8. Optionally launch the installed app:

```bash
linux-installer run "gimp" --source flatpak --package org.gimp.GIMP
```

9. For removal, prefer the helper's uninstall command. If the result is a manual or unsafe removal path, return the command or manual steps instead of improvising:

```bash
linux-installer uninstall "gimp" --source flatpak --package org.gimp.GIMP --yes
```

## Rules

- Never install anything before the user confirms.
- Never install a community workaround without a second explicit confirmation.
- Never install an unreviewed suggestion unless opt-in support is enabled and the user explicitly accepts the unreviewed path.
- Prefer the helper CLI output over ad hoc shell reasoning.
- If `resolve` says no safe automated path was found, do not invent install steps.
- Manual/archive fallbacks may surface curated `manual_steps`, but the helper must not auto-download or auto-run them.
- Manual/archive and other unsafe removal flows may surface `manual_steps`, but the helper must not auto-delete them unless the uninstall path is explicitly curated and safe.
- Wine/manual flows are higher risk and should be presented as fallback options, not defaults.
- Community workarounds must be presented as unofficial, curated alternatives.
- Unreviewed suggestions must be presented as research findings, not trusted recommendations.
- Always tell the user the exact command to launch the app after install.

Related Skills

gate-mcp-installer

3891
from openclaw/skills

One-click installer and configurator for Gate MCP (mcporter) in OpenClaw. Use when the user wants to (1) Install mcporter CLI tool, (2) Configure Gate MCP server connection, (3) Verify Gate MCP setup, or (4) Troubleshoot Gate MCP connectivity issues.

clawhub-quarantine-installer

3891
from openclaw/skills

Instala e audita skills do ClawHub em um ambiente de quarentena isolado para análise de segurança, permitindo revisar riscos antes de promover para produção. Use esta skill para testar habilidades de terceiros que o ClawHub sinaliza como suspeitas, investigar suas dependências e comportamento, e gerar relatórios de auditoria básicos.

openclaw-workspace-governance-installer

3891
from openclaw/skills

Install OpenClaw WORKSPACE_GOVERNANCE in minutes. Get guided setup, upgrade checks, migration, and audit for long-running workspaces.

---

3891
from openclaw/skills

name: article-factory-wechat

Content & Documentation

humanizer

3891
from openclaw/skills

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.

Content & Documentation

find-skills

3891
from openclaw/skills

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

General Utilities

tavily-search

3891
from openclaw/skills

Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.

Data & Research

baidu-search

3891
from openclaw/skills

Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.

Data & Research

agent-autonomy-kit

3891
from openclaw/skills

Stop waiting for prompts. Keep working.

Workflow & Productivity

Meeting Prep

3891
from openclaw/skills

Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.

Workflow & Productivity

self-improvement

3891
from openclaw/skills

Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.

Agent Intelligence & Learning

botlearn-healthcheck

3891
from openclaw/skills

botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.

DevOps & Infrastructure