Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

Tauri

  • 67 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with ai & agent building tasks during AI-assisted development.

About

tauri is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • tauri
  • AI & Agent Building
  • AI-coding skill

Tauri by the numbers

  • 67 all-time installs (skills.sh)
  • +2 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #5,935 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill tauri

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs67
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Tauri

Overview

Tauri is a framework for building desktop and mobile applications using web technologies (HTML, CSS, JavaScript/TypeScript) for the UI and Rust for the backend logic. It produces small, fast binaries by leveraging the OS webview instead of bundling a browser engine. The IPC layer connects the frontend to Rust commands through a capability-based permission system.

When to use: Cross-platform desktop/mobile apps with web UIs, system-level integrations (tray, notifications, file system), apps requiring small bundle sizes, security-sensitive applications needing fine-grained permission control.

When NOT to use: Pure web apps with no native requirements, Electron apps that depend heavily on Node.js APIs with no Rust migration path, projects where the team has no capacity to maintain Rust code.

Quick Reference

PatternAPI / ConfigKey Points
Create projectcargo create-tauri-app or pnpm create tauri-appScaffolds Rust backend + frontend framework
Define command#[tauri::command] fn name() {}Must register in generate_handler!
Invoke from frontendinvoke('cmd_name', { arg: value })Returns Promise, args as camelCase JSON
Emit event (frontend)emit('event-name', payload)Global event, all listeners receive
Listen eventlisten('event-name', handler)Returns unlisten function
Manage stateapp.manage(MyState {}) + State<'_, MyState>No Arc needed, Mutex for mutability
Window creationWebviewWindowBuilder::new(app, label, url)Label must be unique per window
System trayTrayIconBuilder::new().menu(&menu).build(app)Requires tray-icon Cargo feature
Add plugin (Rust).plugin(tauri_plugin_name::init())Register in Builder chain
Add plugin (frontend)@tauri-apps/plugin-nameNPM package per plugin
Define capabilitysrc-tauri/capabilities/*.jsonScoped to windows, merged at build
Grant permission"permissions": ["plugin:scope"]Commands inaccessible without explicit grant
Sidecar binarytauri.conf.json bundle.externalBinName must match {name}-{target_triple}
Custom protocoltauri::Builder::default().register_uri_scheme_protocolIntercept custom scheme:// URLs
Auto-updatertauri-plugin-updater + JSON endpointRequires code signing
App bundle/signcargo tauri buildPlatform-specific signing via env vars

Common Mistakes

MistakeCorrect Pattern
Multiple generate_handler! callsPass all commands to a single generate_handler! invocation
Using &str in async command argsUse owned String types in async commands
Forgetting to add capability for pluginAdd permission identifier in src-tauri/capabilities/*.json
Wrapping state in ArcTauri State handles reference counting internally
Using std::sync::Mutex across .await pointsUse tokio::sync::Mutex for async commands holding locks across awaits
Wrong sidecar binary nameBinary must be named {name}-{target_triple} (e.g., mybin-x86_64-pc-windows-msvc)
Assuming all windows share capabilitiesEach window/webview gets capabilities scoped by label
Using SystemTray (v1 API)Use TrayIconBuilder from tauri::tray module in v2
Not signing app before enabling updaterAuto-updater requires valid code signing on all platforms
Using window title for security decisionsCapabilities use window labels, not titles

Delegation

  • Command pattern discovery: Use Explore agent
  • Security review: Use Task agent
  • Code review: Delegate to code-reviewer agent
If the rust skill is available, delegate Rust language patterns, error handling, and async/concurrency to it.
If the react-patterns skill is available, delegate React frontend patterns to it.
If the svelte skill is available, delegate Svelte frontend patterns to it.
If the vite skill is available, delegate build tooling and dev server configuration to it.
If the github-actions skill is available, delegate CI/CD pipeline and release workflow configuration to it.

References

  • Project setup, configuration, and directory structure
  • IPC commands, events, and channels
  • State management patterns
  • Window management and multi-window apps
  • System tray and menus
  • Plugin system and official plugins
  • Security model, capabilities, and permissions
  • Sidecar binaries and custom protocols
  • App signing, distribution, and auto-updates

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.