← ClaudeAtlas

power-bi-project-orchestratorlisted

Use to coordinate multi-skill Power BI workflows: model design → DAX authoring → governance → report → deploy. Handles cross-skill handoffs, resolves conflicts between skill recommendations, and provides end-to-end workflow patterns. Triggers on: "full project", "end-to-end", "where do I start", "what order", "build a complete report", "set up a new model", "migrate to Fabric", "enterprise workflow", "orchestrate", "full pipeline". Do NOT trigger for single-skill questions — route to the specific skill directly.
mudassir09/pbi-enterprise-cli · ★ 0 · AI & Automation · score 70
Install: claude install-skill mudassir09/pbi-enterprise-cli
# power-bi-project-orchestrator Coordinates multi-skill workflows. Routes questions to the right skill. Handles handoffs. ## Skill Map — Route by Topic | User question type | → Skill | |---|---| | Star schema, source profiling, partitions, calendar, M queries | **power-bi-modeling** | | DAX measures, Time Intelligence, unit tests, filter context | **power-bi-dax** | | Slow queries, VertiPaq, benchmarking, storage engine | **power-bi-performance** | | Report pages, visuals, bookmarks, drillthrough, auto-layout | **power-bi-report-design** | | Themes, brand colours, WCAG, custom visuals | **power-bi-design-system** | | Governance rules, BPA, naming conventions, auto-fix, CI gate | **power-bi-governance** | | RLS, security roles, data dictionary, lineage, audit logs | **power-bi-security-and-docs** | | XMLA deploy, snapshots, environments, CI/CD, auth | **power-bi-deployment** | | pbi doctor, pythonnet errors, connection issues, error codes | **power-bi-diagnostics** | --- ## End-to-End Workflow: New Enterprise Model from Scratch ```bash # Phase 1: Model pbi source profile --type sql --conn "$CONN_STR" --output profile.json pbi source scaffold --profile profile.json --apply pbi calendar create --start 2020-01-01 --end 2027-12-31 pbi calendar mark-as-date-table --table Calendar --date-column Date pbi model lint # Phase 2: DAX pbi measure generate "total revenue, gross margin %, YTD revenue" --table Sales pbi measure audit # check descriptions and fo