Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问clear审计通过

optimizing-tauri-binary-sizeoptimizing Tauri binary size 前端

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,505

周安装

64

GitHub Stars

18

下载量

527
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dchuk/claude-code-tauri-skills --skill optimizing-tauri-binary-size

简介

减少 Tauri 桌面应用二进制文件体积,加快分发速度。

  • 自动剔除未使用的 Rust 依赖、压缩前端资源并启用 LTO 编译。
  • 支持 WebAssembly 模块裁剪和图标字体子集化处理。
  • 构建前建议清理旧产物并检查第三方库许可条款合规性。
  • optimizing-tauri-binary-size 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tauri Binary Size Optimization

This skill provides guidance on optimizing Tauri application binary sizes for production releases.

Why Tauri Produces Small Binaries

Tauri is designed from the ground up to produce minimal binaries:

  1. Native Webview: Uses the operating system's native webview instead of bundling Chromium (unlike Electron)
  2. Rust Backend: Compiles to efficient native code with no runtime overhead
  3. Tree Shaking: Only includes code that is actually used
  4. No V8 Engine: Leverages existing system components rather than bundling a JavaScript engine

Size Comparison

FrameworkMinimum Binary Size
Tauri~3-6 MB
Electron~120-180 MB
NW.js~80-100 MB

The dramatic size difference comes from Tauri's architectural decision to use native system webviews rather than bundling a full browser engine.

Cargo.toml Optimization Settings

Configure release profile settings in src-tauri/Cargo.toml to minimize binary size.

Recommended Stable Toolchain Configuration

[profile.release]
codegen-units = 1    # Compile crates one at a time for better LLVM optimization
lto = true           # Enable link-time optimization across all crates
opt-level = "s"      # Optimize for binary size (alternative: "z" for even smaller)
panic = "abort"      # Remove panic unwinding code
strip = true         # Strip debug symbols from final binary

Configuration Options Explained

OptionValuesDescription
codegen-units1Reduces parallelism but allows LLVM to perform better whole-program optimization
ltotrue, "thin", "fat"Link-time optimization; true or "fat" produces smallest binaries
opt-level"s", "z", "3""s" balances size/speed, "z" prioritizes size, "3" prioritizes speed
panic"abort"Removes panic handler code, reducing binary size
striptrue, "symbols", "debuginfo"Removes symbols and debug information from binary

Nightly Toolchain Options

For projects using the nightly Rust toolchain, additional optimizations are available:

[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true
trim-paths = "all"    # Remove file path information from binary

[profile.release.build-override]
opt-level = "s"       # Also optimize build scripts

You can also set rustflags for additional control:

[profile.release]
rustflags = ["-Cdebuginfo=0", "-Zthreads=8"]

Tauri Build Configuration

Remove Unused Commands (Tauri 2.4+)

Tauri 2.4 introduced the ability to automatically remove code for commands not permitted in your Access Control List (ACL). Add this to tauri.conf.json:

{
  "build": {
    "removeUnusedCommands": true
  }
}

This feature:

  • Analyzes your ACL configuration
  • Removes Tauri command handlers that are not allowed
  • Reduces binary size without changing functionality
  • Works automatically during release builds

Minimal Feature Set

Only enable Tauri features you actually need in src-tauri/Cargo.toml:

[dependencies]
tauri = { version = "2", features = ["macos-private-api"] }
# Avoid enabling unnecessary features like:
# - "devtools" in production
# - "protocol-asset" if not serving local assets
# - "tray-icon" if not using system tray

Frontend Optimization

While this skill focuses on Rust/Tauri optimization, frontend bundle size also affects the final application:

  1. Use a bundler: Vite, webpack, or similar with tree shaking
  2. Code splitting: Load features on demand
  3. Minimize dependencies: Audit and remove unused npm packages
  4. Compress assets: Optimize images and other static assets

Build Commands

Standard Release Build

cd src-tauri
cargo tauri build --release

Using Nightly Toolchain

cd src-tauri
cargo +nightly tauri build --release

Check Binary Size

After building, check your binary size:

# macOS
ls -lh src-tauri/target/release/bundle/macos/*.app/Contents/MacOS/*

# Linux
ls -lh src-tauri/target/release/bundle/appimage/*.AppImage

# Windows
dir src-tauri\target\release\bundle\msi\*.msi

Complete Example Configuration

Here is a complete src-tauri/Cargo.toml optimized for minimal binary size:

[package]
name = "my-tauri-app"
version = "0.1.0"
edition = "2021"

[dependencies]
tauri = { version = "2", features = [] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[build-dependencies]
tauri-build = { version = "2", features = [] }

[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true

[profile.release.package."*"]
opt-level = "s"

And corresponding tauri.conf.json:

{
  "productName": "my-tauri-app",
  "version": "0.1.0",
  "identifier": "com.example.my-tauri-app",
  "build": {
    "removeUnusedCommands": true,
    "beforeBuildCommand": "npm run build",
    "frontendDist": "../dist"
  },
  "bundle": {
    "active": true,
    "targets": "all",
    "icon": ["icons/icon.png"]
  }
}

Optimization Trade-offs

SettingSize ImpactBuild TimeRuntime Performance
codegen-units = 1SmallerSlowerBetter
lto = trueSmallerMuch slowerBetter
opt-level = "s"SmallerSimilarSlightly slower
opt-level = "z"SmallestSimilarSlower
panic = "abort"SmallerFasterNo unwinding
strip = trueSmallerSimilarNo impact

Troubleshooting

Binary Still Large

  1. Check for debug builds: Ensure you are using --release flag
  2. Audit dependencies: Run cargo tree to see dependency graph
  3. Check for duplicate dependencies: Different versions of same crate
  4. Verify strip is working: Use file command to check for debug symbols

Build Failures with LTO

If lto = true causes build failures:

  • Try lto = "thin" as a fallback
  • Ensure sufficient memory (LTO is memory-intensive)
  • Update Rust toolchain to latest version

Nightly Features Not Working

Ensure nightly is installed and active:

rustup install nightly
rustup default nightly
# Or use +nightly flag with cargo commands

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

31.49%
按下载量换算166

Antigravity

25.78%
按下载量换算136

windsurf

17.47%
按下载量换算92

Gemini CLI

11.86%
按下载量换算63

OpenCode

7.57%
按下载量换算40

Codex

3.56%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills