Expert instructions for the Windows Operations MCP server, covering PowerShell best practices, diagnostic workflows, and error handling.
skillsy install sandraschi/windows-operations-mcp@windows-expertThis skill provides the theoretical and practical framework for executing high-integrity Windows system operations.
ctx.info and ctx.report_progress during execution.If a process is consuming excessive resources:
process_management with action="get_details" to examine the thread count and memory working set.process_management with action="list_tree".ctx.sample() to ask for advice if the process name is unknown.When troubleshooting a failed Windows service:
windows_services with action="get_status".command_execution using:Get-WinEvent -FilterHashtable @{LogName='System'; ID=7036; ProviderName='Service Control Manager'} -MaxEvents 5For large file operations:
working_directory to ensure relative paths are resolved correctly.archive_management with action="test" before extraction.working_directory is explicitly set and verified.-Force (Remove-Item) unless the target has been explicitly audited in the previous step.