Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

analyze-test-run分析测试运行

Agent Skill

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

总安装

22,512

周安装

938

GitHub Stars

201

下载量

7,504
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/microsoft/github-copilot-for-azure --skill analyze-test-run

简介

analyze-test-run 下载 GitHub Actions 集成测试运行产物,生成技能调用报告并为失败项创建 Issue。

  • 适用于自动化测试流水线监控,追踪 skill invocation rate 与部署链完整性。
  • 输入 Run ID 或 URL,自动关联 azure-prepare/validate/deploy 阶段日志,定位故障节点。
  • 需配置 GitHub Token 与 Actions 读取权限,确保能访问 artifacts 与 issue 创建 API。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Analyze Test Run

Downloads artifacts from a GitHub Actions integration test run, generates a summarized skill invocation report, and files GitHub issues for each test failure with root-cause analysis.

When to Use

  • Summarize results of a GitHub Actions integration test run
  • Calculate skill invocation rates for the skill under test
  • For azure-deploy tests: track the full deployment chain (azure-prepare → azure-validate → azure-deploy)
  • Compare skill invocation across two runs
  • File issues for test failures with root-cause context

Input

ParameterRequiredDescription
Run ID or URLYesGitHub Actions run ID (e.g. 22373768875) or full URL
Comparison RunNoSecond run ID/URL for side-by-side comparison

MCP Tools

All tools use owner: "microsoft" and repo: "GitHub-Copilot-for-Azure" as fixed parameters. method selects the operation within the tool.

ToolmethodKey ParameterPurpose
actions_getget_workflow_runresource_id: run IDFetch run status and metadata
actions_listlist_workflow_run_artifactsresource_id: run IDList all artifacts for a run
actions_getdownload_workflow_run_artifactresource_id: artifact IDGet a temporary download URL for an artifact ZIP
get_job_logsrun_id + failed_only: trueRetrieve job logs when artifact content is inaccessible
search_issuesquery: search stringFind existing open issues before creating new ones
create_issuetitle, body, labels, assigneesFile a new GitHub issue for a test failure

Workflow

Phase 1 — Download & Parse

  1. Extract the numeric run ID from the input (strip URL prefix if needed)
  2. Fetch run metadata using the MCP actions_get tool: actions_get({method: "get_workflow_run", owner: "microsoft", repo: "GitHub-Copilot-for-Azure", resource_id: "<run-id>"})
  3. List artifacts using the MCP actions_list tool, then download each relevant artifact: // List artifacts actions_list({method: "list_workflow_run_artifacts", owner: "microsoft", repo: "GitHub-Copilot-for-Azure", resource_id: "<run-id>"}) // Download individual artifacts by ID actions_get({method: "download_workflow_run_artifact", owner: "microsoft", repo: "GitHub-Copilot-for-Azure", resource_id: "<artifact-id>"}) The download returns a temporary URL. Fetch the ZIP archive from that URL and extract it locally. If the environment restricts outbound HTTP (e.g. AWF sandbox), record in the analysis report that artifact content was unavailable and fall back to job logs via the get_job_logs MCP tool.
  4. Locate these files in the downloaded artifacts: ⚠️ Note: If artifact ZIP files cannot be downloaded due to network restrictions, or if downloaded files cannot be extracted, use the get_job_logs MCP tool to identify test failures and produce a best-effort analysis from whatever data is accessible.

- junit.xml — test pass/fail/skip/error results - *-SKILL-REPORT.md — generated skill report with per-test details - agent-metadata-*.md files — raw agent session logs per test

Phase 2 — Build Summary Report

Produce a markdown report with four sections. See report-format.md for the exact template.

Section 1 — Test Results Overview

Parse junit.xml to build:

MetricValue
Total testscount from <testsuites tests=…>
Executedtotal − skipped
Skippedcount of <skipped/> elements
Passedexecuted − failures − errors
Failedcount of <failure> elements
Test Pass Ratepassed / executed as %

Include a per-test table with name, duration (from time attribute, convert seconds to Xm Ys), and Pass/Fail result.

Section 2 — Skill Invocation Rate

Read the SKILL-REPORT.md "Per-Test Case Results" sections. For each executed test determine whether the skill under test was invoked.

The skills to track depend on which integration test suite the run belongs to:

azure-deploy integration tests — track the full deployment chain:

SkillHow to detect
azure-prepareMentioned as invoked in the narrative or agent-metadata
azure-validateMentioned as invoked in the narrative or agent-metadata
azure-deployMentioned as invoked in the narrative or agent-metadata

Build a per-test invocation matrix (Yes/No for each skill) and compute rates:

SkillInvocation Rate
azure-deployX% (n/total)
azure-prepareX% (n/total)
azure-validateX% (n/total)
Full skill chain (P→V→D)X% (n/total)
The azure-deploy integration tests exercise the full deployment workflow where the agent is expected to invoke azure-prepare, azure-validate, and azure-deploy in sequence. This three-skill chain tracking is specific to azure-deploy tests only.

All other integration tests — track only the skill under test:

SkillInvocation Rate
{skill-under-test}X% (n/total)

For non-deploy tests (e.g. azure-prepare, azure-ai, azure-kusto), only track whether the primary skill under test was invoked. Do not include azure-prepare/azure-validate/azure-deploy chain columns.

Section 3 — Report Confidence & Pass Rate

Extract from SKILL-REPORT.md:

  • Skill Invocation Success Rate (from the report's statistics section)
  • Overall Test Pass Rate (from the report's statistics section)
  • Average Confidence (from the report's statistics section)

Section 4 — Comparison (only when a second run is provided)

Repeat Phase 1–3 for the second run, then produce a side-by-side delta table. See report-format.md § Comparison.

Phase 3 — File Issues for Failures

For every test with a <failure> element in junit.xml:

  1. Read the failure message and file:line from the XML
  2. Read the actual line of code from the test file at that location
  3. Read the agent-metadata-*.md for that test from the artifacts
  4. Read the corresponding section in the SKILL-REPORT.md for context on what the agent did
  5. Determine root cause category:

- Skill not invoked — agent bypassed skills and used manual commands - Deployment failure — infrastructure or RBAC error during deployment - Timeout — test exceeded time limit - Assertion mismatch — expected files/links not found - Quota exhaustion — Azure region quota prevented deployment

  1. Search for existing open issue before creating a new one using the search_issues MCP tool: search_issues({owner: "microsoft", repo: "GitHub-Copilot-for-Azure", query: "Integration test failure: {skill} in:title is:open"}) Match criteria: an open issue whose title and body describe a similar problem. If a match is found, skip issue creation for this failure and note the existing issue number(s) in the summary report.
  2. If no existing issue was found, create a GitHub issue using the create_issue MCP tool, assign the label with the name of the skill, and assign it to the code owners listed in.github/CODEOWNERS file based on which skill it is for:
create_issue({
  owner: "microsoft", repo: "GitHub-Copilot-for-Azure",
  title: "Integration test failure: <skill> – <keywords> [<root-cause-category>]",
  labels: ["bug", "integration-test", "test-failure", "<skill>"],
  body: "<body>",
  assignees: ["<codeowners>"]
})

Title format: Integration test failure: {skill} – {keywords} [{root-cause-category}]

  • {keywords}: 2-4 words from the test name — app type (function app, static web app) + IaC type (Terraform, Bicep) + trigger if relevant
  • {root-cause-category}: one of the categories from step 5 in brackets

Issue body template — see issue-template.md.

⚠️ Note: Do NOT include the Error Details (JUnit XML) or Agent Metadata sections in the issue body. Keep issues concise with the diagnosis, prompt context, skill report context, and environment sections only. ⚠️ Note: Do NOT create issues for skill invocation test failures.
For azure-deploy integration tests, include an "azure-deploy Skill Invocation" section showing whether azure-deploy was invoked (Yes/No), with a note that the full chain is azure-prepare → azure-validate → azure-deploy. For all other integration tests, include a "{skill} Skill Invocation" section showing only whether the primary skill under test was invoked.

Error Handling

ErrorCauseFix
no artifacts foundRun has no uploadable reportsVerify the run completed the "Export report" step
HTTP 404 on actions_getInvalid run ID or no accessCheck the run ID and ensure the MCP token has repo access
rate limit exceededToo many GitHub API callsWait and retry; reduce concurrent MCP tool calls
Artifact ZIP download blockedAWF sandbox restricts outbound HTTP to blob storageUse get_job_logs MCP tool to get failure details from job logs; produce best-effort analysis from metadata

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.29%
按下载量换算2,348

Claude

30.68%
按下载量换算2,302

Cursor

19.01%
按下载量换算1,427

Gemini CLI

9.15%
按下载量换算687

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills