sickn33

azure-functions

2,844
621
# Install this skill:
npx skills add sickn33/antigravity-awesome-skills --skill "azure-functions"

Install specific skill from multi-skill repository

# Description

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.

# SKILL.md


name: azure-functions
description: "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."
source: vibeship-spawner-skills (Apache 2.0)


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

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.