Agent skill · DevOps & Cloud

azure-identity-java

Authenticate Java applications with Azure services using Microsoft Entra ID (Azure AD).

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill azure-identity-java --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/azure-identity-java/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Azure Identity (Java) Authenticate Java applications with Azure services using Microsoft Entra ID (Azure AD). ## Installation ```xml <dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> <version>1.15.0</version> </dependency> ``` ## Key Concepts | Credential | Use Case | |------------|----------| | `DefaultAzureCredential` | **Recommended** - Works in dev and production | | `ManagedIdentityCredential` | Azure-hosted apps (App Service, Functions, VMs) | | `EnvironmentCredential` | CI/CD pipelines with env vars | | `ClientSecretCredential` | Service principals with secret | | `ClientCertificateCredential` | Service principals with certificate | | `AzureCliCredential` | Local dev using `az login` | | `InteractiveBrowserCredential` | Interactive login flow | | `DeviceCodeCredential` | Headless device authentication | ## DefaultAzureCredential (Recommended) The `DefaultAzureCredential` tries multiple authentication methods in order: 1. Environment variables 2. Workload Identity 3. Managed Identity 4. Azure CLI 5. Azure PowerShell 6. Azure Developer CLI ```java import com.azure.identity.DefaultAzureCredential; import com.azure.identity.DefaultAzureCredentia

What's inside
Steps it walks through
  1. Installation
  2. Key Concepts
  3. DefaultAzureCredential (Recommended)
  4. Configure DefaultAzureCredential
  5. Managed Identity
  6. Service Principal with Secret
  7. Service Principal with Certificate
  8. Environment Credential
  9. Required Environment Variables
  10. Azure CLI Credential
  11. Interactive Browser
  12. Device Code
  13. Chained Credential
  14. Workload Identity (AKS)
Commands it runs
DefaultAzureCredential configuration
Managed Identity
Workload Identity (AKS)
Logging
Authority host
More from agentic-awesome-skills
All skills →
About this skill
What does the azure-identity-java skill do?

Authenticate Java applications with Azure services using Microsoft Entra ID (Azure AD).

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill azure-identity-java --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going