Full-stack-skills tauri-config
Configure tauri.conf.json for Tauri v2 apps including app metadata, build settings, plugins, CSP, and platform-specific sections. Use when editing tauri.conf.json, migrating config from v1 to v2, or setting up CSP and platform-specific configuration.
install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tauri-skills/tauri-config" ~/.claude/skills/partme-ai-full-stack-skills-tauri-config && rm -rf "$T"
manifest:
skills/tauri-skills/tauri-config/SKILL.mdsource content
When to use this skill
ALWAYS use this skill when the user mentions:
- Editing or understanding tauri.conf.json
- Config changes from Tauri v1 to v2
- CSP configuration or platform-specific config sections
Trigger phrases include:
- "tauri.conf.json", "tauri config", "CSP", "configuration", "build config"
How to use this skill
- Understand the config structure -- key sections of
: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": {} } - Configure CSP in
to restrict content loading sourcesapp.security.csp - Add plugin configuration under the
key (e.g., updater endpoints, CLI schema)plugins - Platform-specific overrides go in the appropriate config sections for Android/iOS
- v2 migration notes:
key renamed totauri
,app
replaced with capabilities system, plugins moved toallowlist
keyplugins - Validate config by running
which reports config errors on startupnpm run tauri dev
Outputs
- tauri.conf.json structure overview with key sections
- CSP configuration for content security
- v1 to v2 config migration mapping
References
Keywords
tauri config, tauri.conf.json, CSP, build configuration, app settings