What problem does it solve? Building production-grade serverless applications on Azure Functions requires navigating deprecated runtime models, cold start issues, socket exhaustion, and timeout limits across multiple language stacks. This Skill provides expert patterns and anti-pitfall guidance for writing resilient Azure Functions in .NET, Node.js, and Python. ## Core Features & Use Cases - Multi-Language Programming Models: Covers .NET 8/9/10 Isolated Worker with dependency injection, Node.js v4 TypeScript code-centric registration, and Python v2 decorators with output bindings. - Durable Functions Orchestration: Implements fan-out/fan-in orchestration patterns with compensation logic for long-running workflows. - Production Sharp Edges Table: Documents critical anti-patterns like per-invocation HttpClient creation, blocking async calls, and cold start mitigation with severity ratings and fixes. - Use Case: When building an event-driven order processing API on Azure, use this Skill to scaffold an HTTP-triggered function with proper DI, IHttpClientFactory registration, and Application Insights telemetry while avoiding thread pool starvation. ## Quick Start Use the azure-functions skill to create a .NET Isolated Worker HTTP function with dependency injection and proper HttpClient management.