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 jonathan-pap/powerbi-report-mcp --skill wireframe-power-bi-pagegit clone --depth 1 https://github.com/jonathan-pap/powerbi-report-mcpWrote 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/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page)<a href="https://agentmods.dev/skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page"><img src="https://agentmods.dev/badge/skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page/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.
<a href="https://agentmods.dev/skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page"><img src="https://agentmods.dev/badge/skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page.svg" alt="Reviewed on agentmods" width="80" 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.00081 | $0.00995 |
| Opus 5 | $0.00041 | $0.00498 |
| Sonnet 5 | $0.00016 | $0.00199 |
| Haiku 4.5 | $0.00008 | $0.00100 |
Grade A, and why
wireframe-power-bi-page 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 12d 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 — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Wireframe a Power BI Page
Power BI report pages have hard geometric constraints. Get the math wrong and the wireframe-validator rejects every visual. Get it right once via pbir_layout_grid and the server handles the math for you.
Canvas constants (1280 x 720, 16:9, FitToPage)
- Page margins: 15px left, 15px right, 6px bottom, 0 top.
- Usable content width: 1250px (1280 - 15 - 15).
- Usable content height: 714px (720 - 6).
- Gap between visuals: 5px horizontal and vertical.
- Banner (page title): full-width at
x:0, y:0, w:1280, h:52— exempt from side margins. - First content row starts at
y:57(banner 52 + gap 5). - Last row bottom edge must be
<= 714.
The validator refuses any non-banner visual at x<15, right>1265, or bottom>714. If you hand-compute coordinates and get one margin wrong, every visual on the page fails.
Preferred path: pbir_layout_grid
For any new page with multiple visuals, call pbir_layout_grid instead of computing pixels. You declare the grid shape; the server returns x/y/w/h per cell, guaranteed valid.
{
"pageId": "summary",
"rows": 2,
"cols": 3,
"reserveBannerRow": false,
"cells": [
{ "row": 0, "col": 0, "visualType": "card", "title": "Revenue" },
{ "row": 0, "col": 1, "visualType": "card", "title": "Margin" },
{ "row": 0, "col": 2, "visualType": "card", "title": "Orders" },
{ "row": 1, "col": 0, "visualType": "columnChart", "title": "By Region" },
{ "row": 1, "col": 1, "visualType": "lineChart", "title": "Trend" },
{ "row": 1, "col": 2, "visualType": "pieChart", "title": "Mix" }
],
"planOnly": true
}
rowSpan/colSpan are supported. reserveBannerRow:true starts the grid at y:57 so a separately-added banner shape sits above.
Two modes:
planOnly:true(default): returns the plan without writing. Sanity-check column widths and spans.planOnly:false: validates bindings and layout, then writes every cell as a visual in one call. Fails fast — no partial writes.
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.
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.
- 12d ago First seen · 66 lines · 81 tokens per session scan A 4ffc84733e90
wireframe-power-bi-page is a skill published in the GitHub repository jonathan-pap/powerbi-report-mcp (19 stars, last pushed 4mo ago), licensed MIT. It adds 81 tokens to every session and 995 once invoked, about $0.0004 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-30.
Other skills, from other repositories
flint-theme-author
Use when: creating, translating, refining, reviewing, or validating a custom Flint ThemeSpec from brand guidelines, websites, slide decks, publication references, design tokens, or an existing visual identity. Produce a reusable ThemeSpec JSON object for Flint Theme Lab without inventing fields or changing chart…
b123d-modeling
Use this skill when asked to model, build, or modify a 3D part or assembly with build123d — from a text description, a technical drawing (image or PDF), dimensions in a spec, or an existing STEP/STL file.
openclaw-color-palette
Design-grade color processing suite — generate harmonious palettes from any seed color, check WCAG 2.1 AA/AAA contrast accessibility, convert between hex/RGB/HSL/HSV/CMYK, simulate 8 color blindness types, and extract dominant colors from images. Use when: (1) user says 'generate a color palette' or 'give me a color…
frontend-ui-engineering
Build user-facing UI with responsive behavior, accessibility, runtime validation, and design-system consistency.
conversational-ux
Design voice and conversational interfaces — dialog flows, error recovery, and persona. Use when the interface speaks and listens rather than being tapped. For graphical input collection, use form-design.
critique-color
Critique a rendered screen's colour — contrast ratios, palette coherence, and semantic meaning. Use when reviewing one screen. For a product-wide WCAG audit use accessibility-audit (design-systems); for building the palette use color-system (ui-design).