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

rust-desktop-applicationsRust desktop applications 前端

Agent Skill

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

总安装

5,983

周安装

257

GitHub Stars

39

下载量

2,097
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill rust-desktop-applications

简介

用于辅助前端页面、组件和样式逻辑的开发与维护。

  • 适合生成或审查 React、Vue、Tailwind 等相关代码。
  • 使用时需结合项目设计系统和路由结构,避免孤立片段。
  • 涉及页面改动应配合本地预览和构建检查视觉效果。
  • 安装前建议确认来源仓库和文件读写权限。rust-desktop-applications 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Rust Desktop Applications

Overview

Rust has emerged as a premier language for building desktop applications that combine native performance with memory safety. The ecosystem offers two main approaches: Tauri for hybrid web UI + Rust backend apps (think Electron but 10x smaller and faster), and native GUI frameworks like egui, iced, and slint for pure Rust interfaces.

Tauri has revolutionized desktop development by enabling developers to use web technologies (React, Vue, Svelte) for the frontend while leveraging Rust's performance and safety for system-level operations. With bundle sizes under 5MB and memory usage 1/10th of Electron, Tauri apps deliver desktop-class performance. Native frameworks shine for specialized use cases: egui for immediate-mode tools and game editors, iced for Elm-style reactive apps, slint for embedded and declarative UIs.

This skill covers the complete Rust desktop development lifecycle from framework selection through architecture, state management, platform integration, and deployment. You'll build production-ready applications with proper IPC patterns, async runtime integration, native system access, and cross-platform distribution.

When to Use This Skill

Activate when building desktop applications that need native performance, small bundle sizes, system integration, or memory safety guarantees. Specifically use when:

  • Building Electron alternatives with web UI + Rust backend (Tauri)
  • Creating high-performance developer tools or productivity apps
  • Developing system utilities requiring native OS integration
  • Building cross-platform apps for Windows, macOS, and Linux
  • Need <10MB bundle sizes vs 100MB+ Electron apps
  • Implementing real-time applications (audio/video processing, games)
  • Creating embedded GUI applications (kiosks, IoT devices)

Don't Use When

  • Simple web apps - Use Next.js, Vite, or web frameworks
  • Mobile-first applications - Use Flutter, React Native, or Kotlin Multiplatform
  • Purely CLI tools - Use clap/structopt for command-line apps
  • Browser extensions - Use WebExtensions API
  • Quick prototypes - Native development has setup overhead
  • Team lacks Rust experience - Steep learning curve for system programming

The Iron Law

TAURI FOR WEB UI + RUST BACKEND | NATIVE GUI FOR PURE RUST | NEVER MIX BUSINESS LOGIC IN FRONTEND

Duplicating logic between frontend and backend, or bypassing IPC for direct access, violates architecture.

Core Principles

  1. Framework Alignment: Tauri for web-skilled teams, native GUI for Rust-first projects
  2. Clear Separation: Frontend handles UI, Rust backend handles business logic and system access
  3. Type-Safe IPC: Commands and events strongly typed with serde serialization
  4. Async Runtime: Tokio for backend concurrency, prevent blocking main thread
  5. Security First: Validate all IPC inputs, minimize exposed commands, CSP policies
  6. Platform Abstraction: Write once, handle platform differences gracefully

Quick Start

  1. Choose Your Framework

- Tauri: Have web skills (React/Vue/Svelte)? Want rapid UI development? → cargo install tauri-cli - Native GUI: Pure Rust project? Immediate mode or reactive patterns? → Choose egui/iced/slint

  1. Initialize Project # Tauri cargo create-tauri-app my-app # Select: npm, React/Vue/Svelte, TypeScript # Native (egui example) cargo new my-app cargo add eframe egui
  2. Setup Architecture

- Tauri: Define commands in src-tauri/src/main.rs, handle IPC - Native: Implement app state, event loop, and UI update logic - Structure: src/ (backend), ui/ or src-ui/ (frontend if Tauri)

  1. Implement Core Features

- Define Tauri commands with #[tauri::command] - Setup state management (Arc<Mutex> or channels) - Integrate Tokio for async operations - Add error handling with Result<T, E>

  1. Add Platform Integration

- File system access (dialogs, read/write) - System tray, notifications, auto-updates - Deep linking, custom URL schemes - OS-specific features (Windows registry, macOS sandboxing)

  1. Build and Distribute # Development cargo tauri dev # or cargo run # Production build cargo tauri build # Creates installers for current platform # Cross-platform: Use GitHub Actions with matrix builds

Framework Decision Tree

Need desktop app?
├─ Have web frontend skills (React/Vue/Svelte)?
│  └─ YES → Use Tauri
│     ├─ Need <5MB bundles? ✓
│     ├─ System integration? ✓
│     ├─ Cross-platform? ✓
│     └─ Rapid UI development? ✓
│
└─ Pure Rust, no web frontend?
   ├─ Game editor or immediate mode tools? → egui
   ├─ Elm-style reactive architecture? → iced
   ├─ Declarative UI, embedded devices? → slint
   └─ Data-first reactive? → druid

Tauri when: Web UI expertise, need modern frontend frameworks, rapid iteration Native when: Maximum performance, no web dependencies, specialized UI patterns

Navigation

Detailed guides available:

  • Tauri Framework: Complete Tauri architecture, project setup, IPC communication patterns, native API access, configuration, security model, and build process with real-world examples
  • Native GUI Frameworks: Deep dive into egui, iced, druid, and slint - architecture patterns, when to use each, comparison matrix, and production code examples
  • Architecture Patterns: Desktop-specific patterns including MVC/MVVM, command pattern, event-driven architecture, plugin systems, resource management, and error handling strategies
  • State Management: State management strategies, async runtime integration with Tokio, message passing, reactive patterns, persistence (configs/databases), and multi-window state sharing
  • Platform Integration: File system access, system tray, notifications, auto-updates, deep linking, OS-specific features (Windows/macOS/Linux), permissions, and security
  • Testing & Deployment: Integration testing, UI testing approaches, cross-compilation, platform-specific builds, distribution (installers/bundles/stores), signing, notarization, and CI/CD pipelines

Key Patterns

Correct Tauri Pattern:

✅ Commands in Rust backend
✅ Type-safe IPC with serde
✅ Async operations with Tokio
✅ State management with Arc<Mutex<T>>
✅ Error propagation with Result<T, E>
✅ Frontend calls backend via invoke()

Correct Native GUI Pattern:

✅ Immediate mode (egui) or retained mode (iced)
✅ State updates trigger redraws
✅ Event handling in Rust
✅ Platform-agnostic rendering
✅ Resource cleanup on drop

Incorrect Patterns:

❌ Business logic in frontend JavaScript
❌ Exposing unsafe commands without validation
❌ Blocking operations on main thread
❌ Direct filesystem access from frontend
❌ Missing error handling on IPC
❌ Hardcoded platform-specific paths

Red Flags - STOP

  • Blocking the main thread - Use Tokio spawn for long operations
  • Exposing sensitive commands - Validate, rate limit, minimize surface area
  • Missing CSP in Tauri - Configure Content Security Policy
  • No input validation - Always validate IPC command arguments
  • Direct frontend file access - Use Tauri file system APIs
  • Ignoring platform differences - Test on all target platforms
  • Large bundle sizes - Profile and optimize dependencies
  • No auto-update strategy - Users won't manually update

Integration with Other Skills

  • vite-local-dev: Integrate Vite with Tauri for hot module replacement and fast frontend builds
  • async-testing: Test async Tokio code in Tauri commands and background tasks
  • performance-profiling: Profile Rust backend with Criterion, flamegraphs for optimization
  • test-driven-development: Write tests for commands, state management, and business logic
  • verification-before-completion: Test cross-platform builds before shipping
  • systematic-debugging: Debug Tauri IPC issues, inspect console logs, use Rust debugger

Real-World Impact

Performance Metrics:

  • Bundle size: 3-5MB (Tauri) vs 100-200MB (Electron)
  • Memory usage: 50-100MB (Tauri) vs 500MB-1GB (Electron)
  • Startup time: <1s (Tauri) vs 3-5s (Electron)
  • Build time: 1-2 min (Tauri) vs 5-10 min (Electron)

Production Examples:

  • Warp Terminal: High-performance terminal built with Rust (egui/custom)
  • Lapce: Fast code editor using Druid (later custom framework)
  • Zed: Collaborative code editor with native Rust UI
  • Notion-like apps: Using Tauri for desktop versions
  • System utilities: File managers, task managers, monitoring tools

The Bottom Line

Rust desktop development offers unmatched performance with memory safety.

Choose Tauri for web UI + Rust backend with tiny bundles. Choose native GUI for pure Rust with specialized patterns. Architect with clear frontend/backend separation. Use type-safe IPC. Integrate Tokio for async. Handle platform differences. Test cross-platform early.

This is the Rust desktop way.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

31.08%
按下载量换算652

OpenCode

24.32%
按下载量换算510

Gemini CLI

18.89%
按下载量换算396

Antigravity

11.51%
按下载量换算241

Codex

8.44%
按下载量换算177

Cursor

3.29%
按下载量换算69

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills