cts-triage
Installation
SKILL.md
Triage Process
When working on a category of CTS tests, follow this systematic process to identify issues, prioritize fixes, and document findings.
Step 0: Divide Into Manageable Chunks
List all the tests matching a selector:
cargo xtask cts -- --list 'webgpu:api,validation,*' 2>&1 | wc -l
If there is a reasonable number of tests matching the selector (less than a couple hundred or so, but this isn't a hard cutoff), then you can proceed with triage. Otherwise, make a list of more detailed wildcards that match fewer tests, verify that each wildcard matches a reasonable number of tests, and triage each wildcard separately.
Step 1: Get Overall Statistics
Related skills