Skills azure-mgmt-fabric-dotnet
๐Ÿ“ฆ

azure-mgmt-fabric-dotnet

Content revision r2 Medium Risk โš™๏ธ External commands๐ŸŒ Network access๐Ÿ”‘ Env variables

Manage Microsoft Fabric Capacity with .NET

Managing Microsoft Fabric capacity through Azure Resource Manager requires precise SDK workflows. This skill provides .NET guidance for authentication, provisioning, scaling, suspension, deletion, and status checks.

Supports: Claude Codex Code(CC)
๐Ÿ“Š 69 Adequate

Install with my Agent

Copy this request to your Agent. It includes the canonical Skill page and manifest.

Agent request
Review the Skillstore skill "azure-mgmt-fabric-dotnet" from https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet.md and its manifest at https://skillstore.io/api/skills/sickn33-azure-mgmt-fabric-dotnet/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.

Your Agent should still show its plan and request any confirmation required by the security policy.

Test it

Using "azure-mgmt-fabric-dotnet". I need an F64 development capacity in West US 2.

Expected outcome:

  • Validate that F64 is available in West US 2 and confirm subscription quota.
  • Authenticate with DefaultAzureCredential and select the intended subscription and resource group.
  • Check global name availability before starting the create or update operation.
  • Confirm administrators, tags, expected cost, and the final provisioning state.

Using "azure-mgmt-fabric-dotnet". How should I stop charges while a capacity is unused?

Expected outcome:

Retrieve the target capacity, confirm its identity and current state, then suspend it. Verify the Suspended state before reporting completion.

Using "azure-mgmt-fabric-dotnet". My capacity update returned an Azure request error.

Expected outcome:

  • Capture the status code, Azure error code, and correlation details without exposing credentials.
  • Treat conflicts, invalid configuration, permission failures, and quota failures as distinct cases.
  • Recheck the resource state before retrying any operation.

Security Audit

Medium Risk
v5 โ€ข 7/23/2026 Open versioned report

All 79 static findings are false positives caused by Markdown formatting, placeholder credential names, official links, and benign prose. No prompt injection or exfiltration intent was found. The skill still presents privileged Azure operations that can affect cost, access, and service availability.

1
Files scanned
348
Lines analyzed
0
Review items
0
False positives ignored

Confirmed security concerns (1)

Medium
Privileged Azure Resource Changes
The workflows can create billable capacity, change administrators and SKUs, suspend service, or delete resources. Misuse could affect cost, access, or availability.
The documented methods explicitly mutate Azure management-plane resources. This is intended functionality, but the operational impact is direct and verifiable.
Audited by: codex View Audit History โ†’
Share & cite this report

Share the versioned assessment report, neutral badge, embed card, and citations. Skillstore reports evidence without deciding whether this Skill is safe.

Open versioned report
Security Assessment

Copy report link

https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet/audits/5?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Markdown badge

[![Skillstore security assessment](https://skillstore.io/badges/skills/sickn33-azure-mgmt-fabric-dotnet/security.svg)](https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet?utm_source=security_passport_badge)

HTML badge

<a href="https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/sickn33-azure-mgmt-fabric-dotnet/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Embed card

<iframe src="https://skillstore.io/embed/skills/sickn33-azure-mgmt-fabric-dotnet.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Academic citations (APA ยท BibTeX ยท CFF)

APA citation

sickn33. (2026). azure-mgmt-fabric-dotnet security audit report (audit version 5) [Author version unspecified]. Skillstore. https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet/audits/5

BibTeX citation

@techreport{sickn33-sickn33-azure-mgmt-fabric-dotnet-2026, author = {sickn33}, title = {azure-mgmt-fabric-dotnet security audit report (audit version 5)}, institution = {Skillstore}, year = {2026}, number = {5}, url = {https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet/audits/5}, note = {Author version unspecified} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "azure-mgmt-fabric-dotnet security audit report (audit version 5)" version: "unspecified" type: report authors: - name: "sickn33" date-released: "2026-07-23" url: "https://skillstore.io/skills/sickn33-azure-mgmt-fabric-dotnet/audits/5" identifiers: - type: other value: "skillstore:sickn33-azure-mgmt-fabric-dotnet:audit:5" description: "Skillstore immutable audit report identifier"

Skillstore Score

Why this score Evidence Confidence: High
55
Architecture
85
Maintainability
87
Content
68
Community
83
Spec Compliance

What You Can Build

Provision Fabric capacity

Generate a .NET workflow that authenticates, validates inputs, creates a Fabric capacity, and waits for provisioning to finish.

Automate capacity lifecycle

Build repeatable routines for listing, scaling, suspending, resuming, and deleting capacities with state checks.

Review SDK integration

Check a C# implementation for correct ARM types, asynchronous operations, error handling, and management-plane boundaries.

Try These Prompts

Set up Fabric management
Show me how to set up a .NET application for Microsoft Fabric capacity management using DefaultAzureCredential and my Azure subscription.
Provision a capacity
Create a C# workflow for capacity [name] in [resource group], using [region], [SKU], and [administrator UPNs].
Manage the capacity lifecycle
Design a workflow that lists capacities, scales [capacity] to [SKU], suspends it when idle, and resumes it after state validation.
Review resilient automation
Review my Fabric automation for idempotency, least privilege, long-running operations, retries, quota failures, and guarded deletion. Explain every recommended change.

Best Practices

  • Use DefaultAzureCredential with least-privilege Azure roles and avoid hardcoded secrets.
  • Confirm subscription, resource group, capacity name, region, SKU, administrators, and cost before mutations.
  • Wait for long-running operations when required, handle ARM errors, and verify the final provisioning state.

Avoid

  • Do not use this SDK for Fabric workspaces, lakehouses, warehouses, or data-plane items.
  • Do not delete, suspend, resume, scale, or reassign administrators without explicit target confirmation.
  • Do not assume that a SKU, quota, package version, or API behavior is identical across regions and subscriptions.

Frequently Asked Questions

What does this skill manage?
It manages Microsoft Fabric capacity resources through the Azure Resource Manager management plane.
Does it manage Fabric workspaces and data items?
No. Use the Microsoft Fabric REST API or a supported data-plane SDK for those resources.
Which authentication method should I use?
Use DefaultAzureCredential with managed identity, workload identity, developer credentials, or a carefully protected service principal.
Can it create and delete capacities?
Yes. These operations require Azure permissions and can affect billing, access, and service availability.
How should long-running operations be handled?
Wait for completion when later steps depend on the result. Otherwise, start the operation and poll its status safely.
Are the listed versions and SKUs always current?
No. Verify package versions, regional SKU availability, quotas, API behavior, and pricing against current Microsoft documentation.

Developer Details

Author

sickn33

License

MIT

Skillstore revision

r2

Version notice

The author did not declare a version.

Ref

f9e2c34b4f19c7f3e6b0a1e93227b5f77cc12526

Maintenance freshness

7/26/2026

Usage

5 downloads ยท 80 views

File structure

๐Ÿ“„ SKILL.md