From partme-ai-full-stack-skills
Establishes WebSocket connections from Rust in Tauri v2 using the websocket plugin, bypassing WebView limitations for real-time messaging, connection lifecycle management, and secure host allowlists.
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:
cargo add tauri-plugin-websocket
tauri::Builder::default()
.plugin(tauri_plugin_websocket::init())
src-tauri/capabilities/default.json:
{ "permissions": ["websocket:default"] }
import WebSocket from '@tauri-apps/plugin-websocket';
const ws = await WebSocket.connect('wss://api.example.com/ws');
ws.addListener((msg) => {
console.log('Received:', msg.data);
});
await ws.send('Hello server!');
await ws.disconnect();
tauri websocket, realtime, live updates, WebSocket connection, socket