AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Pbi Report Layer Pbir

skill-luccapinto-agentic-data-kit-pbi-report-layer-pbir · by luccapinto

Edit the Power BI report layer as code — pages, visuals, bookmarks, and themes — by writing PBIR JSON files in a PBIP project (offline, Desktop closed).

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-luccapinto-agentic-data-kit-pbi-report-layer-pbir

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-luccapinto-agentic-data-kit-pbi-report-layer-pbir)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
28d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Pbi Report Layer Pbir? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: pbi-report-layer-pbir

The report layer (.Report/) is PBIR — report metadata decomposed into per-page and per-visual JSON files, each with a public JSON schema. PBIR is becoming the default report format (rolling out across Service and Desktop through 2026), and it is explicitly designed to be edited by tools other than Power BI.

Hard precondition

Power BI Desktop must be CLOSED while editing these .json files — live edits corrupt or get overwritten by autosave.

.Report structure (PBIR)

.Report/
  definition.pbir                        ← pointer (model binding)
  definition/
    report.json                          ← master metadata incl. themeCollection
    pages/
      /
        page.json                        ← canvas size, background, displayName
        visuals//visual.json   ← one visual per file
  StaticResources/
    RegisteredResources//.json   ← custom themes (create new themes here)
    SharedResources/BaseThemes/          ← Microsoft base themes — NEVER edit

Navigating

  • Pages: scan definition/pages/; read each page.json displayName (the user-facing name).
  • Visuals: files sit under GUID folders. To find "the bar chart", grep visual.json for

"visualType": "barChart".

Visual anatomy (visual.json)

{
  "name": "",
  "position": { "x": 10, "y": 20, "width": 400, "height": 300, "tabOrder": 1 },
  "visual": {
    "visualType": "barChart",
    "query": { "queryState": { "Category": { "projections": [] }, "Y": { "projections": [] } } }
  }
}

Positioning is a pixel grid (x=0, y=0 top-left). Generate fresh GUIDs for any new component ([System.Guid]::NewGuid() on Windows, or any UUID generator).

Themes

  1. Create the theme JSON under StaticResources/RegisteredResources//.json.
  2. Register that ` in report.json's themeCollection`.
  3. Define ≥ 8 dataColors. To standardize fonts globally, use the wildcard visualStyles:

``json "visualStyles": { "*": { "*": { "fontSize": [{ "value": 11 }], "fontFamily": [{ "value": "Segoe UI" }] } } } ``

Cautions

  • The visual schema evolves with Desktop releases; old keys may be ignored on newer versions.
  • Validate JSON against the PBIR schema where possible. Always have the user commit (git add)

before large UI refactors and test by opening the file in Desktop.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.