| name | review-ps |
| description | Self-review PowerShell code against the project's PS7 conventions before reporting work as done. |
PowerShell Code Review Checklist
Run this checklist against all changed .ps1 / .psm1 files before reporting work as done.
1. Strict Mode Safety
2. Module Export Registration
3. Error Handling
4. Naming & Structure
5. AI Integration
6. Data Paths
7. Typed Output
8. Pipeline Hygiene
9. Concurrency (if applicable)
10. Testing
Final Gate
Invoke-Pester ./tests/ -Output Minimal
Test-ModuleManifest -Path ./scripts/AITriad/AITriad.psd1
Both must pass before reporting complete.