Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Reliable command execution on Windows: paths, encoding, and common binary pitfalls.
Best practices for running commands on Windows via PowerShell and CMD.
Use this skill when developing or debugging scripts and automation that run on Windows systems, especially when involving file paths, character encoding, or standard CLI tools.
Older Windows PowerShell releases can rewrite native-command output in ways that break later processing. PowerShell 7.4+ preserves the byte stream when redirecting stdout, so only apply the UTF-8 conversion workaround when you are dealing with older shell behavior or a log file that is already unreadable.
| Problem | Symptom | Solution |
|---|---|---|
dotnet > log.txt | view_file fails in older Windows PowerShell | `Get-Content log.txt |
npm run > log.txt | Need a UTF-8 text log with errors included | `npm run ... 2>&1 |
Rule: Prefer native redirection as-is on PowerShell 7.4+, and use explicit UTF-8
npx skills add saivara1341/inkfinity --skill windows-shell-reliabilityHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.