Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Cross-platform file dialog implementation for open, save, and directory selection
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-21 | ✗→✓ | ▲ Improved | -26% | 0% |
| case-01 | ✓→✓ | = Same ✓ | -3% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 78% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 14% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 25% | 0% |
Implement cross-platform file dialogs for open, save, and directory selection with consistent API across Windows, macOS, and Linux.
json{ "type": "object", "properties": { "projectPath": { "type": "string" }, "framework": { "enum": ["electron", "tauri", "qt", "wpf"] }, "dialogTypes": { "type": "array" } }, "required": ["projectPath"] }
javascriptconst { dialog } = require('electron'); async function openFile() { const result = await dialog.showOpenDialog({ properties: ['openFile', 'multiSelections'], filters: [ { name: 'Documents', extensions: ['pdf', 'docx'] }, { name: 'All Files', extensions: ['*'] } ] }); return result.filePaths; }
file-watcher-setupfile-system-integration processOther measured skills in the registry, with their headline benchmark lift.