Dev & Engineering ✓ Microsoft · Official azuredotnetresource-managerdurable-tasktask-hubarm-sdk

Azure Durable Task ARM for .NET

Guides .NET developers through code-based provisioning and management of Durable Task Scheduler resources.

FollowSkills review · FSRS-2.0
Use with care
49/ 100 5-point scale 2.5 / 5
1 2 3 4 5 6
1Trust14 / 25 · 2.8/5

The skill separates management and data planes, uses DefaultAzureCredential, and warns against hardcoded keys. However, it exposes client-secret environment variables without detailed secret-protection guidance and does not specify least-privilege RBAC, user confirmation, impact disclosure, rollback, or recovery, so points are deducted.

2Reliability7 / 20 · 1.8/5

The document covers create, read, update, delete, retention policies, and RequestFailedException handling with a generally coherent workflow. Static evidence provides no executable tests for this skill's key paths, and some API/extension-method details and version claims cannot be verified from the supplied files; edge-case and failure guidance is incomplete, so the score is capped and reduced.

3Adaptability10 / 15 · 3.3/5

The name, description, trigger terms, management-plane boundary, installation notes, and primary scenarios are clear for scheduler, task-hub, and retention-policy management. Non-fit scenarios, prerequisite permissions, regional/service availability, and Chinese-language guidance are not defined, so environment and trigger precision are only partially supported.

4Convention9 / 15 · 3.0/5

The SKILL.md has clear sections for installation, authentication, hierarchy, workflows, type reference, best practices, errors, a complete example, related SDKs, MIT licensing, and version metadata. It lacks a skill-specific changelog, explicit maintenance/update path, known limitations, and compatibility guidance; the version claims also lack static corroboration, so points are deducted.

5Effectiveness6 / 15 · 2.0/5

The examples are directly useful for common ARM management tasks and identify the data-plane SDK as an alternative. There is no skill-specific output validation, complete parameter coverage, or robust permissions and recovery guidance, so generated implementations may require substantial manual checking; the static score remains conservative.

6Verifiability3 / 10 · 1.5/5

The skill cites the Azure SDK repository and NuGet package, and the repository includes general CI and test infrastructure. The supplied evidence does not show skill-specific key-path tests or independently reproducible results, so only limited auditability is justified.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • This is a source-only static review; the examples were not executed or compiled. Verify the current NuGet package, API version, extension-method names, and regional availability before use.
  • Creating, updating, and deleting Azure resources has external side effects; the document does not define pre-execution confirmation, permission scope, change preview, or rollback procedures.
  • Do not place AZURE_CLIENT_SECRET in source code or unprotected environments. Prefer managed identity or secure secret injection and verify least-privilege RBAC.
See the full review method →

What does this skill do, and when should you use it?

This skill focuses on the Azure Durable Task Scheduler management plane for .NET. It guides coding agents through Azure.ResourceManager.DurableTask patterns for creating, reading, updating, and deleting schedulers, task hubs, and retention policies. It covers Azure authentication, resource hierarchy, Dedicated and Consumption SKUs, IP allowlists, and ARM error handling. It does not cover starting orchestrations, querying instances, or sending events through the data plane.

Provides installation commands, environment variables, DefaultAzureCredential and ArmClient setup examples; generates C# patterns for locating subscriptions and resource groups, creating or updating Durable Task Schedulers, creating task hubs, listing or retrieving resources by name, managing retention policies, and deleting resources in dependency order; explains WaitUntil.Completed, WaitUntil.Started, CreateOrUpdateAsync, and RequestFailedException usage.

  1. A .NET infrastructure engineer needs to provision a Dedicated Durable Task Scheduler with a configured instance capacity.
  2. A platform engineer needs a Consumption SKU scheduler for development or variable workloads.
  3. An application team needs to create a Task Hub under an existing scheduler and manage its lifecycle through ARM.
  4. An operations or infrastructure team needs to change an IP allowlist, scale scheduler capacity, or configure a retention policy.
  5. A developer needs to distinguish resource provisioning from Durable Task orchestration runtime operations.

What are this skill's strengths and limitations?

Pros
  • Covers the main management workflows for schedulers, task hubs, and retention policies.
  • Includes copyable C# examples for authentication, resource hierarchy, asynchronous operations, and error handling.
  • Clearly separates the management-plane SDK from Durable Task data-plane SDKs.
  • Documents Dedicated and Consumption SKU patterns and the required deletion order.
Limitations
  • Limited to .NET and Azure Resource Manager management operations; it does not cover orchestration execution or instance queries.
  • Requires an Azure subscription, resource group, and valid credentials; no local mock workflow is documented.
  • The source does not document pricing, regional availability, or independent test coverage for this individual skill.

How do you install this skill?

For a project, run:

dotnet add package Azure.ResourceManager.DurableTask
dotnet add package Azure.Identity

To install the full repository collection, run npx skills add microsoft/skills and select this skill in the wizard. Collection skills are installed to the selected agent directory, such as .github/skills/. The source does not document a more specific single-skill installation command.

How do you use this skill?

Ask a coding agent for a request such as: Use azure-resource-manager-durabletask-dotnet to create an East US Dedicated Durable Task Scheduler and Task Hub with DefaultAzureCredential.

Before running the generated code, set AZURE_SUBSCRIPTION_ID and AZURE_RESOURCE_GROUP; service-principal authentication may also use AZURE_TENANT_ID, AZURE_CLIENT_ID, and AZURE_CLIENT_SECRET. For starting orchestrations, querying instances, or sending events, use the related data-plane SDKs such as Microsoft.DurableTask.Client.AzureManaged.

How does this skill compare with similar options?

The skill explicitly distinguishes Azure.ResourceManager.DurableTask from Microsoft.DurableTask.Client.AzureManaged and Microsoft.DurableTask.Worker.AzureManaged: the former manages schedulers, task hubs, and retention policies, while the latter SDKs support data-plane orchestration and worker execution.

FAQ

What Azure permissions are required?
The source requires an Azure subscription ID, resource group name, and authenticated credentials, but it does not specify the exact RBAC roles or minimum permissions.
Can this skill start Durable Task orchestrations?
No. It is scoped to management-plane operations. Starting orchestrations, querying instances, and sending events belong to the data-plane SDKs.
How are common ARM failures handled?
The examples catch `RequestFailedException`: status 409 indicates an existing resource, 404 indicates a missing resource group, and other ARM errors should report the status, error code, and message.
Does using this skill have a stated cost?
The source does not state costs for the skill or Azure Durable Task Scheduler. Azure service pricing should be checked separately.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB ARM for .NET

Provision and manage Azure Cosmos DB resources from .NET through ARM.

Dev & Engineering ✓ Microsoft · Official

Azure API Management for .NET

Provision and govern Azure API Management resources from .NET.

Dev & Engineering ✓ Microsoft · Official

Azure Redis Management for .NET

Helps .NET developers provision and operate Azure Cache for Redis through Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Arize AI Azure Management for .NET

Guides .NET developers through Azure-based management of Arize AI observability resources.

Dev & Engineering ✓ Microsoft · Official

MCP Server Development Guide

A practical guide to building clear, testable MCP servers that let LLMs work with external APIs.

Dev & Engineering ✓ Microsoft · Official

Azure PostgreSQL Flexible Server for .NET

Manage Azure PostgreSQL Flexible Server deployments and operations with .NET.

Dev & Engineering ✓ Microsoft · Official

Microsoft Docs Researcher

Ground coding agents in official Microsoft documentation for concepts, tutorials, configuration, limits, and best practices.

Dev & Engineering ✓ Microsoft · Official

Azure W&B Resource Manager for .NET

Deploy and manage Weights & Biases instances in Azure with the .NET ARM SDK.

Dev & Engineering ✓ Microsoft · Official

Azure Playwright Workspace Manager

Provision and manage Microsoft Playwright Testing workspaces with .NET and Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Fabric Capacity Manager for .NET

Manage Microsoft Fabric capacities programmatically through Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

MongoDB Atlas Azure ARM Manager

Helps .NET developers manage MongoDB Atlas organizations through Azure Marketplace and Azure ARM.

Dev & Engineering ✓ Microsoft · Official

Azure API Center for .NET

Manage Azure API inventories, governance, versions, and deployments with .NET.

Dev & Engineering ✓ Microsoft · Official

Azure Bot Service ARM SDK for .NET

Helps .NET developers provision Azure Bots and configure their channels through ARM.

Dev & Engineering ✓ Microsoft · Official

Azure SQL ARM for .NET

Provision and manage Azure SQL resources from .NET.

Dev & Engineering ✓ Microsoft · Official

Azure MySQL Flexible Server for .NET

Manage Azure MySQL Flexible Server infrastructure and databases from .NET with the Azure Resource Manager SDK.

Dev & Engineering ✓ Microsoft · Official

Azure Document Intelligence for .NET

Guides .NET developers in extracting structured data from invoices, receipts, IDs, and forms.

Dev & Engineering ✓ Microsoft · Official

Azure Maps for .NET

Build .NET location features for search, routing, maps, geolocation, and weather.

Automation & Ops ✓ Microsoft · Official

Azure Resource Lookup

Inventory, filter, and discover Azure resources across subscriptions.

Dev & Engineering ✓ Microsoft · Official

Azure AI Content Safety for Python

Guides Python applications in detecting harmful text and images and enforcing custom blocklists.

Dev & Engineering ✓ Microsoft · Official

Azure Event Grid for .NET

Practical .NET guidance for publishing, receiving, and processing Azure Event Grid events.

Related skills