power-bi-pages

Featured

Manage Power BI report pages and bookmarks -- add, remove, configure, and lay out pages in PBIR reports using pbi-cli. Invoke this skill whenever the user mentions "add page", "new page", "delete page", "page layout", "page size", "page background", "hide page", "show page", "drillthrough", "page order", "page visibility", "page settings", "page navigation", "bookmark", "create bookmark", "save bookmark", "delete bookmark", or wants to manage bookmarks that capture page-level state. Also invoke when the user asks about drillthrough configuration or pageBinding.

AI & Automation 424 stars 111 forks Updated today MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
88
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Power BI Pages Skill Manage pages in PBIR reports. Pages are folders inside `definition/pages/` containing a `page.json` file and a `visuals/` directory. No Power BI Desktop connection is needed. ## Listing and Inspecting Pages ```bash # List all pages with display names, order, and visibility pbi report list-pages # Get full details of a specific page pbi report get-page page_abc123 ``` `get-page` returns: - `name`, `display_name`, `ordinal` (sort order) - `width`, `height` (canvas size in pixels) - `display_option` (e.g. `"FitToPage"`) - `visual_count` -- how many visuals on the page - `is_hidden` -- whether the page is hidden in the navigation pane - `page_type` -- `"Default"` or `"Drillthrough"` - `filter_config` -- page-level filter configuration (if any) - `visual_interactions` -- custom visual interaction rules (if any) - `page_binding` -- drillthrough parameter definition (if drillthrough page) ## Adding Pages ```bash # Add with display name (folder name auto-generated) pbi report add-page --display-name "Executive Overview" # Custom folder name and canvas size pbi report add-page --display-name "Details" --name detail_page \ --width 1920 --height 1080 ``` Default canvas size is 1280x720 (standard 16:9). Common alternatives: - 1920x1080 -- Full HD - 1280x960 -- 4:3 - Custom dimensions for mobile or dashboard layouts ## Deleting Pages ```bash # Delete a page and all its visuals pbi report delete-page page_abc123 ``` This removes the entire page folder...

Details

Author
MinaSaad1
Repository
MinaSaad1/pbi-cli
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Listed

power-bi-report-design

Use for report page management, visual authoring, bookmarks, drillthrough, auto-layout, tooltip pages, conditional formatting, filter pane configuration, design critique, chart archetype selection, anti-pattern detection, and WCAG accessibility audits. Triggers on: "add a visual", "create a page", "bookmark", "drillthrough", "tooltip page", "conditional formatting", "color scale", "data bar", "report layout", "pbi report", "pbi visual", "pbi page", "pbi layout", "pbi filter", "auto-layout", "page navigator", "mobile layout", "PBIR", "design review", "chart choice", "which visual should I use", "accessibility", "WCAG", "anti-pattern", "report critique", "review this report". Do NOT trigger for DAX measures (→ power-bi-dax), theme/brand colors (→ power-bi-design-system), or model schema (→ power-bi-modeling).

0 Updated today
mudassir09
AI & Automation Featured

power-bi-visuals

Add, configure, bind data to, and bulk-manage visuals on Power BI PBIR report pages using pbi-cli. Invoke this skill whenever the user mentions "add a chart", "bar chart", "line chart", "card", "KPI", "gauge", "scatter", "table visual", "matrix", "slicer", "combo chart", "bind data", "visual type", "visual layout", "resize visuals", "bulk update visuals", "bulk delete", "visual calculations", or wants to place, move, bind, or remove any visual on a report page. Also invoke when the user asks what visual types are supported or how to connect a visual to their data model.

424 Updated today
MinaSaad1
Data & Documents Featured

power-bi-report

Scaffold, validate, preview, and manage Power BI PBIR report projects using pbi-cli. Invoke this skill whenever the user mentions "create report", "new report", "PBIR", "scaffold", "validate report", "report structure", "preview report", "report info", "reload Desktop", "convert report", ".pbip project", "report project", or wants to understand the PBIR folder format, set up a new report from scratch, or work with the report as a whole. For specific tasks, see also: power-bi-visuals (charts, binding), power-bi-pages (page management), power-bi-themes (themes, formatting), power-bi-filters (page/visual filters).

424 Updated today
MinaSaad1