Agent skill · Security

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/api/azure-api-management/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Create Instance
  2. Policies
  3. Inbound Policies
  4. Transformation Policies
  5. Backend Policies
  6. Caching
  7. Authentication
  8. OAuth 2.0
  9. Subscription Key
  10. Managed Identity to Backend
  11. Products and Subscriptions
  12. Named Values
  13. Bicep Deployment
  14. Resources
Ships with 1 file
  • metadata.json
Commands it runs
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 \
More from claude-skill-registry
All skills →
About this skill
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.

Keep going