multiAI Summary Pending
tauri-build
Build production-ready Tauri v2 app bundles with code signing and distribution packaging for all platforms. Use when creating release builds, configuring code signing for macOS/Windows, or setting up CI pipelines for app distribution.
223 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/tauri-build/SKILL.md --create-dirs "https://raw.githubusercontent.com/partme-ai/full-stack-skills/main/skills/tauri-skills/tauri-build/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/tauri-build/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How tauri-build Compares
| Feature / Agent | tauri-build | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Build production-ready Tauri v2 app bundles with code signing and distribution packaging for all platforms. Use when creating release builds, configuring code signing for macOS/Windows, or setting up CI pipelines for app distribution.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
## When to use this skill
**ALWAYS use this skill when the user mentions:**
- Production builds or release packaging
- Code signing for macOS, Windows, or Linux
- CI/CD pipelines for app distribution
**Trigger phrases include:**
- "build", "release", "signing", "distribution", "packaging", "installer", "dmg", "msi"
## How to use this skill
1. **Create a production build**:
```bash
npm run tauri build
```
2. **Build output** is located in `src-tauri/target/release/bundle/` with platform-specific installers:
- macOS: `.dmg`, `.app` bundle
- Windows: `.msi`, `.exe` (NSIS)
- Linux: `.deb`, `.rpm`, `.AppImage`
3. **Configure signing** in environment variables:
```bash
# macOS
export APPLE_SIGNING_IDENTITY="Developer ID Application: Your Name"
# Windows
export TAURI_SIGNING_PRIVATE_KEY="path/to/key"
```
4. **Set bundle identifiers** in `tauri.conf.json`:
```json
{ "identifier": "com.example.myapp", "bundle": { "icon": ["icons/icon.png"] } }
```
5. **Set up GitHub Actions** for CI/CD using the official Tauri publish action
6. **Validate artifacts** by testing installers on each target platform before release
## Outputs
- Production build commands and output paths
- Code signing configuration per platform
- CI/CD pipeline setup guidance
## References
- https://v2.tauri.app/distribute/
- https://v2.tauri.app/distribute/sign/macos/
- https://v2.tauri.app/distribute/pipelines/github/
## Keywords
tauri build, release, signing, distribution, packaging, installer, dmg, msi