Quality Gate
Runs the quality gate checklist before creating a PR or marking work as complete.
Invocation
/quality-gate
Checks Performed
- Build —
dotnet build --configuration Release(zero warnings, zero errors) - Test —
dotnet test --configuration Release(all tests pass) - Pack —
dotnet pack --configuration Release(packages build) - Code Hygiene — no
TODO,FIXME, orHACKmarkers insrc/ortests/ - Documentation — all public types have XML doc comments
Output
## Quality Gate Results
- [ ] Build: zero warnings
- [ ] Tests: all pass
- [ ] Pack: successful
- [ ] No TODO/FIXME/HACK markers
- [ ] XML doc comments on public types