From partme-ai-full-stack-skills
Configures tauri.conf.json for Tauri v2 apps including app metadata, build settings, plugins, CSP, and platform-specific sections. Useful when editing configs, migrating from v1 to v2, or setting up CSP.
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:
{
"productName": "My App",
"version": "1.0.0",
"identifier": "com.example.myapp",
"build": {
"devUrl": "http://localhost:5173",
"frontendDist": "../dist"
},
"app": {
"windows": [{ "label": "main", "title": "My App", "width": 1024, "height": 768 }],
"security": { "csp": "default-src 'self'; script-src 'self'" }
},
"plugins": {}
}
app.security.csp to restrict content loading sourcesplugins key (e.g., updater endpoints, CLI schema)tauri key renamed to app, allowlist replaced with capabilities system, plugins moved to plugins keynpm run tauri dev which reports config errors on startuptauri config, tauri.conf.json, CSP, build configuration, app settings