mcpbeat

Test Triage

openai/test-triage

Triage macOS tests across Xcode and SwiftPM. Use when narrowing failures, explaining assertions or crashes, or separating setup from regressions.

461 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
4915
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/openai/plugins --skill test-triage

What comes with it

283 bytes besides the instruction
agents/openai.yaml

The instruction itself

5 sections, as written by the author

Test Triage

Quick Start

Use this skill to run the smallest meaningful test scope first, classify

failures precisely, and avoid treating every test failure like a product bug.

Workflow

  • Detect the test harness.
  • Use xcodebuild test for Xcode-based projects.
  • Use swift test for SwiftPM packages.
  • Narrow the scope.
  • If the user gave a target, product, or test filter, use it.
  • If not, prefer the smallest likely failing target before a full suite.
  • Classify the result.
  • Build failure
  • Assertion failure
  • Crash or signal
  • Async timing or flake
  • Environment or fixture setup issue
  • Missing entitlement or host app issue
  • Rerun intelligently.
  • Use focused reruns when a specific case fails.
  • Avoid burning time on full-suite reruns without new information.
  • Summarize clearly.
  • What command ran
  • Which tests failed
  • What kind of failure it was
  • The best next proof step or fix path

Guardrails

  • Distinguish compilation failures from test execution failures.
  • Call out when a test appears to assume iOS-only or simulator-only behavior.
  • Mark likely flakes as such instead of overstating confidence.

Output Expectations

Provide:

  • the command used
  • the smallest failing scope
  • the top failure category
  • a concise explanation of the likely cause
  • the next rerun or fix step

How to use it

Copy the folder

Take openai/test-triage from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.