azure-functions
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.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/azure-functions/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How azure-functions Compares
| Feature / Agent | azure-functions | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
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.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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 |