What problem does it solve?
Creating a new exported PowerShell feature module in safeguard-ps is error-prone because it requires consistent file placement, correct wiring in the module manifest, and disciplined cmdlet implementation patterns.
Core Features & Use Cases
- Step-by-step module creation checklist: Guides you through adding a new src/<feature>.psm1, wiring it into src/safeguard-ps.psd1 (NestedModules and FunctionsToExport), and updating tests and mappings.
- Production-ready module/cmdlet templates: Provides a feature-module file template plus reusable patterns for resolve helpers, pipeline support, output typing, and parameter sets.
- Manifest and compatibility guardrails: Reinforces Windows PowerShell 5.1 compatibility, local helper imports, correct API-call method usage (Invoke-SafeguardMethod), and CI/version constraints.
Quick Start
Use this skill to generate a new feature module file under src, then wire it into src/safeguard-ps.psd1 by appending it to NestedModules and adding only its public cmdlets to FunctionsToExport.