wireframe-power-bi-page

wireframe-power-bi-page is a skill for Claude Code from jonathan-pap/powerbi-report-mcp. It costs 81 tokens per session (995 once invoked), scanned A, original, MIT.

A layout guide for a Power BI report page. Power BI is a tool for turning data into interactive reports and dashboards, and this guide arranges charts, cards, and other visuals within the page's fixed size.

In plain words
What is it for?
Use it when planning where visuals should go on a new Power BI page, such as deciding the number of rows and columns in a dashboard layout.
Why use it?
It removes the need to calculate every visual's pixel position by hand. Following the supplied grid and spacing rules helps layouts pass the page validator.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the powerbi-report-builder plugin — 3 skills, 1 MCP server shipped together

Good fit Use it when planning where visuals should go on a new Power BI page, such as deciding the number of rows and columns in a dashboard layout.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page
Install

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.

Any agent
npx skills add jonathan-pap/powerbi-report-mcp --skill wireframe-power-bi-page
Clone the repo
git clone --depth 1 https://github.com/jonathan-pap/powerbi-report-mcp

Made for: Claude Code.

Or install powerbi-report-builder, the plugin that ships this one along with the rest of its 3 skills, 1 MCP server.

Wrote 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.

agentmods badge for wireframe-power-bi-page

README.md
[![agentmods](https://agentmods.dev/badge/skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page/github.svg)](https://agentmods.dev/skills/jonathan-pap/powerbi-report-mcp/wireframe-power-bi-page)
Your own site
<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.

agentmods 80×15 button for wireframe-power-bi-page

Your own site · 80×15
<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>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 995 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 12d ago against content hash 4ffc84733e90, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

plugin/skills/wireframe-power-bi-page/SKILL.md · 66 lines

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.

Read the full file on GitHub · 66 lines

Files

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.

Changes

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.

  1. 12d ago First seen · 66 lines · 81 tokens per session scan A 4ffc84733e90

Subscribe to this mod's changes

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.

Related

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…

microsoft/flint-chart · 64 tokens

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.

pzfreo/build123d-mcp · 0 tokens

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…

yedanyagamiai-cmd/openclaw-mcp-servers · 207 tokens

frontend-ui-engineering

Build user-facing UI with responsive behavior, accessibility, runtime validation, and design-system consistency.

Plazmodium/odin-workflow · 23 tokens

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.

Owl-Listener/designer-skills · 43 tokens

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).

Owl-Listener/designer-skills · 60 tokens