Install
$ agentstack add skill-luccapinto-agentic-data-kit-pbi-report-layer-pbir ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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 eachpage.jsondisplayName(the user-facing name). - Visuals: files sit under GUID folders. To find "the bar chart", grep
visual.jsonfor
"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
- Create the theme JSON under
StaticResources/RegisteredResources//.json. - Register that `
inreport.json'sthemeCollection`. - Define ≥ 8
dataColors. To standardize fonts globally, use the wildcardvisualStyles:
``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.
- Author: luccapinto
- Source: luccapinto/agentic-data-kit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.