fabric-sdk Skill
How to use @microsoft/fabric-app-data to connect web applications to Fabric data sources at runtime. Build browser-based apps that query semantic models via DAX using the FabricClient API. Published by microsoft in fabric-apps-analytic-templates.
What is fabric-sdk Skill?
How to use @microsoft/fabric-app-data to connect web applications to Fabric data sources at runtime. Build browser-based apps that query semantic models via DAX using the FabricClient API. Published by microsoft in fabric-apps-analytic-templates. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Browser automation
- Data analysis
- Browser automation use cases
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use fabric-sdk Skill
- Use it for browser automation.
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/fabric-apps-analytic-templates
- Skill file: .agents/skills/fabric-sdk/SKILL.md
What it does
How to use @microsoft/fabric-app-data to connect web applications to Fabric data sources at runtime. Build browser-based apps that query semantic models via DAX using the FabricClient API.
Skill instructions
Fabric SDK Usage Overview @microsoft/fabric-app-data lets web applications query Fabric semantic models at runtime. The SDK provides a FabricClient that handles querying, result parsing, caching, and error handling. Transport and authentication are delegated to an IFabricApiProxy implementation, keeping the SDK environment-agnostic (browser, Node.js, Fabric extensions). Quick Start typescript import { FabricClient } from "@microsoft/fabric-app-data"; const client = new FabricClient({ proxy, // provided by host environment semanticModels: { sales: { workspaceId: "...", itemId: "..." }, }, }); const result = await client.semanticModel("sales").query( "EVALUATE SUMMARIZECOLUMNS(Product[Category], "Total", [Sales Amount])" ); if (result.status === "success") { // result.table.columns — [{name, dataType}] // result.table.rows — unknown[][] } else { // result.error.category — "api" | "query" | "overflow" | "network" | "unknown" // result.error.message } Key Concepts FabricClient Configurat
Explore related resources
Frequently asked questions
What is fabric-sdk?
fabric-sdk is a open-source AI agent skill with Copy skill directory. How to use @microsoft/fabric-app-data to connect web applications to Fabric data sources at runtime. Build browser-based apps that query semantic models via DAX using the FabricClient API.
Who is fabric-sdk best for?
fabric-sdk is best for reusing agent instructions, scripts, and references, browser automation workflows, data analysis workflows.
How do I install fabric-sdk?
Install or run fabric-sdk using Copy skill directory. Check fabric-sdk for the latest setup command.
Is fabric-sdk actively maintained?
fabric-sdk may need a closer maintenance check before production use.
Auto-fetched from GitHub.