$npx -y skills add SamarthaKV29/antigravity-god-mode --skill azure-functionsExpert 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, a
| 1 | # Azure Functions |
| 2 | |
| 3 | ## Patterns |
| 4 | |
| 5 | ### Isolated Worker Model (.NET) |
| 6 | |
| 7 | Modern .NET execution model with process isolation |
| 8 | |
| 9 | ### Node.js v4 Programming Model |
| 10 | |
| 11 | Modern code-centric approach for TypeScript/JavaScript |
| 12 | |
| 13 | ### Python v2 Programming Model |
| 14 | |
| 15 | Decorator-based approach for Python functions |
| 16 | |
| 17 | ## Anti-Patterns |
| 18 | |
| 19 | ### ❌ Blocking Async Calls |
| 20 | |
| 21 | ### ❌ New HttpClient Per Request |
| 22 | |
| 23 | ### ❌ In-Process Model for New Projects |
| 24 | |
| 25 | ## ⚠️ Sharp Edges |
| 26 | |
| 27 | | Issue | Severity | Solution | |
| 28 | |-------|----------|----------| |
| 29 | | Issue | high | ## Use async pattern with Durable Functions | |
| 30 | | Issue | high | ## Use IHttpClientFactory (Recommended) | |
| 31 | | Issue | high | ## Always use async/await | |
| 32 | | Issue | medium | ## Configure maximum timeout (Consumption) | |
| 33 | | Issue | high | ## Use isolated worker for new projects | |
| 34 | | Issue | medium | ## Configure Application Insights properly | |
| 35 | | Issue | medium | ## Check extension bundle (most common) | |
| 36 | | Issue | medium | ## Add warmup trigger to initialize your code | |