From partme-ai-full-stack-skills
Creates and configures Tauri v2 windows including multi-window patterns, custom titlebars, frameless UIs, drag regions, and lifecycle management.
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.conf.json:
{
"app": {
"windows": [
{ "label": "main", "title": "My App", "width": 1024, "height": 768, "decorations": true },
{ "label": "settings", "title": "Settings", "width": 600, "height": 400, "url": "/settings" }
]
}
}
tauri::WebviewWindowBuilder::new(&app, "popup", tauri::WebviewUrl::App("/popup".into()))
.title("Popup")
.inner_size(400.0, 300.0)
.build()?;
{ "label": "main", "decorations": false, "transparent": true }
<div data-tauri-drag-region class="titlebar">My App</div>
tauri window, titlebar, frameless, multi-window, window lifecycle, custom titlebar