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.
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:
zypperpacmanCommunity workarounds are only allowed when they are explicitly curated in the catalog.
Unreviewed community suggestions may be installed only when:
skills.entries.linux-installer.unsafeCommunityInstalls is enabled in openclaw.json--allow-unsafeBefore using this skill, ensure the helper CLI is installed:
cd ~/.openclaw/skills/linux-installer
pip install -e .
If you are expanding curated coverage, use 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:
linux-installer resolve "gimp"
Summarize the result:
Ask for confirmation before installing.
If the selected result is a community workaround, ask for a second explicit confirmation that acknowledges it is unofficial/community-maintained.
If the selected result is an unreviewed suggestion, explain that:
After confirmation, run:
linux-installer install "gimp" --source flatpak --package org.gimp.GIMP --yes
For a community workaround, include --allow-community:
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.
linux-installer run-info "gimp" --source flatpak --package org.gimp.GIMP
linux-installer run "gimp" --source flatpak --package org.gimp.GIMP
linux-installer uninstall "gimp" --source flatpak --package org.gimp.GIMP --yes
resolve says no safe automated path was found, do not invent install steps.manual_steps, but the helper must not auto-download or auto-run them.manual_steps, but the helper must not auto-delete them unless the uninstall path is explicitly curated and safe.