windows-automation
Installation
SKILL.md
Context
This plugin bundles the Windows MCP Server for Windows-only desktop automation. The server is strongest when you let Windows expose semantic UI information instead of guessing from screenshots.
Preferred workflow
- Use
window_managementto find or activate the target window. - Use
ui_find,ui_read,ui_click, andui_typefor normal controls. - Use
file_savefor Save / Save As flows instead of sending raw keyboard shortcuts. - Only fall back to
screenshot_control,mouse_control, orkeyboard_controlwhen the UI Automation tree is missing or the target is a custom canvas.
Patterns
Semantic-first automation
- Prefer element names, control types, automation IDs, and window handles over screen coordinates.
- Re-check the UI tree after dialogs, page changes, or tab switches.
- Treat screenshots as discovery or fallback tools, not the primary control surface.