Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

linux-installerLinux 安装程序

Agent Skill

linux-installer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,235

周安装

173

GitHub Stars

公开资料未说明

下载量

1,356
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:linux-installer(Linux 安装程序)
来源仓库:https://github.com/baladoodle/linux-installer
安装命令:
openclaw skills install linux-installer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install linux-installer

简介

安全解析源并安装Linux桌面应用程序到本地系统。

  • 自动选择受信任仓库,支持启动与卸载管理。
  • 适用于CLI环境下的软件包部署与维护。linux-installer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需root或sudo权限执行安装操作。
  • 建议先验证软件签名与源安全性,防范供应链风险。

SKILL.md

name
linux-installer
description
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.

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:

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:

  1. Resolve the best path:
linux-installer resolve "gimp"
  1. 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

  1. Ask for confirmation before installing.
  1. If the selected result is a community workaround, ask for a second explicit confirmation that acknowledges it is unofficial/community-maintained.
  1. 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

  1. 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.

  1. Return the launch command:
linux-installer run-info "gimp" --source flatpak --package org.gimp.GIMP
  1. Optionally launch the installed app:
linux-installer run "gimp" --source flatpak --package org.gimp.GIMP
  1. 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 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.58%
按下载量换算1,025

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install linux-installer 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills