From aj-geddes-useful-ai-prompts-4
Creates and manages Azure Functions for serverless computing with triggers, bindings, authentication, and monitoring. Supports HTTP APIs, message processing, scheduled jobs, and event-driven workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:azure-functionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Azure Functions enables serverless computing on Microsoft Azure. Build event-driven applications with automatic scaling, flexible bindings to various Azure services, and integrated monitoring through Application Insights.
Minimal working example:
# Install Azure Functions Core Tools
curl https://aka.ms/install-artifacts-ubuntu.sh | bash
# Login to Azure
az login
# Create resource group
az group create --name myapp-rg --location eastus
# Create storage account (required for Functions)
az storage account create \
--name myappstore \
--location eastus \
--resource-group myapp-rg \
--sku Standard_LRS
# Create Function App
az functionapp create \
--resource-group myapp-rg \
--consumption-plan-location eastus \
--runtime node \
--runtime-version 18 \
--functions-version 4 \
--name myapp-function \
--storage-account myappstore
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Azure Function Creation with Azure CLI | Azure Function Creation with Azure CLI |
| Azure Function Implementation (Node.js) | Azure Function Implementation (Node.js) |
| Azure Functions with Terraform | Azure Functions with Terraform |
| Function Bindings Configuration | Function Bindings Configuration |
npx claudepluginhub aj-geddes/useful-ai-promptsProvides expert guidance for Azure Functions development including troubleshooting, best practices, architecture, security, deployment, and integrations. Use for HTTP/queue-triggered apps, Durable workflows, container-based Functions, or OpenAI/Dapr integrations.
Provides expert patterns for Azure Functions including isolated worker model, Durable Functions orchestration, cold start optimization, and production anti-patterns for .NET, Python, and Node.js.
Provides 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.