azure-api-management
API gateway and management with Azure API Management. Configure policies, rate limiting, authentication, and developer portal. Use for API lifecycle management, gateway patterns, and API security on Azure.
npx skills add majiayu000/claude-skill-registry --skill azure-api-management --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Azure API Management Expert guidance for API gateway and management on Azure. ## Create Instance ```bash # Create APIM instance az apim create \ --name myapim \ --resource-group myResourceGroup \ --location eastus \ --publisher-email admin@contoso.com \ --publisher-name Contoso \ --sku-name Developer # Create API from OpenAPI az apim api import \ --resource-group myResourceGroup \ --service-name myapim \ --path myapi \ --specification-format OpenApiJson \ --specification-url https://api.example.com/openapi.json ``` ## Policies ### Inbound Policies ```xml <policies> <inbound> <!-- Rate limiting --> <rate-limit calls="100" renewal-period="60" /> <quota calls="10000" renewal-period="86400" /> <!-- CORS --> <cors allow-credentials="true"> <allowed-origins> <origin>https://myapp.com</origin> </allowed-origins> <allowed-methods> <method>GET</method> <method>POST</method> </allowed-methods> </cors> <!-- JWT validation --> <validate-jwt header-name="Authorization" require-scheme="Bearer"> <openid-config url="https://login.microsoftonline.com/{tenant}/.well-known/openid-configuration" /> <required-claims> <claim name="aud" match="all"> <value>{client-id}</value> </claim> </required-claims
- Create Instance
- Policies
- Inbound Policies
- Transformation Policies
- Backend Policies
- Caching
- Authentication
- OAuth 2.0
- Subscription Key
- Managed Identity to Backend
- Products and Subscriptions
- Named Values
- Bicep Deployment
- Resources
Create APIM instance az apim create \ Create API from OpenAPI az apim api import \ Create product az apim product create \ Add API to product az apim product api add \ Create subscription az apim subscription create \
What does the azure-api-management skill do?
API gateway and management with Azure API Management. Configure policies, rate limiting, authentication, and developer portal. Use for API lifecycle management, gateway patterns, and API security on Azure.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill azure-api-management --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 majiayu000/claude-skill-registry, a repository with 534 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.
