Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

cts-triagects 分诊

Agent Skill

cts-triage 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

16,927

下载量

148
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cts-triage(cts 分诊)
来源仓库:https://github.com/gfx-rs/wgpu
仓库路径:skills/cts-triage
安装命令:
npx skills add https://github.com/gfx-rs/wgpu --skill cts-triage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gfx-rs/wgpu --skill cts-triage

简介

cts-triage 系统化分类与优先级排序 CTS 测试用例,辅助定位图形 API 兼容性问题。

  • 适用于 WebGPU 或 Vulkan 驱动开发中的回归测试管理与缺陷跟踪。
  • 采用分块处理策略,结合 cargo xtask 工具链实现高效筛选与报告生成。
  • 通过 npx skills add 安装,要求 Rust 工具链与项目 justfile 配置就绪。
  • 处理大量测试时建议分批执行,避免内存溢出或超时中断。

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

Run the full test suite for the category to understand the scope:

cargo xtask cts 'webgpu:api,validation,category:*' 2>&1 | grep -E "(Summary|Passed|Failed)" | tail -5

This gives you the pass rate and number of failures. Document this as your baseline.

Step 2: Identify Test Subcategories

Review the output from the running the CTS (with or without --list) to identify any subcategories that may exist within the suite being analyzed. Subcategories typically have an additional :- or ,-delimited word in the test name. Running tests by subcategory may be more manageable than running with the entire suite at once or running individual tests.

Step 3: Run Each Subcategory

Test each subcategory individually to identify which ones are passing vs failing:

cargo xtask cts 'webgpu:api,validation,category:subcategory:*' 2>&1 | grep -E "(Passed|Failed|Skipped)" | tail -3

Track the pass rate for each subcategory. This helps you identify:

  • What's already working (don't break it!)
  • Where the failures are concentrated
  • Which issues affect multiple categories

Step 4: Analyze Failure Patterns

For failing subcategories, look at what tests are failing:

cargo xtask cts 'webgpu:api,validation,category:subcategory:*' 2>&1 | grep "\[fail\]" | head -20

Look for patterns:

  • Format-specific failures: May indicate missing format capability checks
  • Parameter-specific failures: Validation missing for specific parameter combinations

Step 5: Examine Specific Failures

Pick a representative failing test and run it individually to see the error:

cargo xtask cts 'webgpu:api,validation,category:subcategory:specific_test' 2>&1 | tail -30

Look for:

  • "EXPECTATION FAILED: DID NOT REJECT": wgpu is accepting invalid input (validation gap)
  • "Validation succeeded unexpectedly": Similar to above
  • "Unexpected validation error occurred": wgpu is rejecting valid input
  • Error message content: Tells you what validation is triggering or missing

Step 6: Check CTS Test Source

To understand what the test expects, read the TypeScript source:

grep -A 40 "test_name" cts/src/webgpu/api/validation/path/file.spec.ts

The test source shows:

  • What configurations are being tested
  • What the expected behavior is (pass/fail)
  • The validation rules from the WebGPU spec
  • Comments explaining the rationale

Step 7: Categorize Issues

Group failures into categories:

High Priority - Validation Gaps:

  • wgpu accepts invalid configurations that should fail
  • Security or correctness implications
  • Example: Accepting wrong texture formats, missing aspect checks

Medium Priority - Spec Compliance:

  • Edge cases not handled correctly
  • Optional field validation issues
  • Example: depthCompare optional field handling

Low Priority - Minor Gaps:

  • Less common scenarios
  • Limited real-world impact
  • Example: Depth bias with non-triangle topologies

Known Issues - Skip:

  • Known failure patterns (documented in AGENTS.md)
  • Track count but don't try to fix

Step 8: Identify Root Causes

For validation gaps, find where validation should happen:

  1. Search for existing validation: grep -n "relevant_keyword" wgpu-core/src/device/resource.rs
  2. Look for render/compute pipeline creation:

- Render pipeline: wgpu-core/src/device/resource.rs around create_render_pipeline - Compute pipeline: Similar location - Look for existing validation patterns you can follow

  1. Check for helper functions: grep "fn is_" wgpu-types/src/texture/format.rs
  2. Find error enums: grep "pub enum.*Error" wgpu-core/src/pipeline.rs

Step 9: Implement Fixes

When implementing fixes:

  1. Add error variants if needed (in wgpu-core/src/pipeline.rs)
  2. Add helper methods (in wgpu-types if checking properties)
  3. Add validation checks (in wgpu-core/src/device/resource.rs)
  4. Test the fix with specific failing tests
  5. Run full subcategory to verify all related tests pass
  6. Check you didn't break passing tests

Step 10: Document Findings

Create or update a triage document (e.g., category_triage.md).

Do not write information about changes you have made to the triage document. Only capture the state of the tests and any investigation into open issues.

# Category CTS Tests - Triage Report

**Overall Status:** XP/YF/ZS (%/%/%)

## Passing Sub-suites ✅

[List sub-suites that have no failures (all pass or skip)]

## Remaining Issues ⚠️

[List sub-suites that have failures and if it can be stated concisely, a summary of the issue]

## Issue Detail

[List detail of any investigation into failures. Do not go into detail about passed suites, just list the failures.]

### 1. title, e.g. a distinguishing word from the test selector

**Test selector:** `webgpu:api,validation,render_pipeline,depth_stencil_state:format:*`
**What it tests:** [Description]
**Example failure:**
[a selector for a single failing test, e.g.:]

webgpu:api,validation,render_pipeline,depth_stencil_state:depthCompare_optional:isAsync=false;format="stencil8"


**Error:**
[error message from the failing tests, e.g.:]

Unexpected validation error occurred: Depth/stencil state is invalid: Format Stencil8 does not have a depth aspect, but depth test/write is enabled


**Root cause:**
[Your analysis of the root cause. Do not speculate. Only include the results of specific investigation you have done.]
The validation is triggering incorrectly. When `depthCompare` is undefined/missing in JavaScript, it's getting translated to a default value that makes `is_depth_enabled()` return true, even for stencil-only formats.

**Fix needed:**
[Your proposed fix. Again, do not speculate. Only state the fix if it is obvious from the root cause analysis, or if you have done specific investigation into how to fix it.]

### 2. title

[repeat as needed for additional issues]

Step 11: Update test.lst

For fixed tests that are now passing, add them to cts_runner/test.lst:

  1. Use wildcards to minimize lines: webgpu:api,validation,category:subcategory:isAsync=false;*
  2. Group related tests when possible:

- If multiple subcategories all pass, use a higher-level wildcard - Example: webgpu:api,validation,category:* if all subcategories pass

  1. Maintain alphabetical order roughly in the file

Step 12: Verify and Build

Before finishing:

# Format code
cargo fmt

# Check for errors
cargo clippy --tests

# Build to ensure no compilation errors
cargo build

# Run the tests you added to test.lst
cargo xtask cts 'webgpu:api,validation,category:subcategory:isAsync=false;*'

Common Patterns

If the user asked to investigate a failure, and the cause of the failure is noted here with "do not attempt to fix", then stop and ask the user before attempting to fix.

Pattern: Format-specific failures

  • Check if format validation is missing
  • Look for is_depth_stencil_format(), is_color_format() etc.
  • May need to add format capability checks

Pattern: Aspect-related failures

  • Check if code validates format aspects (DEPTH, STENCIL, COLOR)
  • Use hal::FormatAspects::from(format) to check
  • Validate operations match available aspects

Pattern: Optional field failures

  • May be WebGPU optional field semantics issue
  • Check if undefined in JS becomes a default value in Rust
  • May need to distinguish "not set" from "set to default"

Pattern: Atomics accepted incorrectly

  • Naga allows referencing an atomic directly in an expression
  • Should only allow accessing via atomicLoad, atomicStore, etc.
  • Only investigate as necessary to confirm this is the issue. Do not attempt to fix. Refer user to https://github.com/gfx-rs/wgpu/issues/5474.

Pattern: Error reporting for destroyed resources

  • Tests that check for validation errors when a destroyed resource is used. wgpu often reports these errors later than WebGPU requires, causing the tests to fail.
  • wgpu may report these errors earlier than it should, causing the test to fail with an unexpected validation error.
  • Look for:

- Tests with state="destroyed" parameter - Tests checking that operations on destroyed buffers or textures should fail

  • Example failing tests:

- webgpu:api,validation,encoding,cmds,compute_pass:indirect_dispatch_buffer_state: with state="destroyed" subcases

Tips

  • Start with high-impact fixes: Validation gaps with security implications
  • Look for existing patterns: Other validation code shows the style
  • Test incrementally: Fix one category at a time, verify it works
  • Document as you go: Don't wait until the end to write the triage
  • Ask for clarification: If test expectations are unclear, check the WebGPU spec or test source
  • Track your progress: Update pass rates as you fix issues

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.41%
按下载量换算52

Claude

30.92%
按下载量换算46

Cursor

18.69%
按下载量换算28

Gemini CLI

9.44%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills