Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

build-linux-binary构建 Linux 二进制文件

Agent Skill

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

总安装

665

周安装

28

GitHub Stars

239

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:build-linux-binary(构建 Linux 二进制文件)
来源仓库:https://github.com/sharex/xerahs
仓库路径:skills/build-linux-binary
安装命令:
npx skills add https://github.com/sharex/xerahs --skill build-linux-binary
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sharex/xerahs --skill build-linux-binary

简介

自动化构建 .NET/Avalonia 项目的 Linux 发行版二进制包。

  • 依赖 ShareX.ImageEditor 子模块,需预先更新以确保兼容性。
  • 遵循共享构建规则,包括超时控制与 SkiaSharp 特殊处理。
  • 输出路径与日志格式严格限定,便于 CI/CD 系统集成。
  • build-linux-binary 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

You are an expert Linux build automation specialist for.NET/Avalonia projects.

Follow these instructions exactly and in order to build Linux binaries for XerahS.

Shared Build Guardrails

Before Linux packaging work, follow build-common for shared timeout, lock recovery, no-concurrent-build, -m:1, TFM, and SkiaSharp rules. This Linux skill owns package-linux usage, log monitoring, Linux artifact validation, and Linux-specific XAML precompilation diagnostics.

Build Process

Phase 0: Update ShareX.ImageEditor Submodule

Always pull the latest ShareX.ImageEditor submodule before building to ensure the embedded image editor is up-to-date.

git submodule update --remote --merge ShareX.ImageEditor

Phase 1: Pre-Build Cleanup

CRITICAL: Stale dotnet and package-linux.sh processes are the #1 cause of file lock failures on Linux. Always kill them before starting.

  1. Kill all stale build processes: pkill -f "package-linux.sh" 2>/dev/null pkill -f "dotnet publish" 2>/dev/null pkill -f "dotnet build" 2>/dev/null sleep 2
  2. Optional — clean obj folders if locks persist: rm -rf /path/to/XerahS/ShareX.ImageEditor/src/ShareX.ImageEditor/obj/Release This is most useful if you see The process cannot access the file '...ShareX.ImageEditor.pdb' because it is being used by another process (Avalonia AVLN9999 error).

Phase 2: Run the Build Script

IMPORTANT: Always redirect output to a log file. The build takes 5-15 minutes and command_status produces no output during that time — the tool will appear to hang. Do NOT use WaitDurationSeconds > 30 with this command.

Start the build with log redirection:

bash build/linux/package-linux.sh > build_output.log 2>&1

This runs in the background. Monitor progress by periodically reading the log with view_file:

view_file: /path/to/XerahS/build_output.log  (last 50 lines)

Repeat every ~30 seconds until you see one of:

  • Done! All packages in dist/ → ✅ Build succeeded
  • Error: or FAILED lines → ❌ See Phase 3 for fixes

Do NOT use WaitDurationSeconds=120 in command_status — the command produces buffered output only after completion, so polling the log file is the only reliable way to track progress.


Phase 3: Handle Common Failures

🔴 Failure: No precompiled XAML found for XerahS.UI.App

Symptom (at runtime, not build time):

Avalonia.Markup.Xaml.XamlLoadException: No precompiled XAML found for XerahS.UI.App,
make sure to specify x:Class and include your XAML file as AvaloniaResource

Root Cause: A C# converter class referenced in an .axaml file uses the wrong namespace. Avalonia's XAML compiler silently fails to compile the referencing AXAML, which cascades to break the entire app's precompiled XAML.

How to diagnose:

  • Check any recently added/modified converters under ShareX.ImageEditor/src/ShareX.ImageEditor/UI/Adapters/Converters/
  • Verify their C# namespace matches the AXAML xmlns:converters import: In EditorView.axaml: xmlns:converters="using:ShareX.ImageEditor.Converters" So all converter classes must declare: namespace ShareX.ImageEditor.Converters;

Fix:

// WRONG — will silently break Avalonia XAML precompilation:
namespace ShareX.ImageEditor.UI.Adapters.Converters;

// CORRECT — matches the xmlns:converters import in EditorView.axaml:
namespace ShareX.ImageEditor.Converters;

After fixing, rebuild from scratch.


🔴 Failure: AVLN9999: The process cannot access the file '...XerahS.Imgur.Plugin.pdb' because it is being used by another process

Root Cause: A previous dotnet publish is still running in the background (e.g. from a backgrounded & command).

Fix:

pkill -f "dotnet publish"
pkill -f "package-linux.sh"
sleep 3
bash build/linux/package-linux.sh

🔴 Failure: MSB3026: Could not copy '...XerahS.Uploaders.dll'... being used by another process

Root Cause: Parallel plugin publishing is racing to write shared DLLs.

Fix: This is usually a transient retry (MSBuild will retry automatically). If it becomes fatal:

rm -rf src/desktop/core/XerahS.Uploaders/obj/Release
bash build/linux/package-linux.sh

🔴 Failure: Error: No plugins were published for linux-x64

Root Cause: The plugin csproj discovery glob found no files, or a plugin build failed early.

Check:

find src/desktop/plugins -mindepth 2 -maxdepth 2 -name "*.csproj"

Each plugin project under src/desktop/plugins/ needs a plugin.json in the same directory.


Phase 4: Validation

After the build completes, verify the artifacts:

ls -lh dist/

Expected output:

XerahS-0.16.1-linux-x64.deb    ~90-120MB
XerahS-0.16.1-linux-arm64.deb  ~90-120MB
XerahS-0.16.1-linux-x64.rpm    ~90-120MB  (if rpmbuild installed)
XerahS-0.16.1-linux-arm64.rpm  ~90-120MB  (if rpmbuild installed)

Timestamps should match the current build session.


Important Notes

Why Avalonia XAML Precompilation Fails Silently

  • Avalonia compiles .axaml files to IL at build time
  • If a referenced type (e.g. a converter) cannot be resolved, the AXAML file is silently skipped
  • This doesn't fail the build, but crashes the application at startup
  • The fix is always: ensure C# namespace matches the xmlns import in the AXAML

Key Build Parameters (from package-linux.sh)

  • -p:PublishSingleFile=true --self-contained true: Main app ships as one binary
  • -p:OS=Linux -p:DefineConstants=LINUX: Enables Linux-specific code paths
  • -p:EnableWindowsTargeting=true: Required when cross-compiling on Linux due to shared project references
  • Plugins publish with --no-self-contained to share the runtime with the main app

Sequential Builds Are Mandatory

NEVER run two builds at the same time. ShareX.ImageEditor targets multiple TFMs and MSBuild parallelism causes them to race on the same ShareX.ImageEditor.dll output path.

  • Architectures: package-linux.sh iterates linux-x64 then linux-arm64 sequentially — never invoke it twice concurrently.
  • Internal parallelism: If CS2012 / file lock errors appear on ShareX.ImageEditor, pre-build it separately with /m:1 to force single-threaded compilation: dotnet build ShareX.ImageEditor/src/ShareX.ImageEditor/ShareX.ImageEditor.csproj \ -c Release -p:UseSharedCompilation=false /m:1
  • Between builds: Always kill all dotnet and package-linux.sh processes and wait for them to exit before starting a new build session.

Background Build Caution

  • Do not background the build script with & unless you redirect output to a log file
  • Multiple concurrent builds share obj/ folders and will conflict
  • Always kill previous builds before starting a new one

stdout Buffering Issue

  • dotnet publish progress may not appear in command_status tool output until the command finishes
  • Redirect to a .log file and use view_file to check progress instead of waiting for command output

Success Criteria

  • ✅ Both linux-x64 and linux-arm64 .deb packages created in dist/
  • ✅ Files are ~90-120 MB in size
  • ✅ Timestamps are recent (within build session)
  • ✅ No lingering dotnet or package-linux.sh processes
  • ✅ App launches without XamlLoadException at startup

Troubleshooting

SymptomSolution
XamlLoadException: No precompiled XAML found at startupCheck namespaces of all new converter classes — must match xmlns:converters in .axaml
AVLN9999: file used by another processKill all dotnet publish and package-linux.sh processes, retry
MSB3026: Could not copy XerahS.Uploaders.dllUsually transient; if fatal, delete src/desktop/core/XerahS.Uploaders/obj/Release and retry
Error: No plugins were publishedCheck src/desktop/plugins/ structure and plugin.json presence in each plugin directory
ARM64 cross-compile failsEnsure linux-arm64.NET SDK cross-compile support is installed; Fedora needs dotnet-sdk-10.0
rpmbuild: command not foundRPM skipped (not fatal); install with sudo dnf install rpm-build if needed
Build succeeds but app segfaultsSkiaSharp native library issue; verify the current centrally managed SkiaSharp/native-assets set and published runtimes before changing versions

Related Files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.85%
按下载量换算86

Claude

32.84%
按下载量换算77

Cursor

17.49%
按下载量换算41

Gemini CLI

9.42%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills