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

tauriTauri 桌面开发

Agent Skill

tauri 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,811

周安装

77

GitHub Stars

4,513

下载量

634
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/epicenterhq/epicenter --skill tauri

简介

tauri 用于 Tauri 桌面应用的前端路径处理和文件系统操作,支持跨平台桌面开发环境。

  • 适用于构建文件路径、选择正确的 API(@tauri-apps/api/path 或 Node/Bun)以及处理 webview 内资源访问。
  • 可结合 @tauri-apps/plugin-fs 插件进行文件操作,需注意区分前端上下文和后端运行环境。
  • 安装前建议确认权限范围和维护状态,避免触发敏感的文件系统操作或跨进程通信。
  • tauri 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tauri Path Handling

Reference Repositories

  • Tauri — Desktop app framework with Rust backend and web frontend

When to Apply This Skill

Use this pattern when you need to:

  • Build file paths in Tauri frontend code running in the webview.
  • Choose correctly between @tauri-apps/api/path and Node/Bun path APIs.
  • Replace manual slash concatenation with join(), dirname(), and related helpers.
  • Handle cross-platform filesystem behavior for desktop apps.
  • Combine Tauri path APIs with @tauri-apps/plugin-fs operations.

Context Detection

Before choosing a path API, determine your execution context:

ContextLocationCorrect API
Tauri frontendapps/*/src/**/*.ts, apps/*/src/**/*.svelte@tauri-apps/api/path
Node.js/Bun backendpackages/**/*.ts, CLI toolsNode.js path module

Rule: If the code runs in the browser (Tauri webview), use Tauri's path APIs. If it runs in Node.js/Bun, use the Node.js path module.

Available Functions from @tauri-apps/api/path

Path Manipulation

FunctionPurposeExample
join(...paths)Join path segments with platform separatorawait join(baseDir, 'workspaces', id)
dirname(path)Get parent directoryawait dirname('/foo/bar/file.txt')/foo/bar
basename(path, ext?)Get filename, optionally strip extensionawait basename('/foo/bar.txt', '.txt')bar
extname(path)Get file extensionawait extname('file.txt').txt
normalize(path)Resolve .. and . segmentsawait normalize('/foo/bar/../baz')/foo/baz
resolve(...paths)Resolve to absolute pathawait resolve('relative', 'path')
isAbsolute(path)Check if path is absoluteawait isAbsolute('/foo')true

Platform Constants

FunctionPurposeReturns
sep()Platform path separator\ on Windows, / on POSIX
delimiter()Platform path delimiter; on Windows, : on POSIX

Base Directories

FunctionPurpose
appLocalDataDir()App's local data directory
appDataDir()App's roaming data directory
appConfigDir()App's config directory
appCacheDir()App's cache directory
appLogDir()App's log directory
tempDir()System temp directory
resourceDir()App's resource directory
resolveResource(path)Resolve path relative to resources

Patterns

Constructing Paths (Correct)

import { appLocalDataDir, dirname, join } from '@tauri-apps/api/path';

// Join path segments - handles platform separators automatically
const baseDir = await appLocalDataDir();
const filePath = await join(baseDir, 'workspaces', workspaceId, 'data.json');

// Get parent directory - cleaner than manual slicing
const parentDir = await dirname(filePath);
await mkdir(parentDir, { recursive: true });

Logging Paths (Exception)

For human-readable log output, hardcoded / is acceptable since it's not used for filesystem operations:

// OK for logging - consistent cross-platform log output
const logPath = pathSegments.join('/');
console.log(`[Persistence] Loading from ${logPath}`);

Anti-Patterns

Never: Manual String Concatenation

// BAD: Hardcoded separator breaks on Windows
const filePath = baseDir + '/' + 'workspaces' + '/' + id;

// BAD: Template literal with hardcoded separator
const filePath = `${baseDir}/workspaces/${id}`;

// GOOD: Use join()
const filePath = await join(baseDir, 'workspaces', id);

Never: Manual Parent Directory Extraction

// BAD: Manual slicing is error-prone
const parentSegments = pathSegments.slice(0, -1);
const parentDir = await join(baseDir, ...parentSegments);

// GOOD: Use dirname()
const parentDir = await dirname(filePath);

Never: Hardcoded Separators in Filesystem Operations

// BAD: Windows uses backslashes
const configPath = appDir + '/config.json';

// GOOD: Platform-agnostic
const configPath = await join(appDir, 'config.json');

Never: Assuming Path Format

// BAD: Splitting on '/' fails on Windows paths
const parts = filePath.split('/');

// GOOD: Use dirname/basename for extraction
const dir = await dirname(filePath);
const file = await basename(filePath);

Import Pattern

Always import from @tauri-apps/api/path:

import {
	appLocalDataDir,
	dirname,
	join,
	basename,
	extname,
	normalize,
	resolve,
	sep,
} from '@tauri-apps/api/path';

Note on Async

All Tauri path functions are async because they communicate with the Rust backend via IPC. Always await them:

// All path operations return Promises
const baseDir = await appLocalDataDir();
const filePath = await join(baseDir, 'file.txt');
const parent = await dirname(filePath);
const separator = await sep();

Filesystem Operations

Use @tauri-apps/plugin-fs for file operations, combined with Tauri path APIs:

import { appLocalDataDir, dirname, join } from '@tauri-apps/api/path';
import { mkdir, readFile, writeFile } from '@tauri-apps/plugin-fs';

async function saveData(segments: string[], data: Uint8Array) {
	const baseDir = await appLocalDataDir();
	const filePath = await join(baseDir, ...segments);

	// Ensure parent directory exists
	const parentDir = await dirname(filePath);
	await mkdir(parentDir, { recursive: true });

	await writeFile(filePath, data);
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.86%
按下载量换算227

Claude

28.57%
按下载量换算181

Cursor

20.41%
按下载量换算129

Gemini CLI

9.93%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills