Borrowing it
Nothing to install: this file belongs to cacr92/WeReply. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/cacr92/WeReply/main/.claude/skills/tauri-development/SKILL.mdgit clone --depth 1 https://github.com/cacr92/WeReplyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/cacr92/wereply/tauri-development)<a href="https://agentmods.dev/skills/cacr92/wereply/tauri-development"><img src="https://agentmods.dev/badge/skills/cacr92/wereply/tauri-development.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00189 | $0.01924 |
| Opus 5 | $0.00095 | $0.00962 |
| Sonnet 5 | $0.00038 | $0.00385 |
| Haiku 4.5 | $0.00019 | $0.00192 |
Grade A, and why
tauri-development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 274 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tauri Development Skill
Expert guidance for Tauri 2.0 desktop application development with Rust backend and React TypeScript frontend.
Overview
This skill provides comprehensive guidance for:
- Creating Tauri commands with proper specta type binding
- Integrating Rust backend with React TypeScript frontend
- Handling desktop-specific patterns and constraints
- Optimizing frontend-backend communication
- Following Tauri 2.0 best practices
When This Skill Applies
This skill activates when:
- Creating or modifying Tauri commands
- Setting up specta type bindings
- Debugging frontend-backend communication issues
- Implementing desktop-specific features
- Optimizing Tauri application performance
- Handling Tauri-specific error cases
Core Tauri Principles
Command Definition Pattern
All Tauri commands must follow this pattern:
use serde::{Deserialize, Serialize};
use specta::Type;
#[derive(Serialize, Deserialize, Type, Clone)]
#[specta(inline)]
pub struct MyDto {
pub field: String,
}
#[tauri::command]
#[specta::specta]
pub async fn my_command(
dto: MyDto,
state: State<'_, TauriAppState>,
) -> ApiResponse<ResultType> {
// Implementation
}
Key Requirements:
#[tauri::command]- Required for all commands#[specta::specta]- Required for TypeScript type generation#[specta(inline)]- Required on DTOs for proper type exportApiResponse<T>- Unified return type for error handling
Frontend Command Usage
✓ Correct:
import { commands } from '../bindings';
const result = await commands.myCommand({ field: "value" });
if (!result.success) {
message.error(result.message);
return;
}
const data = result.data;
✗ Incorrect:
// ✗ Don't use raw invoke
import { invoke } from '@tauri-apps/api/core';
const result = await invoke('my_command', { dto });
Common Patterns
State Management
Use dependency injection for services:
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 274 lines · 189 tokens per session scan A 33d08fd10c7a
tauri-development is a skill published in the GitHub repository cacr92/WeReply (6 stars, last pushed 7mo ago), licensed MIT. It adds 189 tokens to every session and 1,924 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
tauri-rust-and-frontend-desktop
Architectural patterns, security IPC, performance optimization, native integration, and production best practices for building cross-platform desktop applications using Tauri (v2) and Rust with modern web frontends (React, Svelte, Vue). Use when designing, building, or optimizing Tauri desktop apps.
compiler-orchestrator
Orchestrate the Rust compiler port end-to-end. Discovers the current frontier, fixes failing passes, ports new passes, reviews, and commits in a loop.
compiler-port
Port a compiler pass from TypeScript to Rust. Gathers context, plans the port, implements in a subagent with test-fix loop, then reviews.
frontend-conventions
Coding conventions, architecture patterns, and testing rules for the SkillHub React frontend. Ensures agents follow Feature-Sliced Design and use the generated OpenAPI types.
fast-typescript-check
Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…
typescript-react
Apply, review, and explain React conventions from the TypeScript Style Guide. Use automatically for TypeScript and TSX tasks involving prop-derived state, prop typing, component responsibilities, data flow, compound components, or client and server state.