fabric-app-bootstrap

fabric-app-bootstrap is a skill for Claude Code, Codex from gusbavia/fabric-apps-skills. It costs 142 tokens per session (1,451 once invoked), scanned A, original, MIT.

A command-line setup and deployment guide for Microsoft Fabric Apps, which host browser-based single-page apps with managed data services and Microsoft sign-in.

In plain words
What is it for?
Use it to create or deploy a Vite-style browser app, move a client-side portion of a Next.js app, or run deployments from automated builds using a service account.
Why use it?
It clarifies what Fabric Apps can host and prevents deployment attempts that depend on server-side code, private secrets, or unsupported runtimes.

Skill for Claude CodeCodex

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

Good fit Use it to create or deploy a Vite-style browser app, move a client-side portion of a Next.js app, or run deployments from automated builds using a service account.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap
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 gusbavia/fabric-apps-skills --skill fabric-app-bootstrap
Clone the repo
git clone --depth 1 https://github.com/gusbavia/fabric-apps-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-app-bootstrap

README.md
[![agentmods](https://agentmods.dev/badge/skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap/github.svg)](https://agentmods.dev/skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap)
Your own site
<a href="https://agentmods.dev/skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap"><img src="https://agentmods.dev/badge/skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap/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-app-bootstrap

Your own site · 80×15
<a href="https://agentmods.dev/skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap"><img src="https://agentmods.dev/badge/skills/gusbavia/fabric-apps-skills/fabric-app-bootstrap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 142 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,451 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00142 $0.01451
Opus 5 $0.00071 $0.00726
Sonnet 5 $0.00028 $0.00290
Haiku 4.5 $0.00014 $0.00145

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

Security

Grade A, and why

fabric-app-bootstrap scanned grade A with 1 finding 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.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| `curl -I` on the live URL returns 500 | Harmless platform quirk on HEAD. Verify with GET or a browser. |
skills/fabric-app-bootstrap/SKILL.md · 97 lines

How it starts

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

Fabric App Bootstrap

Stand up and deploy a Microsoft Fabric App (preview) from the CLI, including fully headless with a service principal. Distilled from a real production-shaped build; every gotcha here cost real hours.

What a Fabric App is (and is not)

One workspace item ("App", backed by an AppBackend) with three managed children:

Service What it gives you
Static hosting your built SPA on a public URL (served from OneLake)
SQL Database schema generated from TypeScript @entity() decorators
GraphQL API data plane the client SDK talks to, behind Entra SSO

It will NOT host: Node SSR (no Next.js server), server-held secrets (no BFF with a client secret), Python or any custom runtime. The deploy is a zip of dist/, capped at 100 MB compressed. End-user auth on a deployed app is Entra SSO only.

Porting check: if the existing app fetches server-side with a secret, that code cannot board. Visual/client code survives intact. Route the data layer through one of the companion skills.

Porting from Next.js (proven pattern, ~30 min/page): rebuild the shell as a Vite SPA, then alias next/link and next/navigation to two ~25-line shims in vite.config.ts (resolve.alias) so page components, CSS modules and shared components copy over VERBATIM with zero import rewrites. Wrap async server components in a client component with useState + useEffect. Re-export the old data layer's types and swap only the implementation.

Honest scoping of "zero clicks": steady-state deploys are fully headless. First-run is not: the App item is created in the portal, two tenant settings are admin toggles, and if the app has a database the schema apply needs one interactive owner login (see gotchas). Say this up front when planning CI.

Prerequisites

  • Tenant setting "Fabric App items (preview)" enabled (Fabric admin portal)
  • A workspace + an App item created in it (portal: + New item → App)
  • Node 18+, a Vite SPA (React/Vue/Svelte — templates are Vite)
  • Headless path only: an Entra service principal with Contributor on the workspace and tenant setting "Service principals can use Fabric APIs" = On

Read the full file on GitHub · 97 lines

Files

What ships with it

1 file 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 · 97 lines · 142 tokens per session scan A 4f11cbea49d7

Subscribe to this mod's changes

fabric-app-bootstrap is a skill published in the GitHub repository gusbavia/fabric-apps-skills (3 stars, last pushed 3mo ago), licensed MIT. It adds 142 tokens to every session and 1,451 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

webiny-infrastructure-extensions

Modifying AWS infrastructure using Pulumi handlers and declarative Infra components. Use this skill when the developer wants to customize AWS infrastructure, add Pulumi handlers, configure OpenSearch, VPC, resource tags, regions, custom domains, blue-green deployments, environment-conditional config, or manage…

webiny/webiny-js · 91 tokens

webiny-local-development

Deploying, developing locally, managing environments, and debugging Webiny projects. Use this skill when the developer asks about deployment commands (deploy, destroy, info), local development with watch mode (API or Admin), the Local Lambda Development system, environment management (long-lived vs short-lived…

webiny/webiny-js · 88 tokens

fabric-variable-library

Use for Microsoft Fabric Variable Library — config-as-code for parameterizing notebooks and pipelines per environment. Covers definition parts (variables.json, settings.json, valueSets/ .json — no format field, omit it), variable types (String, Boolean, Number, Integer, DateTime, Guid, ItemReference…

wardawgmalvicious/agent-config · 233 tokens

fabric-network-remediate

Diagnose and resolve Microsoft Fabric network performance issues including connectivity failures, latency, private endpoints, managed VNets, outbound access protection, gateway diagnostics, OneLake endpoint routing, service tag configuration, firewall allowlisting, DNS resolution, and Spark session startup delays. Use…

PatrickGallucci/fabric-skills · 86 tokens

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens