From partme-ai-full-stack-skills
Configures Tauri v2 autostart plugin for app launch on system login. Handles enabling/disabling, platform-specific behavior (macOS, Windows, Linux), and user toggles with status checks.
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.toml and tauri.conf.json:
cargo add tauri-plugin-autostart
use tauri_plugin_autostart::MacosLauncher;
tauri::Builder::default()
.plugin(tauri_plugin_autostart::init(
MacosLauncher::LaunchAgent,
Some(vec!["--minimized"]),
))
src-tauri/capabilities/default.json:
{ "permissions": ["autostart:allow-enable", "autostart:allow-disable", "autostart:allow-is-enabled"] }
import { enable, disable, isEnabled } from '@tauri-apps/plugin-autostart';
await enable(); // register autostart
await disable(); // remove autostart
const status = await isEnabled(); // check current state
tauri autostart, startup, login items, launch on boot, enable disable