Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

tauriTauri 桌面开发

Agent Skill

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

总安装

376

周安装

16

GitHub Stars

公开资料未说明

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add teachingai/agent-skills --skill "tauri"

简介

tauri 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 当前功能描述较为模糊,建议查看原始 SKILL.md 获取更多细节。

SKILL.md

When to use this skill

Use this skill whenever the user wants to:

  • Install and set up Tauri in a project
  • Create desktop applications with Tauri
  • Use Tauri CLI commands
  • Configure Tauri applications
  • Handle frontend-backend communication
  • Use Tauri APIs
  • Build and package Tauri applications
  • Troubleshoot Tauri issues

How to use this skill

This skill is organized to match the Tauri official documentation structure (https://v2.tauri.org.cn/, https://v2.tauri.org.cn/start/, https://v2.tauri.org.cn/reference/cli/). When working with Tauri:

  1. Identify the topic from the user's request:

- Installation/安装 → examples/start/installation.md - Quick Start/快速开始 → examples/start/quick-start.md - Guide/使用指南 → examples/guide/ - CLI/命令行 → examples/reference/cli.md - API/API 文档 → api/

  1. Load the appropriate example file from the examples/ directory: Start (快速开始): Guide (使用指南): Reference (参考):

- examples/start/intro.md - Introduction to Tauri - examples/start/installation.md - Installation guide - examples/start/quick-start.md - Quick start guide - examples/start/prerequisites.md - Prerequisites - examples/guide/architecture.md - Architecture - examples/guide/frontend.md - Frontend setup - examples/guide/backend.md - Backend (Rust) - examples/guide/commands.md - Commands - examples/guide/events.md - Events - examples/guide/window.md - Window management - examples/guide/filesystem.md - File system - examples/guide/configuration.md - Configuration - examples/guide/build.md - Build and package - examples/reference/cli.md - CLI commands - examples/reference/config.md - Configuration reference

  1. Follow the specific instructions in that example file for syntax, structure, and best practices Important Notes:

- Tauri uses Web frontend and Rust backend - Frontend can be any web framework - Backend is written in Rust - Communication via commands and events - Each example file includes key concepts, code examples, and key points

  1. Reference API documentation in the api/ directory when needed:

- api/tauri-api.md - Tauri API - api/commands-api.md - Commands API - api/events-api.md - Events API - api/window-api.md - Window API - api/filesystem-api.md - File system API - api/config-api.md - Configuration API

  1. Use templates from the templates/ directory:

- templates/installation.md - Installation templates - templates/project-setup.md - Project setup templates - templates/configuration.md - Configuration templates

1. Understanding Tauri

Tauri is a framework for building desktop applications using web frontend technologies and Rust backend.

Key Concepts:

  • Frontend: Web technologies (HTML, CSS, JavaScript)
  • Backend: Rust
  • Commands: Frontend-backend communication
  • Events: Event system
  • Window: Window management
  • File System: File operations

2. Installation

Prerequisites:

  • Node.js
  • Rust
  • System dependencies

Using npm:

npm install @tauri-apps/cli

Using cargo:

cargo install tauri-cli

3. Basic Setup

# Create Tauri project
npm create tauri-app

# Or using cargo
cargo tauri init

Doc mapping (one-to-one with official documentation)

Examples and Templates

This skill includes detailed examples organized to match the official documentation structure. All examples are in the examples/ directory (see mapping above).

To use examples:

  • Identify the topic from the user's request
  • Load the appropriate example file from the mapping above
  • Follow the instructions, syntax, and best practices in that file
  • Adapt the code examples to your specific use case

To use templates:

  • Reference templates in templates/ directory for common scaffolding
  • Adapt templates to your specific needs and coding style

API Reference

Detailed API documentation is available in the api/ directory, organized to match the official Tauri API documentation structure:

Tauri API (api/tauri-api.md)

  • Tauri core API
  • API methods
  • API types

Commands API (api/commands-api.md)

  • Command definition
  • Command invocation
  • Command parameters

Events API (api/events-api.md)

  • Event emission
  • Event listening
  • Event handling

Window API (api/window-api.md)

  • Window creation
  • Window management
  • Window events

File System API (api/filesystem-api.md)

  • File operations
  • Directory operations
  • Path operations

Configuration API (api/config-api.md)

  • Configuration options
  • Configuration file
  • Environment variables

To use API reference:

  1. Identify the API you need help with
  2. Load the corresponding API file from the api/ directory
  3. Find the API signature, parameters, return type, and examples
  4. Reference the linked example files for detailed usage patterns
  5. All API files include links to relevant example files in the examples/ directory

Best Practices

  1. Separate frontend and backend: Keep frontend and backend code separate
  2. Use commands: Use commands for frontend-backend communication
  3. Handle errors: Properly handle errors in both frontend and backend
  4. Security: Follow Tauri security best practices
  5. Performance: Optimize application performance
  6. Build configuration: Configure build and package properly
  7. Use TypeScript: Leverage TypeScript for type safety

Resources

Keywords

Tauri, tauri, desktop application, 桌面应用, Rust, Web frontend, commands, events, window, file system, CLI, 命令, 事件, 窗口, 文件系统, 命令行, Tauri CLI, Tauri commands, Tauri events, Tauri window, Tauri filesystem, cross-platform, 跨平台

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

26.81%
按下载量换算35

OpenCode

23.45%
按下载量换算31

Antigravity

17.52%
按下载量换算23

Codex

12.25%
按下载量换算16

windsurf

7.51%
按下载量换算10

Gemini CLI

3.68%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills