azure-sdk-for-java: Skill for Claude Code

.github/skills/azsdk-common-pipeline-analysis/SKILL.md

azsdk-common-pipeline-analysis is a skill for Claude Code, Codex from Azure/azure-sdk-for-java. It costs 192 tokens per session (1,071 once invoked), scanned A, a copy of azsdk-common-pipeline-analysis, MIT.

A diagnostic guide for Azure SDK CI/CD pipeline failures, where automated builds and tests run before code is accepted. It turns raw failure data into root causes, affected files, and instructions for fixes, but does not change files.

In plain words
What is it for?
Use it to analyse failed builds, tests, or CI checks in Azure SDK pipelines, identify affected files, interpret test artifacts, and recommend code fixes or infrastructure retries.
Why use it?
Pipeline logs often mix code errors with infrastructure problems such as timeouts or crashed agents. This guide separates those cases and explains what should be fixed versus what should simply be retried.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

This is Azure/azure-sdk-for-java's own configuration. It tells Claude Code and Codex how to work on azure-sdk-for-java itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything azure-sdk-for-java configures →

About the project

Azure SDK for Java is a collection of Java libraries that let applications connect to and manage Azure services. Java developers use its client libraries to consume services and its management libraries to configure Azure resources. The catalogue add-ons support development with these libraries.

Azure/azure-sdk-for-java · 2,565 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to Azure/azure-sdk-for-java. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/.github/skills/azsdk-common-pipeline-analysis/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Azure/azure-sdk-for-java

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for azsdk-common-pipeline-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/azure/azure-sdk-for-java/azsdk-common-pipeline-analysis/github.svg)](https://agentmods.dev/skills/azure/azure-sdk-for-java/azsdk-common-pipeline-analysis)
Your own site
<a href="https://agentmods.dev/skills/azure/azure-sdk-for-java/azsdk-common-pipeline-analysis"><img src="https://agentmods.dev/badge/skills/azure/azure-sdk-for-java/azsdk-common-pipeline-analysis/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for azsdk-common-pipeline-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/azure/azure-sdk-for-java/azsdk-common-pipeline-analysis"><img src="https://agentmods.dev/badge/skills/azure/azure-sdk-for-java/azsdk-common-pipeline-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 192 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,071 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00192 $0.01071
Opus 5 $0.00096 $0.00535
Sonnet 5 $0.00038 $0.00214
Haiku 4.5 $0.00019 $0.00107

Measured 9d ago against content hash 24952d56961d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

azsdk-common-pipeline-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to azsdk-common-pipeline-analysis — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.github/skills/azsdk-common-pipeline-analysis/SKILL.md · 55 lines

How it starts

The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pipeline Analysis

This skill analyzes Azure SDK CI/CD pipeline failures and provides a structured diagnosis including root cause, affected files, and concrete instructions for how to fix each issue. It does NOT apply fixes - it tells you exactly what's wrong and how to resolve it.

Rules

  • Load this skill before running azsdk_analyze_pipeline — the tool returns raw failure data that this skill interprets and formats per output format.
  • Requires the azure-sdk-mcp server; without it, inspect logs in the Azure DevOps UI.
  • Analysis-only: never edit files or apply fixes — use azsdk-common-pipeline-fixer for changes.
  • Run azsdk_analyze_pipeline first, then categorize each failure and cite specific files/lines.
  • For infrastructure failures (network timeouts, agent crashes, throttling), recommend retry, not code changes.

MCP Tools

Tool Purpose
azure-sdk-mcp:azsdk_analyze_pipeline Analyze pipeline failure (logs + test results)
azure-sdk-mcp:azsdk_get_pipeline_llm_artifacts Download test result artifacts from pipeline
azure-sdk-mcp:azsdk_get_failed_test_run_data Full details for every failure in one artifact file
azure-sdk-mcp:azsdk_get_failed_test_case_data Full details for a single failing test in a file
azure-sdk-mcp:azsdk_get_pr_checks Get pipeline/check results linked to a PR
azure-sdk-mcp:azsdk_get_pipeline_status Get pipeline run status

Steps

  1. Identify - Get the build ID, pipeline URL, or PR link (use the PR link when triggered from a PR comment).
  2. Analyze - Run azsdk_analyze_pipeline. It returns failed_pipeline_tasks (log errors from failed steps) and failed_pipeline_tests, a lightweight index of failed tests grouped by artifact file. Each entry has artifact_file_path, platform, and failed_test_titles — titles only, no error text, to keep the response small.
  3. Fetch failure details - Fetch failure details lazily so you don't overload context: call azsdk_get_failed_test_run_data with the parameter failedTestRunsPath set to artifact_file_path once per file to get every failure in it. Or call azsdk_get_failed_test_case_data with failedTestRunsPath set to artifact_file_path and testCaseTitle set to one exact title from failed_test_titles. Prefer the per-file call when triaging a whole file's failures.
  4. Categorize each failure: test, build/compilation, validation/lint, or infrastructure.
  5. Diagnose - Give each failure's root cause and affected file(s)/line(s), and note if several share one root cause. See failure patterns.
  6. Report - Use the output format: root cause, affected files, per-failure fix + verify command, and fixable vs infrastructure. Recommend azsdk-common-pipeline-fixer to apply fixes.

Read the full file on GitHub · 55 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 55 lines · 192 tokens per session scan A 24952d56961d

Subscribe to this mod's changes

azsdk-common-pipeline-analysis is a skill published in the GitHub repository Azure/azure-sdk-for-java (2,565 stars, last pushed today), licensed MIT. It adds 192 tokens to every session and 1,071 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to azsdk-common-pipeline-analysis, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

author-test

Generate a test given sample. Parameters: C# SDK repository root; Package name: one of Azure.AI.Projects, Azure.AI.Projects.Agents or Azure.AI.Extensions.OpenAI; the sample to use as a starting point for the test.

Azure/azure-sdk-for-net · 68 tokens

ak-test

Set up testing and debug common issues in Agent Kernel projects. This skill guides you through configuring the built-in test framework, writing agent tests, choosing test modes (score, llm, fallback), and troubleshooting common errors.

yaalalabs/agent-kernel · 47 tokens

debug-rule

Debug a rule or approximation that behaves unexpectedly by tracing where taint is dropped. Use when its samples won't pass after repeated attempts, or it passes tests but is wrong on a real scan.

seqra/opentaint · 40 tokens

dev-cycle

Crawlberg iteration loops codified as Taskfile tasks — alef install/generate/format/bump, core and binding builds, e2e generate/build/test cycles, cleanup tiers, and the mock-server / stale-.so / precompiled-NIF / generated-e2e gotchas. Load when running or debugging crawlberg build, alef regeneration, or e2e…

xberg-io/crawlberg · 89 tokens

simplifier

Replatform mode ("lift, tinker, and shift") — simplify a 1:1-lifted legacy system in place: modernize code and remove external dependencies, one pass at a time, each bracketed by characterization-tests replays, structure preserved. Owns the stack-neutral pass discipline; the transformation catalog and dependency…

AdamBien/airails · 0 tokens

ph-tdd

(PH) Use after an approved delivery boundary to define a focused failing behavior test before implementation.

jyt6640/persona-harness · 23 tokens