Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models. Use when: azure function, azure functions, durable functions, azure serverless, function app.
Add this skill
npx mdskills install sickn33/azure-functionsOutlines Azure Functions patterns but lacks actionable implementation instructions and examples
1---2name: azure-functions3description: "Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models. Use when: azure function, azure functions, durable functions, azure serverless, function app."4source: vibeship-spawner-skills (Apache 2.0)5---67# Azure Functions89## Patterns1011### Isolated Worker Model (.NET)1213Modern .NET execution model with process isolation1415### Node.js v4 Programming Model1617Modern code-centric approach for TypeScript/JavaScript1819### Python v2 Programming Model2021Decorator-based approach for Python functions2223## Anti-Patterns2425### ❌ Blocking Async Calls2627### ❌ New HttpClient Per Request2829### ❌ In-Process Model for New Projects3031## ⚠️ Sharp Edges3233| Issue | Severity | Solution |34|-------|----------|----------|35| Issue | high | ## Use async pattern with Durable Functions |36| Issue | high | ## Use IHttpClientFactory (Recommended) |37| Issue | high | ## Always use async/await |38| Issue | medium | ## Configure maximum timeout (Consumption) |39| Issue | high | ## Use isolated worker for new projects |40| Issue | medium | ## Configure Application Insights properly |41| Issue | medium | ## Check extension bundle (most common) |42| Issue | medium | ## Add warmup trigger to initialize your code |43
Full transparency — inspect the skill content before installing.