Cross-platform file dialog implementation for open, save, and directory selection
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill file-dialog-abstraction --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of File Dialog Abstraction?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-file-dialog-abstraction-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: file-dialog-abstraction
description: Cross-platform file dialog implementation for open, save, and directory selection
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
tags: [files, dialogs, cross-platform, desktop, native]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:desktop-ui-frameworks, skill-area:cross-platform-desktop]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# file-dialog-abstraction
Implement cross-platform file dialogs for open, save, and directory selection with consistent API across Windows, macOS, and Linux.
## Capabilities
- Open file dialogs
- Save file dialogs
- Directory selection dialogs
- Multiple file selection
- File type filters
- Default paths and names
- Recent locations support
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"framework": { "enum": ["electron", "tauri", "qt", "wpf"] },
"dialogTypes": { "type": "array" }
},
"required": ["projectPath"]
}
```
## Electron Example
```javascript
const { 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;
}
```
## Related Skills
- `file-watcher-setup`
- `file-system-integration` process
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!