skill-creator
Installation
SKILL.md
Skill Creator
Create new diagnostic skills for the DLM Diagnostics MCP server. Each skill is a self-contained directory with a SKILL.md and supporting reference files.
Prerequisites
- Familiarity with the existing skill structure (see
.github/skills/dlm-diagnostics/as the canonical example). - Knowledge of the PowerShell cmdlet allowlist in
src/powershell/allowlist.ts. - Understanding of the project's read-only safety model.
Safety Rules
- Only reference read-only cmdlets — allowed verb prefixes:
Get-*,Test-*,Export-*. - Never include mutating commands in diagnostic steps —
Set-*,New-*,Remove-*,Enable-*,Start-*,Invoke-*must only appear in the "Recommended Actions" output section, clearly marked as manual-review-only. - All cmdlets used in the skill must exist in
src/powershell/allowlist.ts— if a newGet-*cmdlet is needed, add it to the allowlist as a separate change. - No credentials or secrets — never embed tokens, passwords, or connection strings in skill files.