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

analyze-selective-testing分析选择性测试

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

2,147

周安装

86

GitHub Stars

33

下载量

695
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tuist/agent-skills --skill analyze-selective-testing

简介

analyze-selective-testing 基于 Tuist 测试系统分析选择性测试执行情况,识别回归与效率下降原因。

  • 适合 CI/CD 流程中定位失败目标与优化测试范围,支持按分支过滤和历史运行对比。
  • 通过 tuist test list/show 命令获取 JSON 数据,输出 per-target 状态与建议调整项。
  • 依赖 Tuist CLI 工具链,需提前配置 Xcode 项目与测试目标,避免在非 Tuist 项目中误用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Analyze Selective Testing

Quick Start

  1. Run tuist test list --json to find test runs.
  2. Run tuist test xcode target list <test-run-id> --json to see per-target selective testing status.
  3. If effectiveness dropped, compare targets between a known-good run and the regressed run.

Step 1: Resolve Test Runs

Find the test run to analyze

List recent test runs, optionally filtering by branch:

tuist test list --json --page-size 10
tuist test list --git-branch feature-x --json --page-size 5

Get basic info for a specific test run:

tuist test show <test-run-id> --json

Use this to confirm the run's branch, status, scheme, and environment (xcode_version, macos_version).

Defaults

  • If no test run is specified, use the most recent CI test run on the current branch.
  • For comparison, use the most recent CI test run on the project's default branch.

Step 2: Drill Into Selective Testing Targets

List per-target selective testing data for a test run:

tuist test xcode target list <test-run-id> --json

Each target includes:

  • name: The test target name
  • hit_status: miss (ran), local (skipped via local cache), or remote (skipped via remote cache)
  • hash: The selective testing hash for this target

Filter by status to focus your analysis:

tuist test xcode target list <test-run-id> --hit-status miss --json
tuist test xcode target list <test-run-id> --hit-status local --json
tuist test xcode target list <test-run-id> --hit-status remote --json

Assess effectiveness

Count the targets by status:

effectiveness = (local_hits + remote_hits) / total_targets * 100
EffectivenessVerdict
60-100%Healthy — most unchanged tests are being skipped
30-60%Moderate — some cache invalidation occurring, worth investigating
0-30%Low — likely a core dependency changed or the cache was invalidated
0%Cold cache — first run, environment change, or full invalidation

Step 3: Diagnose Regressions

If effectiveness dropped, investigate:

Check for global invalidation

If nearly all targets show as miss, the entire selective testing cache was invalidated. Common causes:

CauseHow to verify
Xcode version changeCompare xcode_version between good and bad runs via tuist test show
CI environment changeCompare macos_version, model_identifier between runs
Project graph or dependency changeCheck git history for changes to project manifests, dependency versions, or target configurations
Core dependency changeA widely-depended-on target changed, invalidating all its dependents

Note: Tuist CLI version upgrades rarely cause hash invalidation — the hash version is not updated on every release.

Check for cascade invalidation

If only some targets show as miss, a dependency change likely cascaded:

  1. Run tuist test xcode target list <good-run-id> --json and tuist test xcode target list <bad-run-id> --json.
  2. Match targets by name — identify those that changed from local/remote to miss.
  3. Compare hashes for changed targets — if a target's hash differs, its sources or dependencies changed.
  4. Look for a common dependency among the invalidated targets.

Compare two test runs

For each target:

  • Match by name
  • Compare hit_status (hit -> miss = invalidated, miss -> hit = improved)
  • Compare hash (different hash = target or its dependencies changed)

Step 4: Recommendations

Based on the diagnosis:

  • Environment change: Ensure CI uses consistent Xcode/macOS versions. This is the most common cause of full cache invalidation.
  • Cascade from dependency change: Consider if the change to the root target was necessary. If the root target is a widely-shared module, consider splitting it.
  • Cold cache on new branch: Run tests once to warm the cache. Subsequent runs will benefit from selective testing.

Summary Format

Produce a summary with:

  1. Overall: effectiveness percentage, verdict (healthy/moderate/low/cold)
  2. Target breakdown: targets grouped by hit status
  3. Comparison (if applicable): targets that changed status between runs, with hash diffs
  4. Root cause: what caused the regression
  5. Recommendations: actionable next steps

Example:

Selective Testing Analysis: test run abc123 on feature-x

Effectiveness: 15% (3/20 targets skipped) -- LOW
  Local hits:  2 targets (CoreTests, UtilTests)
  Remote hits: 1 target (NetworkTests)
  Misses:      17 targets

Comparison with baseline (run def456, 75% effectiveness):
  14 targets changed from hit to miss
  All changed targets have different hashes

Root cause: Xcode version changed from 15.2 to 16.0 between runs.
This changed all target hashes, invalidating the entire cache.

Recommendations:
- Align CI Xcode version with the version used in the baseline run.
- If the upgrade is intentional, run tests once to re-warm the cache.

Done Checklist

  • Identified the test run(s) to analyze
  • Drilled into per-target selective testing status via tuist test xcode target list
  • Diagnosed root cause if effectiveness is low
  • Compared targets with baseline if regression detected
  • Provided actionable recommendations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.74%
按下载量换算255

Claude

29.88%
按下载量换算208

Cursor

20.11%
按下载量换算140

Gemini CLI

9.02%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills