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

analyze-skill-issues分析技能问题

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

1,860

周安装

76

GitHub Stars

201

下载量

602
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

analyze-skill-issues 查询 Azure Storage 中存储的技能集成测试错误详情,辅助诊断失败根因。

  • 适用于技能发布前后的质量验证,支持按日期、运行 ID 和技能名称检索日志 blob。
  • 通过 mcp_azure_mcp_storage_blob_get 列出容器内文件结构,下载后生成错误摘要报告。
  • 依赖 Azure 凭据与特定存储账户访问权限,仅限授权用户使用,禁止越权访问生产数据。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Analyze Skill Issues

Queries the strdashboarddevveobvk Azure Storage account that stores all integration test results and retrieves error details for a given skill.

Quick Reference

PropertyValue
Storage accountstrdashboarddevveobvk
Containerintegration-reports
Blob path pattern{date}/{run_id}/{skill_name}/[{test_name}/]<file> — see Blob Path Layout
Blob discoverymcp_azure_mcp_storage_blob_get — list blobs to find the right paths
Blob content downloadaz storage blob download... --file "$env:TEMP\<filename>" — local path reported in summary
Best forDiagnosing why a skill's integration tests are failing
TOOL USAGE — MANDATORY: Use mcp_azure_mcp_storage_blob_get to enumerate and identify the correct blob paths. Then use az storage blob download to download and read the content of those blobs. These tools serve different purposes and are both always required — they are not alternatives.

When to Use

  • User asks why a skill's tests are failing
  • User asks to debug or investigate a skill's recent test failures
  • User wants to see errors from integration test runs for a specific skill
  • User asks what errors or exceptions caused skill test failures

Skill Name Mapping

Resolve the user's skill name to its canonical directory name using the Skill Name Mapping.

MCP Tools

MCP tools are used exclusively for blob discovery — finding which blob paths exist. All calls require account: "strdashboarddevveobvk" and container: "integration-reports". Use az storage blob download (see Phase 2) to read blob content.

ToolPurposeKey parameters
mcp_azure_mcp_storage_blob_getList blob names and metadata (does not return file content)account, container; omit blob to list all
mcp_azure_mcp_storage_blob_container_getVerify the container existsaccount, container

Output Requirements

Every response MUST include all of the following. Do not omit any item:

  • Root cause explanation of why the skill has low confidence or failing tests
  • Per-test breakdown (test name, pass/fail, confidence or error)
  • Referenced Files section listing every downloaded file as a vscode://file/ link
⚠️ MANDATORY: The Referenced Files section is not optional. Always resolve $env:TEMP to the actual path (run echo $env:TEMP) and include a clickable link for every file downloaded. If this section is missing from your response, the output is incomplete.

Workflow

TOOL RESPONSIBILITIES: mcp_azure_mcp_storage_blob_get is used exclusively for blob discovery (listing available paths). az storage blob download is used exclusively for reading blob content. Both are always required.

Phase 1 — Enumerate Recent Blobs for the Skill

  1. Resolve the skill name using the Skill Name Mapping.
  2. List all blobs in the container to discover available date/run paths: mcp_azure_mcp_storage_blob_get({account: "strdashboarddevveobvk", container: "integration-reports"}) This returns a flat list of all blob names. Filter for entries that:

- Start with a date string matching yyyy-mm-dd within the last 7 days - Contain /{skill_name}/ in the path - Do not end with token-usage.json or agent-metadata.json

  1. Group the matching blobs by date (descending) and by run ID (the second path segment).
  2. Limit scope: If the user specified a date in their prompt, use only that date. Otherwise, take the 3 most recent dates from the filtered results and discard the rest. Do not process more than 3 dates.

Phase 2 — Read Test Result Files

For each matching blob path identified in Phase 1, download it to a local temp file and read its content:

az storage blob download --account-name strdashboarddevveobvk --container-name integration-reports `
  --name "<full-blob-path>" --file "$env:TEMP\<filename>" --auth-mode login --no-progress

Use just the last path segment as <filename>.

⚠️ REQUIRED: After each download, immediately append the resolved local path to your working list of referenced files. Run echo $env:TEMP once to resolve the actual temp directory. Every downloaded file must appear in the Referenced Files section of your final response — this is not optional.

Priority order for files to read (most useful first):

  1. Any *.json files that are NOT token-usage.json or agent-metadata.json — these contain test pass/fail results and error messages
  2. *-SKILL-REPORT.md or *report*.json files — contain skill invocation details and test narratives
  3. junit.xml blobs if present — contain structured test failure messages

Phase 3 — Extract Failure Information

For each test result file, extract:

  • Test name — the test case identifier
  • Status — passed / failed / error / skipped
  • Error message — the exception or assertion failure text
  • Stack trace — if present in the file
  • Date and run ID — for traceability

Look specifically for fields such as:

  • "status": "failed" or "passed": false
  • "error", "errorMessage", "failureMessage", "message" JSON keys
  • <failure> or <error> XML elements in JUnit format
  • Any Error: or FAIL prefixed lines in text reports

Phase 4 — Summarize Failures

Present the findings grouped by test name:

## Failures for <skill-name> — <date> (Run: <run_id>)

### <test-name>
- **Status:** failed
- **Error:** <error message>
- **Detail:** <stack trace or additional context, truncated to ~10 lines>

### <test-name-2>
...

At the end of the summary, include a Referenced Files section listing every file that was downloaded as a clickable VS Code link. Resolve $env:TEMP to the actual Windows temp path (e.g. C:\Users\<user>\AppData\Local\Temp) and format each entry as a markdown link using the vscode://file/ URI scheme with forward slashes:

## Referenced Files
- [<filename1>](vscode://file/C:/Users/<user>/AppData/Local/Temp/<filename1>)
- [<filename2>](vscode://file/C:/Users/<user>/AppData/Local/Temp/<filename2>)
- ...

To resolve the actual temp path, run echo $env:TEMP in the terminal before constructing the links.

Include:

  • Total failing tests vs. total tests found
  • Most recent run date analyzed
  • Common error patterns across multiple tests (e.g., all failing due to auth, quota, timeout)

Date iteration rule: Process the most recent date first. Only proceed to the next date if the current date yields zero failures. Stop as soon as failures are found — do not process all 3 dates if the first one has results.

See Blob Path Layout for the full container tree structure.

Error Handling

ErrorCauseRemediation
No blobs found for skillSkill has not run tests recently, or name is wrongVerify skill name using the mapping table; tests run Tue–Sat on a schedule
Blob list is emptyContainer access issue or wrong accountConfirm account: "strdashboarddevveobvk" and that the user has Azure CLI credentials
Blob content not readableFile is binary or corruptedSkip that blob and try adjacent blobs for the same test
All tests show as skippedThe skill's test schedule hasn't run yet todayCheck tests/skills.json for the skill's schedule and check a prior day's date prefix
token-usage.json / agent-metadata.json onlyCorrect path but no result filesThe test run may have crashed before writing results; check the run ID in GitHub Actions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.52%
按下载量换算220

Claude

30.51%
按下载量换算184

Cursor

20.07%
按下载量换算121

Gemini CLI

10.16%
按下载量换算61

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/microsoft/github-copilot-for-azure --skill analyze-skill-issues 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills