fabric-rest-api-perf-remediate

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

A troubleshooting guide for Microsoft Fabric REST APIs, which let programs manage and access Fabric workspaces and data services over the web. It covers slow requests, rate limits, long-running operations, pagination, and bulk calls.

In plain words
What is it for?
Use it to diagnose HTTP 429 errors, slow or timed-out requests, stalled operations, pagination delays, and capacity-related Spark submission errors.
Why use it?
It helps identify whether delays come from throttling, inefficient polling, large result pages, authentication, or capacity limits.

Skill for Claude CodeCodex

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

Good fit Use it to diagnose HTTP 429 errors, slow or timed-out requests, stalled operations, pagination delays, and capacity-related Spark submission errors.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-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-perf-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-perf-remediate

README.md
[![agentmods](https://agentmods.dev/badge/skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-remediate/github.svg)](https://agentmods.dev/skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-remediate)
Your own site
<a href="https://agentmods.dev/skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-remediate"><img src="https://agentmods.dev/badge/skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-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-perf-remediate

Your own site · 80×15
<a href="https://agentmods.dev/skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-remediate"><img src="https://agentmods.dev/badge/skills/patrickgallucci/fabric-skills/fabric-rest-api-perf-remediate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,995 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.00105 $0.01995
Opus 5 $0.00053 $0.00997
Sonnet 5 $0.00021 $0.00399
Haiku 4.5 $0.00011 $0.00199

Measured 11d ago against content hash 92ce943529da, 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-perf-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 4 executable files (scripts/Measure-FabricApiBaseline.ps1, scripts/Measure-FabricLroPolling.ps1, scripts/Test-FabricApiThrottle.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-perf-remediate/SKILL.md · 221 lines

How it starts

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

Microsoft Fabric REST API Performance remediate

Structured diagnostic workflows and automation scripts for identifying and resolving performance bottlenecks in Microsoft Fabric REST API integrations.

When to Use This Skill

  • API calls to api.fabric.microsoft.com are slow or timing out
  • Receiving HTTP 429 (Too Many Requests) responses with Retry-After headers
  • Long running operations (LRO) polling is inefficient or stalling
  • Paginated API responses are taking too long to enumerate
  • Bulk workspace or item operations exceed capacity throttle limits
  • Entra ID token acquisition is adding unexpected latency
  • Spark job submissions return HTTP 430 (TooManyRequestsForCapacity)
  • Need to benchmark Fabric REST API throughput for a given capacity SKU

Prerequisites

  • PowerShell 7+ with Invoke-RestMethod support
  • Microsoft Entra ID app registration with appropriate Fabric scopes
  • A valid Bearer token or MSAL-based authentication flow
  • Access to at least one Fabric workspace

Diagnostic Decision Tree

Determine the root cause category before applying a fix:

API Call Slow or Failing?
├── HTTP 429 returned?
│   ├── YES → Throttling. See §1 Throttling Diagnosis
│   └── NO  → Continue
├── HTTP 430 returned?
│   ├── YES → Capacity exhausted. See §2 Capacity Limits
│   └── NO  → Continue
├── HTTP 202 + LRO stalling?
│   ├── YES → Polling issue. See §3 LRO Optimization
│   └── NO  → Continue
├── Large result sets slow?
│   ├── YES → Pagination. See §4 Pagination Tuning
│   └── NO  → Continue
├── Token acquisition slow?
│   ├── YES → Auth latency. See §5 Token Performance
│   └── NO  → General latency. See §6 Baseline Benchmarking

§1 Throttling Diagnosis (HTTP 429)

Fabric throttles per-user, per-API within a time window. When exceeded, the API returns HTTP 429 with a Retry-After header (in seconds).

Diagnosis Steps:

  1. Run the throttle diagnostic script to measure your current request rate against throttle limits
  2. Capture Retry-After header values to understand cooldown periods
  3. Review call patterns for burst behavior vs. steady-state

Read the full file on GitHub · 221 lines

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 · 221 lines · 105 tokens per session scan A 92ce943529da

Subscribe to this mod's changes

fabric-rest-api-perf-remediate is a skill published in the GitHub repository PatrickGallucci/fabric-skills (16 stars, last pushed 3mo ago), licensed MIT. It adds 105 tokens to every session and 1,995 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

prestashop-module-development

Complete PrestaShop module development workflow using modern architecture and best practices. Use when: creating new PrestaShop modules, updating legacy modules to modern code, implementing hooks and actions, setting up module configuration pages, adding front office features, handling database operations…

jeffsenso/prestashop-skills · 89 tokens

create-controller-form-actions

Create the form page actions in the admin controller: create (add) and edit, plus any entity-specific actions. Uses FormBuilder/FormHandler pattern — never builds commands directly. Trigger: "create form actions for {Domain}", "create add/edit for {Domain}".

jeffsenso/prestashop-skills · 59 tokens

create-grid-definition

Create the grid definition for an entity listing: columns, row actions, bulk actions, filters class, and service registration. Covers everything needed to define the grid structure. The query builder is a separate skill (create-grid-query-builder). Trigger: "create grid definition for {Domain}".

jeffsenso/prestashop-skills · 61 tokens

create-form-type

Create the Symfony form type for an entity's add/edit form. Covers standard field types, translatable fields, money fields, file uploads, and choice providers. For multi-tab layout with NavigationTabType, see create-form-tab-layout. Trigger: "create form type for {Domain}".

jeffsenso/prestashop-skills · 62 tokens

create-admin-routing

Create the Symfony routing YAML file declaring all admin routes for the domain. Trigger: "create routing for {Domain}".

jeffsenso/prestashop-skills · 28 tokens

create-controller-listing

Create the listing page actions in the admin controller: index (grid with filters), delete, toggle status, and any bulk actions the entity requires. Trigger: "create listing for {Domain}", "create index action for {Domain}".

jeffsenso/prestashop-skills · 52 tokens