用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/G1Joshi/Agent-Skills --skill powershell命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | powershell |
| description | PowerShell scripting for Windows automation, cmdlets, and administration. Use for .ps1 files. |
A task-based command-line shell and scripting language built on .NET.
$name = "World"
Write-Host "Hello, $name!"
$processes = Get-Process | Where-Object { $_.CPU -gt 10 }
foreach ($p in $processes) {
Write-Output $p.Name
}
Lightweight commands used in the PowerShell environment (Verb-Noun structure).
Get-ProcessNew-ItemSet-LocationPowerShell pipes Objects, not text.
Get-Service | Select-Object -Property Name, Status
Passes objects from one cmdlet to the next.
Do:
Try/Catch for error handling[CmdletBinding()] for advanced functionsWrite-Output over Write-Host)Don't: