fabric-rest-api-remediate

fabric-rest-api-remediate is a skill for Claude Code, Codex from PatrickGallucci/fabric-skills. It costs 104 tokens per session (3,120 once invoked), scanned A, original, MIT.

A troubleshooting guide for Microsoft Fabric REST API calls, which let programs control and query Fabric through web requests. It covers authentication, permissions, missing resources, throttling, server errors, and long-running operations.

In plain words
What is it for?
Use it to debug Fabric API status codes such as 401, 403, 404, 429, and 5xx, fix token or permission problems, handle retries, poll long operations, and process paginated responses.
Why use it?
It helps determine whether a failed request is caused by an invalid token, missing access, a wrong resource, rate limits, or a service problem. It also addresses polling and pagination issues that can hide incomplete results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to debug Fabric API status codes such as 401, 403, 404, 429, and 5xx, fix token or permission problems, handle retries, poll long operations, and process paginated responses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PatrickGallucci/fabric-skills --skill fabric-rest-api-remediate
Clone the repo
git clone --depth 1 https://github.com/PatrickGallucci/fabric-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fabric-rest-api-remediate

README.md
[![agentmods](https://agentmods.dev/badge/skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate/github.svg)](https://agentmods.dev/skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate)
Your own site
<a href="https://agentmods.dev/skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate"><img src="https://agentmods.dev/badge/skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fabric-rest-api-remediate

Your own site · 80×15
<a href="https://agentmods.dev/skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate"><img src="https://agentmods.dev/badge/skills/patrickgallucci/fabric-skills/fabric-rest-api-remediate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,120 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00104 $0.03120
Opus 5 $0.00052 $0.01560
Sonnet 5 $0.00021 $0.00624
Haiku 4.5 $0.00010 $0.00312

Measured 11d ago against content hash e348408c7406, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fabric-rest-api-remediate scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/Invoke-FabricApiWithRetry.ps1, scripts/Test-FabricApiConnection.ps1, templates/Fabric-Api-ErrorHandler.template.ps1), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fabric-rest-api-remediate/SKILL.md · 337 lines

How it starts

The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Microsoft Fabric REST API remediate

Structured diagnostic workflows for identifying and resolving errors when calling Microsoft Fabric REST APIs (https://api.fabric.microsoft.com/v1/).

When to Use This Skill

  • Fabric REST API returns an HTTP error (401, 403, 404, 429, 5xx)
  • Authentication or token acquisition fails with MSAL
  • Service principal or managed identity calls are rejected
  • API calls are being throttled (HTTP 429)
  • Long running operations (LRO) fail or time out during polling
  • Pagination with continuationToken stops working or returns incomplete results
  • Capacity API operations fail (create, update, resume, suspend)
  • Need to implement retry logic with exponential backoff for Fabric APIs
  • Debugging errorCode values in Fabric API error responses

Prerequisites

  • Microsoft Entra ID app registration with appropriate Fabric API permissions
  • PowerShell 7+ with Az.Accounts module or MSAL.PS for token acquisition
  • Access to a Microsoft Fabric workspace (Contributor or higher)
  • Tenant setting Service principals can use Fabric APIs enabled (if using service principals)

Quick Diagnostic: Identify Your Error

Start here. Match your HTTP status code to the appropriate workflow.

HTTP Status Error Category Jump To
401 Authentication / Token Authentication Failures
403 Permissions / Authorization Permission Denied
404 Resource Not Found Resource Not Found
429 Throttling / Rate Limit Throttling
430 Spark Compute Limit Capacity Limits
500/502/503 Server Error Server Errors
202 then failure LRO Polling Issue LRO remediate

Understanding Fabric Error Responses

Every Fabric API error returns an ErrorResponse object. Always capture the requestId for support escalation.

Read the full file on GitHub · 337 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 337 lines · 104 tokens per session scan A e348408c7406

Subscribe to this mod's changes

fabric-rest-api-remediate is a skill published in the GitHub repository PatrickGallucci/fabric-skills (16 stars, last pushed 3mo ago), licensed MIT. It adds 104 tokens to every session and 3,120 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

tidewave-integration

Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.

oliver-kriska/claude-elixir-phoenix · 38 tokens

perf

Analyze Elixir/Phoenix performance — N+1 queries, assign bloat, ecto optimization, genserver bottlenecks. Use when slowness, timeouts, or high memory reported.

oliver-kriska/claude-elixir-phoenix · 43 tokens

schema-validation

JSON/data schema validation for construction data exchange: API payloads, file imports, BIM exports. Ensure data structure compliance before processing.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 29 tokens

interoperability-analyzer

Analyze data interoperability issues in construction projects. Identify format incompatibilities and data loss points.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 23 tokens

deprecated-api-updater

Identify and replace deprecated API usage in source code with modern alternatives. Use when: (1) Modernizing legacy codebases, (2) Upgrading framework versions (React, Django, Spring, etc.), (3) Fixing deprecation warnings in build output, (4) Preparing for major version upgrades, (5) Ensuring code uses current best…

ArabelaTso/Skills-4-SE · 110 tokens

azure-messaging

Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue…

jonathan-vella/apex-accelerator · 135 tokens