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

.github/skills/azsdk-common-apiview-feedback-resolution/SKILL.md

azsdk-common-apiview-feedback-resolution is a skill for Claude Code, Codex from Azure/azure-sdk-for-java. It costs 125 tokens per session (711 once invoked), scanned A, a copy of azsdk-common-apiview-feedback-resolution, MIT.

A workflow for handling APIView comments on Azure SDK pull requests. APIView is Microsoft's review system for checking the public methods and types an SDK exposes.

In plain words
What is it for?
Use it to retrieve and categorize APIView comments, apply the related changes, then validate, regenerate, build, and test the SDK.
Why use it?
It connects reviewer feedback to the TypeSpec or customization changes needed to bring the SDK's public interface into line before another review.

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-apiview-feedback-resolution/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-apiview-feedback-resolution

README.md
[![agentmods](https://agentmods.dev/badge/skills/azure/azure-sdk-for-java/azsdk-common-apiview-feedback-resolution/github.svg)](https://agentmods.dev/skills/azure/azure-sdk-for-java/azsdk-common-apiview-feedback-resolution)
Your own site
<a href="https://agentmods.dev/skills/azure/azure-sdk-for-java/azsdk-common-apiview-feedback-resolution"><img src="https://agentmods.dev/badge/skills/azure/azure-sdk-for-java/azsdk-common-apiview-feedback-resolution/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-apiview-feedback-resolution

Your own site · 80×15
<a href="https://agentmods.dev/skills/azure/azure-sdk-for-java/azsdk-common-apiview-feedback-resolution"><img src="https://agentmods.dev/badge/skills/azure/azure-sdk-for-java/azsdk-common-apiview-feedback-resolution.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 711 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.00125 $0.00711
Opus 5 $0.00063 $0.00356
Sonnet 5 $0.00025 $0.00142
Haiku 4.5 $0.00013 $0.00071

Measured 10d ago against content hash 8202dad03f6d, 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-apiview-feedback-resolution 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 10d 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-apiview-feedback-resolution — 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-apiview-feedback-resolution/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.

APIView Feedback Resolution

This skill analyzes and resolves APIView review feedback on Azure SDK pull requests by retrieving reviewer comments, categorizing them, and applying TypeSpec or customization updates that bring the SDK API surface into compliance before re-review.

Triggers

USE FOR: APIView comments, API review feedback, SDK API surface changes WHEN: "resolve APIView comments", "address API review feedback", "update SDK API surface after APIView" DO NOT USE FOR: general code review, non-APIView feedback

Rules

  • Requires the azure-sdk-mcp server; there is no CLI fallback for retrieving APIView comments or applying TypeSpec changes.
  • Retrieve and categorize APIView comments before making changes so fixes map to reviewer intent.
  • Validate, regenerate, build, and test after applying fixes before requesting re-review.

MCP Tools

Tool Purpose
azure-sdk-mcp:azsdk_apiview_get_comments Get APIView comments
azure-sdk-mcp:azsdk_customized_code_update Apply TypeSpec & code customization changes locally
azure-sdk-mcp:azsdk_typespec_delegate_apiview_feedback Delegate to CCA pipeline
azure-sdk-mcp:azsdk_run_typespec_validation Validate TypeSpec
azure-sdk-mcp:azsdk_package_generate_code Regenerate SDK

Steps

  1. Retrieve — Get APIView URL from SDK PR, run azsdk_apiview_get_comments.
  2. Categorize — Group as Critical/Suggestions/Informational per feedback steps.
  3. Resolve — Use azsdk_customized_code_update for TypeSpec changes; delegate via azsdk_typespec_delegate_apiview_feedback for complex cases.
  4. Validate — Run validation, regenerate SDK, build and test.
  5. Confirm — Verify all items addressed. If delegated, follow post-delegation follow-up. Request re-review.

Read the full file on GitHub · 55 lines

Files

What ships with it

4 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. 10d ago First seen · 55 lines · 125 tokens per session scan A 8202dad03f6d

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

azure-appconfiguration-java

Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots. Triggers: "ConfigurationClient java", "app configuration java", "feature flag java", "configuration setting java", "azure config java".

microsoft/skills · 55 tokens

azure-eventhub-java

Build real-time streaming applications with Azure Event Hubs SDK for Java. Use when implementing event streaming, high-throughput data ingestion, or building event-driven architectures.

microsoft/skills · 37 tokens

azure-ai-voicelive-java

Azure AI VoiceLive SDK for Java. Real-time bidirectional voice conversations with AI assistants using WebSocket. Triggers: "VoiceLiveClient java", "voice assistant java", "real-time voice java", "audio streaming java", "voice activity detection java".

microsoft/skills · 60 tokens

azure-communication-callautomation-java

Build call automation workflows with Azure Communication Services Call Automation Java SDK. Use when implementing IVR systems, call routing, call recording, DTMF recognition, text-to-speech, or AI-powered call flows.

microsoft/skills · 49 tokens

azure-communication-chat-java

Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time chat features.

microsoft/skills · 41 tokens

azure-communication-common-java

Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.

microsoft/skills · 35 tokens