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.
npx skills add luccapinto/agentic-data-kit --skill pbi-report-layer-pbirgit clone --depth 1 https://github.com/luccapinto/agentic-data-kitWrote 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.
[](https://agentmods.dev/skills/luccapinto/agentic-data-kit/pbi-report-layer-pbir)<a href="https://agentmods.dev/skills/luccapinto/agentic-data-kit/pbi-report-layer-pbir"><img src="https://agentmods.dev/badge/skills/luccapinto/agentic-data-kit/pbi-report-layer-pbir.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00042 | $0.00665 |
| Opus 5 | $0.00021 | $0.00332 |
| Sonnet 5 | $0.00008 | $0.00133 |
| Haiku 4.5 | $0.00004 | $0.00067 |
Grade A, and why
pbi-report-layer-pbir 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 6d 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.
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.
How it starts
The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
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)
<Project>.Report/
definition.pbir ← pointer (model binding)
definition/
report.json ← master metadata incl. themeCollection
pages/
<pageId>/
page.json ← canvas size, background, displayName
visuals/<visualId>/visual.json ← one visual per file
StaticResources/
RegisteredResources/<id>/<id>.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": "<new GUID if creating>",
"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/<guid>/<guid>.json. - Register that
<guid>inreport.json'sthemeCollection. - Define ≥ 8
dataColors. To standardize fonts globally, use the wildcardvisualStyles:"visualStyles": { "*": { "*": { "fontSize": [{ "value": 11 }], "fontFamily": [{ "value": "Segoe UI" }] } } }
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.
- 6d ago First seen · 63 lines · 42 tokens per session scan A 0ce2bcd4b37b
pbi-report-layer-pbir is a skill published in the GitHub repository luccapinto/agentic-data-kit (7 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 665 once invoked, about $0.0002 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-31.
Other skills, from other repositories
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
spec-kitty-charter-doctrine
Run charter interview, generation, context, and sync workflows for project governance in Spec Kitty 3.x. Access doctrine artifacts programmatically via DoctrineService. Resolve agent profiles. Load action-scoped governance context iteratively, not all at once. Triggers: "interview for charter", "generate charter"…
managing-astro-local-env
Manage local Airflow environment with Astro CLI (Docker and standalone modes). Use when the user wants to start, stop, or restart Airflow, view logs, query the Airflow API, troubleshoot, or fix environment issues. For project setup, see setting-up-astro-project.
checking-freshness
Quick data freshness check. Use when the user asks if data is up to date, when a table was last updated, if data is stale, or needs to verify data currency before using it.
110-java-maven-best-practices
Use when you need to review, improve, or troubleshoot a Maven pom.xml file — including dependency management with BOMs, plugin configuration, version centralization, multi-module project structure, build profiles, or any situation where you want to align your Maven setup with industry best practices. This should…
128-java-generics
Use when you need to review, improve, or refactor Java code for generics quality — including avoiding raw types, applying the PECS (Producer Extends Consumer Super) principle for wildcards, using bounded type parameters, designing effective generic methods, leveraging the diamond operator, understanding type erasure…