数据分析与咨询
#data
power-bi-documentation
Auto-document Power BI semantic models by extracting metadata, generating documentation, and cataloging all model objects using pbi-cli. Invoke this skill whenever the user says "document this model", "what's in this model", "list everything", "data dictionary", "model inventory", "audit contents", "catalog", "describe the model", or wants to understand what objects exist in a semantic model.
DeepseekModel
官方收录技能
质量 优秀 · 78
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=minasaad1-pbi-cli-src-pbi-cli-skills-power-bi-docs-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name Power BI Documentation description Auto-document Power BI semantic models by extracting metadata, generating documentation, and cataloging all model objects using pbi-cli. Invoke this skill whenever the user says "document this model", "what's in this model", "list everything", "data dictionary", "model inventory", "audit contents", "catalog", "describe the model", or wants to understand what objects exist in a semantic model. tools pbi-cli Power BI Documentation Skill Generate comprehensive documentation for Power BI semantic models. Prerequisites pipx install pbi-cli-tool pbi-cli skills install pbi connect Quick Model Overview pbi --json model get # Model metadata pbi --json model stats # Table/measure/column counts Catalog All Objects # Tables and their structure pbi --json table list pbi --json table get Sales pbi --json table schema Sales # All measures pbi --json measure list # Individual measure details pbi --json measure get "Total Revenue" --table Sales # Columns per table pbi --json column list --table Sales pbi --json column list --table Products # Relationships pbi --json relationship list # Security roles pbi --json security-role list # Hierarchies pbi --json hierarchy list --table Date # Calculation groups pbi --json calc-group list # Perspectives pbi --json perspective list # Named expressions (M queries) pbi --json expression list # Partitions pbi --json partition list --table Sales # Calendar/date tables pbi --json calendar list Export Full Model as TMDL pbi database export-tmdl ./model-docs/ This creates a human-readable text representation of the entire model. Workflow: Generate Model Documentation Run these commands to gather all information needed for documentation: # Step 1: Model overview pbi --json model get > model-meta.json pbi --json model stats > model-stats.json # Step 2: All tables pbi --json table list > tables.json # Step 3: All measures pbi --json measure list > measures.json # Step 4: All relationships pbi --json relationship list > relationships.json # Step 5: Security roles pbi --json security-role list > security-roles.json # Step 6: Column details per table (loop through tables) pbi --json column list --table Sales > columns-sales.json pbi --json column list --table Products > columns-products.json # Step 7: Full TMDL export pbi database export-tmdl ./tmdl-export/ Then assemble these JSON files into markdown or HTML documentation. Workflow: Data Dictionary For each table, extract columns and their types: # Get schema for key tables pbi --json table schema Sales pbi --json table schema Products pbi --json table schema Calendar Workflow: Measure Catalog Create a complete measure inventory: # List all measures with expressions pbi --json measure list # Export full model as TMDL (includes all measure definitions) pbi database export-tmdl ./tmdl-export/ Culture Management For multi-language models: # List cultures (locales) pbi --json advanced culture list # Create a culture for localization pbi advanced culture create "fr-FR" # Delete a culture pbi advanced culture delete "fr-FR" Best Practices Always use --json flag for machine-readable output Export TMDL alongside JSON for complete documentation Run documentation generation as part of CI/CD pipeline Keep documentation in version control alongside TMDL exports Include relationship diagrams (generate from pbi --json relationship list ) Document measure business logic, not just DAX expressions Tag measures by business domain using display folders
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |