Agent Skills
› NeverSight/learn-skills.dev
› setup-build-tools
setup-build-tools
GitHub安装构建和提取工具,以支持创建 Claude Desktop 的 Debian (.deb) 和 AppImage 包。包含解压、下载、图标处理及打包所需依赖。
Trigger Scenarios
首次运行 build.sh 前
新开发环境初始化
build.sh 因缺少依赖失败时
Install
npx skills add NeverSight/learn-skills.dev --skill setup-build-tools -g -y
SKILL.md
Frontmatter
{
"name": "setup-build-tools",
"description": "Install build and extraction tools needed for building Claude Desktop Debian packages"
}
Install the build dependencies required to run build.sh and create .deb/.AppImage packages.
Your Task
Run the build tools installation script to ensure all required tools are available:
bash "$CLAUDE_PROJECT_DIR/.claude/hooks/install-build-tools.sh"
Tools Installed
This script installs:
| Tool | Package | Purpose |
|---|---|---|
7z |
p7zip-full | Extract Windows installers and nupkg archives |
wget |
wget | Download Claude Desktop installers |
wrestool |
icoutils | Extract icons from Windows executables |
convert |
imagemagick | Process tray icons for Linux |
dpkg-deb |
dpkg-dev | Build .deb packages |
libfuse2 |
libfuse2 | Run AppImages |
node |
nodejs | Node.js v20+ for npm/asar operations |
When to Use
- Before running
./build.shfor the first time - After setting up a new development environment
- When build.sh fails due to missing dependencies
Optional Guidance
$ARGUMENTS
Version History
- e0220ca Current 2026-07-05 22:04


