tauri-pilot
Installation
SKILL.md
tauri-pilot
Workflow
1. ping — verify connectivity
2. snapshot -i — get interactive elements with refs
3. read refs — inspect elements (text, value, attrs)
4. act on refs — click, fill, type, select, check
5. assert — verify result in one step (exit 0 = pass, exit 1 = fail)
Rules
- Always snapshot before interacting. Refs reset on each snapshot.
- Prefer
snapshot -ito minimize output. - Use
waitafter async actions (navigation, data loading). - One action at a time, then re-snapshot to verify.
- Check
logs --level errorafter actions to catch JS errors.