Dev & Engineering ✓ Microsoft · Official pythonazure-fabricazure-sdkcapacity-managemententra-authenticationlong-running-operations

Azure Fabric Capacity Manager

Manage Microsoft Fabric capacities and their lifecycle with the Azure Python SDK.

FollowSkills review · FSRS-2.0
Not recommended
46/ 100 5-point scale 2.3 / 5
Trust14 / 25 · 2.8/5

The evidence shows use of DefaultAzureCredential, avoidance of connection strings, and production credential-chain constraints, providing some least-privilege and audit awareness. However, create, update, suspend, and delete operations have external and billing effects without user confirmation, rollback/recovery guidance, or sufficiently explicit data-flow and permission boundaries, so points are deducted.

Reliability5 / 20 · 1.3/5

The documentation covers basic CRUD, LROs, and context management, but has reproducible correctness risks: FabricCapacityAdministration is used without an import, the main document uses CapacitySku while the reference uses RpSku, list_skus signatures conflict, and exception handling and diagnosable failure feedback are thin. Static calibration caps this at 10, so the score is conservative.

Adaptability10 / 15 · 3.3/5

Triggers, audience, and core Fabric-capacity scenarios are reasonably clear. Non-fit boundaries, permission prerequisites, async usage, mainland-China network fit, and SDK/API version variance are not sufficiently defined, so points are deducted.

Convention8 / 15 · 2.7/5

The skill has YAML metadata, MIT licensing, installation and environment-variable notes, layered references, and a version field. It lacks a changelog, explicit maintenance responsibility and update path, and contains inconsistent reference content, so it does not merit full marks.

Effectiveness5 / 15 · 1.7/5

The skill can help generate common capacity-management code and explains LROs, SKUs, and states. However, key examples may not run as written, destructive operations lack safety workflow, and error handling, paging, monitoring, and production validation are incomplete. Static evidence cannot establish correctness, so this remains at or below 7.

Verifiability4 / 10 · 2.0/5

Auditable source documentation, an MIT license, and repository-level CI/test material are present, but the supplied tests do not cover this skill's key Python SDK paths and there is no skill-specific acceptance suite or third-party execution evidence. Conclusions therefore rely mainly on documentation claims and are capped at 5.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • Verify model names, method names, and the list_skus signature against the target azure-mgmt-fabric version; in particular resolve the missing FabricCapacityAdministration import and the CapacitySku/RpSku mismatch.
  • Add explicit confirmation, least-privilege permissions, audit logging, and feasible recovery/rollback procedures for create, scale, suspend, and delete operations; deletion should not be presented as an unguarded default.
  • Add diagnosable handling for exceptions, polling timeouts, retry boundaries, pagination, authorization failures, and missing resources, plus executable skill-specific tests.
  • Reconcile DefaultAzureCredential(require_envvar=True) with the AZURE_TOKEN_CREDENTIALS requirement and validate mainland-China connectivity and enterprise proxy conditions.
See the full review method →

What it does & when to use it

This skill supports development with the Azure Fabric Management SDK for Python. It explains package installation, Azure credential configuration, and use of FabricMgmtClient to create, inspect, list, update, suspend, resume, and delete Microsoft Fabric capacities. It also covers name availability, SKU discovery, capacity states, and long-running operations. It is a good fit for Azure developers automating Fabric capacity management from Python.

It guides users through installing azure-mgmt-fabric and azure-identity, reading AZURE_SUBSCRIPTION_ID and AZURE_RESOURCE_GROUP, configuring DefaultAzureCredential or a specific Azure credential, and creating FabricMgmtClient with deterministic cleanup. Examples call fabric_capacities and operations to create capacities, retrieve details, list by resource group or subscription, update SKUs and tags, suspend, resume, delete, check names, and list available SKUs. Mutating operations are handled as long-running operations using .result() or manual polling.

  1. A Python Azure developer needs to provision a Microsoft Fabric capacity with a region, SKU, and administrators.
  2. A platform engineer needs to inventory Fabric capacities across a resource group or subscription.
  3. An operations team wants to suspend unused capacities to stop billing and resume them later.
  4. An application team needs to scale a capacity SKU, add cost-tracking tags, or validate a name before creation.
  5. A developer needs a consistent pattern for handling Fabric management long-running operations.

Pros & cons

Pros
  • Covers the main Fabric capacity lifecycle, including creation, updates, suspension, resumption, and deletion.
  • Clearly recommends DefaultAzureCredential and explains local-development and production configuration.
  • Emphasizes deterministic cleanup for clients, async credentials, transports, and token caches.
  • Includes practical patterns for SKUs, states, name checks, and long-running operations.
Limitations
  • The scope is centered on capacity management and does not demonstrate broader Fabric workloads or analytics operations.
  • The create-capacity example uses FabricCapacityAdministration without showing its import.
  • The supplied material does not provide evidence of dedicated test coverage for this individual skill.
  • The referenced capabilities.md and non-hero-scenarios.md files are not included in the supplied source.

How to install

Place the skill directory in the skills directory used by the coding agent. The full repository can be installed with npx skills add microsoft/skills, followed by selecting skills in the wizard. Install the Python dependencies with pip install azure-mgmt-fabric and pip install azure-identity. The source does not specify the exact copy path for this individual skill across agents.

How to use

A suitable trigger prompt is: Use azure-mgmt-fabric in Python to create and manage a Microsoft Fabric capacity with DefaultAzureCredential and context managers. Set AZURE_SUBSCRIPTION_ID and AZURE_RESOURCE_GROUP before running the generated code. For production use of DefaultAzureCredential, set AZURE_TOKEN_CREDENTIALS=prod or a specific credential. Choose either synchronous or asynchronous APIs consistently and wait for every mutating LRO to complete.

FAQ

What Azure configuration is required?
All authentication methods require AZURE_SUBSCRIPTION_ID and AZURE_RESOURCE_GROUP. When using DefaultAzureCredential in production, also set AZURE_TOKEN_CREDENTIALS=prod or specify a credential.
Does suspending a capacity reduce cost?
The skill states that suspending a capacity stops billing and recommends suspending unused capacities to reduce costs.
Why must I wait for the operation to finish?
Create, update, suspend, resume, and delete operations are long-running operations. Use .result() or poll the operation until poller.done() is true.
What does this skill manage?
The stated scope is Microsoft Fabric capacities and resources, while the supplied operations and examples focus primarily on client.fabric_capacities and client.operations.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Identity for Python

A practical skill for securing Python Azure applications with Microsoft Entra ID credentials.

Dev & Engineering ✓ Microsoft · Official

Azure Event Hubs Java Skill

Build production-oriented Java event streaming applications on Azure Event Hubs.

Dev & Engineering ✓ Microsoft · Official

Azure Tables for Python

A practical guide to building authenticated Azure Tables applications with Python entity CRUD, queries, and partition-scoped batch operations.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for TypeScript

Configure secure, flexible Microsoft Entra ID authentication for TypeScript Azure applications.

Automation & Ops ✓ Microsoft · Official

Azure Reliability Advisor

Assess and improve reliability for Azure Functions and App Service.

Dev & Engineering ✓ Microsoft · Official

Azure Cloud Architect

Guides coding agents through production-grade Azure architecture design and review using Azure Architecture Center practices.

Dev & Engineering ✓ Microsoft · Official

Azure AI Text Analytics for Python

Guides Python developers through Azure-powered text analysis and NLP workflows.

Automation & Ops ✓ Microsoft · Official

Azure Resource Architecture Visualizer

Analyze Azure resource groups and turn their dependencies into detailed Mermaid architecture diagrams.

Dev & Engineering ✓ Microsoft · Official

Azure Maps for .NET

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

Dev & Engineering ✓ Microsoft · Official

Azure AI Vision Image Analysis

Guides Python coding agents in implementing Azure AI Vision image understanding.

Dev & Engineering ✓ Microsoft · Official

Azure Blob Storage for Python

Guides secure, production-minded Blob Storage operations in Python.

Dev & Engineering ✓ Microsoft · Official

Azure Queue Storage for Python

Gives coding agents reliable Python patterns for secure Azure Queue Storage messaging and asynchronous task processing.

Automation & Ops ✓ Microsoft · Official

Azure AI Gateway Governance

Use Azure API Management to govern traffic across AI models, MCP tools, and agents.

Automation & Ops ✓ Microsoft · Official

AKS Automatic Readiness

Assess Kubernetes workloads for AKS Automatic compatibility and identify migration blockers before you switch.

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 Playwright Workspace Manager

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

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB for Python

A practical guide for building reliable Python applications on Azure Cosmos DB’s NoSQL API.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault SDK for Python

Gives Python coding agents practical guidance for securely managing Azure Key Vault secrets, keys, and certificates.

Dev & Engineering ✓ Microsoft · Official

Azure API Management for Python

Gives coding agents practical Python SDK patterns for managing Azure API Management services, APIs, products, subscriptions, and policies.

Dev & Engineering ✓ Microsoft · Official

Azure Monitor Query for Python

Generate Python code for querying Azure Monitor logs and metrics.

Related skills