From partme-ai-full-stack-skills
Implements frontend-to-Rust IPC in Tauri v2 using invoke calls, Tauri commands, type-safe tauri-specta bindings, and bidirectional events. Use for defining Rust commands callable from frontend.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
**ALWAYS use this skill when the user mentions:**
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
ALWAYS use this skill when the user mentions:
Trigger phrases include:
#[tauri::command]
fn greet(name: &str) -> String {
format!("Hello, {}!", name)
}
tauri::Builder::default()
.invoke_handler(tauri::generate_handler![greet])
import { invoke } from '@tauri-apps/api/core';
const greeting = await invoke<string>('greet', { name: 'World' });
tauri-specta to auto-generate TypeScript types from Rust commands:
cargo add tauri-specta specta
app.emit("update", payload)?; // Rust -> Frontend
import { listen } from '@tauri-apps/api/event';
await listen('update', (event) => console.log(event.payload));
Result<T, String> from Rust commandstauri IPC, invoke, tauri command, type-safe, tauri-specta, events