tauri
Installation
SKILL.md
Tauri
Use this skill for Tauri v2+ apps with a web frontend and Rust backend. Prefer the project's existing conventions, then steer with four leading words: owned IPC, capabilities-first, evidence ladder, and layered checks.
First Checks
- Inspect
src-tauri/tauri.conf.json,src-tauri/Cargo.toml,src-tauri/src/lib.rs,src-tauri/src/main.rs, andsrc-tauri/capabilities/*.json. - Identify the project's existing command runner and dev/build commands from
lockfiles,
package.json, scripts, andbuild.beforeDevCommand. - Note whether the app targets desktop only or mobile too. Mobile-compatible
apps need the
lib.rsentry point shape and platform guards. - If debugging a running app, read debugging.md before launching anything.