Install
$ agentstack add skill-wardawgmalvicious-claude-config-pbir-cli ✓ 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.
About
pbir CLI — Verb Index
Agent-first CLI for manipulating local Power BI reports in PBIR format. Install separately: uv tool install pbir-cli. Verify with pbir --version.
Run discovery before every mutation. pbir schema describe . is the canonical way to confirm a property exists before pbir set. Run pbir validate after every mutation.
Path Syntax
Report.Report/Page.Page/Visual.Visual
- Type suffixes (
.Report,.Page,.Visual) are REQUIRED - Glob patterns:
**/*.Visual,**/card*.Visual - Property dot-notation after path:
Visual.Visual.title.fontSize - Reports must be local PBIR — use
pbir downloadto fetch from Fabric first
Global Flags
| Flag | Purpose | |---|---| | --quiet / -q | Suppress animations, tips, spinners (prefer for scripts) | | --debug | Tracebacks, timing, path resolution to stderr | | --version / -V | Show version | | --show-legacy | Include legacy non-PBIR reports in listings |
Verb–Noun Groups
| Group | Entry commands | Detail | |---|---|---| | Discovery | pbir ls, pbir tree, pbir find, pbir cat, pbir get | references/REFERENCE.md § Discovery | | Schema | pbir schema types, pbir schema containers, pbir schema describe, pbir schema check, pbir schema upgrade | references/REFERENCE.md § Schema | | Property get/set | pbir set, pbir get, pbir visuals properties, pbir visuals format | references/REFERENCE.md § Property | | Report | pbir new report, pbir report rebind, pbir report convert, pbir report merge, pbir validate, pbir backup, pbir restore | references/REFERENCE.md § Report | | Pages | pbir pages …, pbir add page | references/REFERENCE.md § Pages | | Visuals | pbir add visual, pbir visuals … | references/REFERENCE.md § Visuals | | Conditional formatting | pbir visuals cf …, pbir visuals format-field, pbir visuals format-state | references/REFERENCE.md § CF | | Filters | pbir filters …, pbir add filter | references/REFERENCE.md § Filters | | Fields | pbir fields … | references/REFERENCE.md § Fields | | Theme | pbir theme … | references/REFERENCE.md § Theme | | DAX | pbir dax measures …, pbir dax viscalcs … | references/REFERENCE.md § DAX | | Bookmarks & annotations | pbir bookmarks …, pbir annotations …, pbir add annotation | references/REFERENCE.md § Bookmarks | | Connection / publish | pbir connect, pbir profile, pbir download, pbir publish, pbir open | references/REFERENCE.md § Connection | | Model inspection | pbir model … | references/REFERENCE.md § Model | | Removal | pbir rm | references/REFERENCE.md § Removal | | Batch | pbir batch run, pbir validate | references/REFERENCE.md § Batch |
Discovery Quickstart
Always run these first — they tell you what already exists before you mutate anything:
pbir ls # All reports with counts
pbir ls --tree # Tree view
pbir ls "Sales.Report" # Pages, filters, theme
pbir ls "Sales.Report/Overview.Page" # Visuals on page
pbir tree "Sales.Report" -v # Tree with field bindings
pbir find "**/*.Visual" --count # Count visuals
pbir find "**/card*.Visual" --json # Glob + JSON
pbir cat "Sales.Report/Overview.Page" # Raw page JSON
pbir cat "Sales.Report/theme" # Theme JSON
pbir schema types # List visual types
pbir schema describe card.title # Properties, types, ranges
See references/REFERENCE.md § Discovery and references/REFERENCE.md § Schema for the full flag set.
Gotchas
| Issue | Cause | Fix | |---|---|---| | pbir: command not found | Not installed | uv tool install pbir-cli | | Glob pattern returns nothing | Missing -f flag on set | Add -f for glob selectors | | "Report not found" | Missing .Report type suffix | Paths require Name.Report, Name.Page, Name.Visual | | set fails with "unknown property" | Property not discovered first | Run pbir schema describe . | | Publish fails after local edits | Structure invalid | Run pbir validate before publish | | UnicodeEncodeError on Windows | cp1252 stdout encoding | Set PYTHONIOENCODING=utf-8 | | Theme changes not applied per visual | Visual has inline override | pbir visuals clear-formatting --only-containers -f | | pbir download fails | fab CLI not authenticated | Run fab auth login first | | Visual overlaps existing header | Placed coordinates without measuring scaffold | Inspect the scaffolded page.json before laying out | | pbir new report creates new theme each time | Default is sqlbi | Do NOT re-apply unless user requests different theme |
See also
- [references/REFERENCE.md](references/REFERENCE.md) — full per-command flag and argument reference
pbir-report-workflow— end-to-end report creation with this CLIpbir-pages— page.json structure consumed bypbir pages …pbir-visual-json— visual.json structure consumed bypbir visuals …pbir-themes— theme JSON structure consumed bypbir theme …
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: wardawgmalvicious
- Source: wardawgmalvicious/claude-config
- 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.