Tauri project setup
Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/tauri-project-setup
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
npx -y skills add a5c-ai/babysitter --skill tauri-project-setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Initialize Tauri project with Rust backend and frontend framework integration
SKILL.md
2.0 KB, as published. Nobody here has run it
tauri-project-setup
Initialize Tauri project with Rust backend and frontend framework integration. This skill sets up secure, lightweight desktop applications using web technologies.
Capabilities
- Initialize Tauri project structure
- Configure Rust backend with commands
- Integrate React, Vue, Svelte, or SolidJS
- Set up tauri.conf.json configuration
- Configure window settings
- Set up auto-update
- Configure build for all platforms
- Set up plugin system
Input Schema
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"projectName": { "type": "string" },
"frontend": { "enum": ["react", "vue", "svelte", "solid", "vanilla"] },
"features": { "type": "array" }
},
"required": ["projectPath", "projectName"]
}
Generated Structure
my-tauri-app/
├── src/ # Frontend
├── src-tauri/
│ ├── Cargo.toml
│ ├── tauri.conf.json
│ ├── src/
│ │ ├── main.rs
│ │ └── lib.rs
│ └── icons/
└── package.json
Rust Command Example
#[tauri::command]
fn greet(name: &str) -> String {
format!("Hello, {}!", name)
}
fn main() {
tauri::Builder::default()
.invoke_handler(tauri::generate_handler![greet])
.run(tauri::generate_context!())
.expect("error running app");
}
Related Skills
electron-builder-configcross-platform-test-matrix