Linux installer
/install linux-installer
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:
- Flatpak
- Snap
- Native package manager
- openSUSE
zypper - Arch
pacman - Native Arch AUR helper
- Nix profile install
- AppImage
- Curated official manual/archive fallback
- 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:
skills.entries.linux-installer.unsafeCommunityInstallsis enabled inopenclaw.json- the user explicitly confirms the unreviewed install
- the install command includes
--allow-unsafe
Prerequisites
Before using this skill, ensure the helper CLI is installed:
cd ~/.openclaw/skills/linux-installer
pip install -e .
Workflow
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:
- Resolve the best path:
linux-installer resolve "gimp"
-
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
-
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:
- 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
-
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.
- Return the launch command:
linux-installer run-info "gimp" --source flatpak --package org.gimp.GIMP
- Optionally launch the installed app:
linux-installer run "gimp" --source flatpak --package org.gimp.GIMP
- 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:
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
resolvesays 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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linux-installer - 安装完成后,直接呼叫该 Skill 的名称或使用
/linux-installer触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 141 次。
如何安装 Linux installer?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linux-installer」即可一键安装,无需额外配置。
Linux installer 是免费的吗?
是的,Linux installer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Linux installer 支持哪些平台?
Linux installer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Linux installer?
由 Baladoodle(@baladoodle)开发并维护,当前版本 v1.0.0。