tauri-syntax-permissions
Installation
SKILL.md
tauri-syntax-permissions
This system is NEW IN TAURI 2 — it replaces the v1 allowlist entirely. Claude frequently generates v1-style
allowlistconfig which does not exist in v2.
Quick Reference
Permission Naming Convention
| Format | Example | Description |
|---|---|---|
<plugin>:default |
fs:default |
Default safe permissions for a plugin |
<plugin>:allow-<command> |
fs:allow-read-file |
Allow a specific command |
<plugin>:deny-<command> |
fs:deny-write-file |
Deny a specific command |
<plugin>:<custom-set> |
fs:read-files |
Custom permission set |
core:<module>:default |
core:window:default |
Core module defaults |
core:<module>:allow-<cmd> |
core:window:allow-set-title |
Allow specific core command |
allow-<command> |
allow-greet |
Custom app command (no plugin prefix) |
File Locations
Related skills