S claudeskill.wiki
development

azure-functions

Patrones expertos para el desarrollo de Azure Functions que incluyen el modelo de trabajador aislado, orquestación de Durable Functions, optimización de inicio en frío y patrones de producción. Cubre los modelos de programación .NET, Python y Node.js. Usar cuando: azure function, azure functions, durable functions, azure serverless, function app.

55

Azure Functions

Patterns

Isolated Worker Model (.NET)

Modern .NET execution model with process isolation

Node.js v4 Programming Model

Modern code-centric approach for TypeScript/JavaScript

Python v2 Programming Model

Decorator-based approach for Python functions

Anti-Patterns

❌ Blocking Async Calls

❌ New HttpClient Per Request

❌ In-Process Model for New Projects

⚠️ Sharp Edges

Issue Severity Solution
Issue high ## Use async pattern with Durable Functions
Issue high ## Use IHttpClientFactory (Recommended)
Issue high ## Always use async/await
Issue medium ## Configure maximum timeout (Consumption)
Issue high ## Use isolated worker for new projects
Issue medium ## Configure Application Insights properly
Issue medium ## Check extension bundle (most common)
Issue medium ## Add warmup trigger to initialize your code

Instalación

npx claude-code-templates@latest --skill development/azure-functions

Quick start

  1. Install Claude Code if you have not already.
  2. Copy the Install command from this page and run it in your project directory.
  3. In Claude Code, load or mention the skill when your task matches what the skill is for.

Documentation

Use the links below for agent skills, troubleshooting, and official examples.

Recursos