{"slug":"data-goblin-connect-pbid","name":"connect-pbid","description":"TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together.","long_description":"---\nname: connect-pbid\ndescription: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together.\n---\n\n# Connect to Power BI Desktop (Local Analysis Services)\n\n> **CRITICAL:** Record mistakes, surprises, and model-specific nuances encountered while using this skill in `.claude/rules/connect-pbid.md`. This file must begin with \"Learnings from Claude about connecting to semantic models via the connect-pbid skill\". Write only active reference notes (e.g. \"QueryGroup property returns an object; access .Folder for the name string\"); do not log a changelog or history of events. Omit anything already documented in the skill or its references. Keep the file under 1500 characters at all times; prune stale entries when adding new ones. Do not over-attend to this file; update it only when something genuinely unexpected is discovered.\n\n> **Note:** No MCP server is required. Use PowerShell with TOM/ADOMD.NET for the local model.\n> When the report canvas is also in scope, pair it with `pbir` for report operations; never patch\n> report JSON directly.\n\nExpert guidance for connecting to Power BI Desktop's local tabular model via the Tabular Object Model (TOM) and ADOMD.NET in PowerShell. Covers connection, enumeration, DAX queries, query traces, and full model modification.\n\n\n## When to Use This Skill\n\nActivate only when the Tabular Editor CLI or a Power BI MCP server is unavailable. TOM is more reliable than direct TMDL editing because it validates changes against the engine and applies them atomically.\n\n**WARNING:** This skill does NOT support remote models via the XMLA endpoint. For Direct Lake models or models hosted in Fabric, use the Tabular Editor CLI or a Power BI MCP server instead; the local Analysis Services proxy does not expose Direct Lake databases to external TOM/ADOMD.NET connections.\n\n## Model and report: routing\n\nPower BI Desktop exposes the model and the report as two separate local surfaces. This skill owns the model surface and report-canvas verification, and routes report authoring to the right skill:\n\n- **Model** (tables, columns, measures, relationships, roles, calculation groups, refresh): this skill, via TOM/ADOMD over the local Analysis Services instance. For model edits, prefer the `te` CLI or a model MCP when available; fall back to this skill's TOM when they are not (see \"When to Use This Skill\").\n- **Report-canvas verification** (reload after edits, screenshot pages): this skill, the raw Desktop Bridge named-pipe API (section 13).\n- **Report authoring** (visuals, pages, formatting, filters, bookmarks, themes): the `pbir-cli` skill in the reports plugin (it drives the `pbir` CLI). The Desktop Bridge here only reloads and screenshots; it never edits visuals. Route every visual or page change to `pbir-cli`.\n- **Report JSON edited directly** (only when `pbir` is unavailable): the `pbir-format` skill in the pbip plugin.\n\nFull loop on an open PBIP: change the model with TOM here, change visuals with `pbir-cli`, then reload and screenshot with the Desktop Bridge here to verify, and iterate.\n\n\n## Critical\n\n- Power BI Desktop must be open with a model loaded before connecting; if there are errors it is likely due to a \"thin report\" connected to a remote model, or a Direct Lake model (which uses a remote proxy that blocks external connections)\n- The local Analysis Services instance only accepts connections from `localhost`\n- Multiple PBI Desktop files open means multiple `msmdsrv.exe` processes on different ports. Connect to each port, read `$server.Databases[0].Name`, and ask the user which model to work with if more than one is found. When the `pbir` CLI is installed, prefer `pbir desktop list` to map each Desktop PID to the exact file it has open (see Section 2a)\n- A workspace engine reporting `Databases: 0` belongs to a thin report (live connection to a remote model); there is no local model to connect to. Query thin reports through their remote model instead (`pbir model -q` routes there automatically)\n- Always use a timeout of 60000ms or higher for PowerShell commands via Bash\n- **Shell escaping**: Bash eats PowerShell `$` variables (`$env:TEMP`, `$server`, etc.) silently. Two options: (1) single-quote the `-Command` arg so Bash passes `$` literally to PowerShell; (2) write a `.ps1` file with a heredoc (single-quoted delimiter preserves `$`) and use `-File`. On macOS via Parallels, the `prlctl` -> `cmd.exe` -> `powershell.exe` chain adds extra escaping layers; `.ps1` files are more reliable for complex scripts but inline `-Command` with single quotes works for short commands.\n- **Always use `-ExecutionPolicy Bypass`** when running PowerShell commands or scripts. Windows blocks unsigned scripts by default.\n- **Script file location** -- persistent scripts should go in the agent harness's scripts directory for the project (`.claude/scripts/`, `.github/scripts/`, `.cursor/scripts/`, `.gemini/scripts/`, etc. depending on the harness). Ephemeral or throwaway scripts should go in a project `tmp/` directory (which should be `.gitignored`). Do not write scripts to `./` root or `/tmp/`.\n- Do not modify model metadata without explicit user direction\n- Always call `$model.SaveChanges()` to persist modifications; without it, changes are discarded\n- For macOS users running PBI Desktop in Parallels, see [parallels-macos.md](./references/parallels-macos.md)\n- **Validation hooks** are active for this plugin; they validate DAX references, enforce measure metadata, check referential integrity, and report compatibility level upgrade opportunities. Toggle checks in `hooks/config.yaml`.\n\n\n## 1. Prerequisites\n\n| Requirement | Description |\n|-------------|-------------|\n| **Power BI Desktop** | Open with a model loaded (`.pbix` or `.pbip`) |\n| **PowerShell** | Available on the machine running PBI Desktop |\n| **NuGet CLI** | For package installation (`winget install Microsoft.NuGet`) |\n| **TOM NuGet Package** | `Microsoft.AnalysisServices.retail.amd64` -- model metadata |\n| **ADOMD.NET Package** | `Microsoft.AnalysisServices.AdomdClient.retail.amd64` -- DAX queries |\n\nInstall both packages only if not already present:\n\n```powershell\n$pkgDir = \"$env:TEMP\\tom_nuget\"\nif (-not (Test-Path \"$pkgDir\\Microsoft.AnalysisServices.retail.amd64\")) {\n    nuget install Microsoft.AnalysisServices.retail.amd64 -OutputDirectory $pkgDir -ExcludeVersion\n}\nif (-not (Test-Path \"$pkgDir\\Microsoft.AnalysisServices.AdomdClient.retail.amd64\")) {\n    nuget install Microsoft.AnalysisServices.AdomdClient.retail.amd64 -OutputDirectory $pkgDir -ExcludeVersion\n}\n```\n\nPackages install DLLs under `lib\\net45\\`. Load with `Add-Type -Path`.\n\n> **If a TOM operation fails** with a compatibility level error or missing type, the `.retail.amd64` package may be too old. A newer package (`Microsoft.AnalysisServices`, .NET 8+) ships with more recent TOM features. See [daxlib.md](./references/daxlib.md) for details on package differences.\n\n\n## 2. Quickstart\n\nFind the port, load TOM, connect, enumerate -- in one script:\n\n```powershell\n# Find ports (deduped; netstat lists IPv4 and IPv6 entries per port)\n$pids = (Get-Process msmdsrv -ErrorAction SilentlyContinue).Id\n$ports = netstat -ano | Select-String \"LISTENING\" |\n    Where-Object { $pids -contains ($_ -split \"\\s+\")[-1] } |\n    ForEach-Object { ($_ -split \"\\s+\")[2] -replace \".*:\" } |\n    Select-Object -Unique\n\n# Load TOM\n$basePath = \"$env:TEMP\\tom_nuget\\Microsoft.AnalysisServices.retail.amd64\\lib\\net45\"\nAdd-Type -Path \"$basePath\\Microsoft.AnalysisServices.Core.dll\"\nAdd-Type -Path \"$basePath\\Microsoft.AnalysisServices.Tabular.dll\"\n\n# Connect to the first port that hosts a model; skip thin-report engines (0 databases)\n$server = New-Object Microsoft.AnalysisServices.Tabular.Server\nforeach ($p in $ports) {\n    $server.Connect(\"Data Source=localhost:$p\")\n    if ($server.Databases.Count -eq 0) {\n        Write-Output \"localhost:$p hosts no model (thin report); trying next port\"\n        $server.Disconnect()\n        continue\n    }\n    break\n}\n$model = $server.Databases[0].Model\n\n# Enumerate\nforeach ($table in $model.Tables) {\n    Write-Output \"TABLE: [$($table.Name)] ($($table.Columns.Count) cols, $($table.Measures.Count) measures)\"\n}\nWrite-Output \"Relationships: $($model.Relationships.Count)\"\n\n$server.Disconnect()\n```\n\n**Port discovery methods:**\n\n| Method | Install Type | Command |\n|--------|-------------|---------|\n| Port file | Non-Store PBI Desktop | `Get-Content \"$env:LOCALAPPDATA\\Microsoft\\Power BI Desktop\\AnalysisServicesWorkspaces\\*\\Data\\msmdsrv.port.txt\"` |\n| Port file | Store PBI Desktop | `Get-Content \"$env:LOCALAPPDATA\\Packages\\Microsoft.MicrosoftPowerBIDesktop_*\\LocalState\\AnalysisServicesWorkspaces\\*\\Data\\msmdsrv.port.txt\"` |\n| netstat | Any | `netstat -ano \\| findstr LISTENING \\| findstr <PID>` |\n\n\n## 2a. Correlating Ports to Reports (Multiple Instances)\n\nA port alone does not identify the report it serves; correlate before connecting to avoid modifying the wrong model. With the `pbir` CLI and Desktop's \"external tool access\" preview feature enabled, `pbir desktop list` shows each Desktop PID with the exact file it has open. Map ports to those PIDs through the process tree (each `msmdsrv.exe` is a child of its `PBIDesktop.exe`):\n\n```powershell\n$conns = Get-NetTCPConnection -State Listen\nforeach ($proc in Get-Process msmdsrv -ErrorAction SilentlyContinue) {\n    $port = ($conns | Where-Object OwningProcess -eq $proc.Id | Select-Object -First 1).LocalPort\n    $parent = (Get-WmiObject Win32_Process -Filter \"ProcessId=$($proc.Id)\").ParentProcessId\n    Write-Output \"port $port -> msmdsrv $($proc.Id) -> PBIDesktop $parent\"\n}\n```\n\nAn engine reporting `Databases: 0` is a thin report's workspace; no local model exists. Query the remote model instead (`pbir model -q` routes there automatically).\n\n\n## 3. Loading TOM, Connecting, and Saving Changes\n\n### Load Assemblies\n\n```powershell\n$basePath = \"$env:TEMP\\tom_nuget\\Microsoft.AnalysisServices.retail.amd64\\lib\\net45\"\nAdd-Type -Path \"$basePath\\Microsoft.AnalysisServices.Core.dll\"\nAdd-Type -Path \"$basePath\\Microsoft.AnalysisServices.Tabular.dll\"\nAdd-Type -Path \"$basePath\\Microsoft.AnalysisServices.Tabular.Json.dll\"\n```\n\n### Connect\n\n```powershell\n$server = New-Object Microsoft.AnalysisServices.Tabular.Server\n$server.Connect(\"Data Source=localhost:<PORT>\")\n\n# PBI Desktop always has exactly one database\n$db = $server.Databases[0]\n$model = $db.Model\n```\n\n### Save Changes\n\nOnly save after all changes are made. After modifications, persist with:\n\n```powershell\n$model.SaveChanges()\n```\n\nChanges appear immediately in PBI Desktop. The user cannot undo with `Ctrl+Z` in Power BI, which is a disadvantage of this approach.\n\n### Disconnect\n\n**IMPORTANT:** Remember to disconnect after modifications are done. NEVER remain connected, which can lead to orphaned processes.\n\n```powershell\n$server.Disconnect()\n```\n\n### Connection Properties\n\n```powershell\nWrite-Output \"Server: $($server.Name)\"\nWrite-Output \"Version: $($server.Version)\"\nWrite-Output \"Database: $($db.Name)\"\nWrite-Output \"Compatibility: $($db.CompatibilityLevel)\"\n```\n\n\n## 4. Refreshing the Model\n\nTrigger a data refresh via TMSL (Tabular Model Scripting Languag","tagline":"TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxli","category":"design-creative","tags":["agent-skill"],"author":"data-goblin","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"github candidate review","sourceDetail":"data-goblin/power-bi-agentic-development","creatorName":"data-goblin","creatorUrl":"https://github.com/data-goblin","sourceUrl":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/data-goblin-connect-pbid#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":894,"forks":131,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":43.76},"quality":{"score":76,"tier":"strong","label":"Strong","summary":"Solid option that is likely worth shortlisting for production workflows.","signals":[{"label":"GitHub stars","value":"894","tone":"positive"},{"label":"Freshness","value":"30d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"GPL-3.0","tone":"neutral"}],"warnings":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt."]},"trust":{"version":"trust-score-v5","score":57,"base_score":65,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["57/100 Trust Score v5","65/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":76,"weight":0.13,"status":"info","detail":"894 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":71,"weight":0.08,"status":"info","detail":"894 stars, 131 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"30d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"GPL-3.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":38,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"894 GitHub stars"},{"status":"info","label":"Stars/forks activity","detail":"894 stars, 131 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"30d since push"},{"status":"pass","label":"License clarity","detail":"GPL-3.0"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Meaningful GitHub adoption signal","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"894 GitHub stars","repoActivity":"894 stars, 131 forks","lastPushed":"30d since push","license":"GPL-3.0","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","install":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","30d since push","Financial domain: human review is required before use in a live investment workflow.","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["design-creative","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","trust_score":57,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":65,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":57,"base_score":65,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["57/100 Trust Score v5","65/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":76,"weight":0.13,"status":"info","detail":"894 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":71,"weight":0.08,"status":"info","detail":"894 stars, 131 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"30d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"GPL-3.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":38,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"894 GitHub stars"},{"status":"info","label":"Stars/forks activity","detail":"894 stars, 131 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"30d since push"},{"status":"pass","label":"License clarity","detail":"GPL-3.0"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Meaningful GitHub adoption signal","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"894 GitHub stars","repoActivity":"894 stars, 131 forks","lastPushed":"30d since push","license":"GPL-3.0","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","install":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","30d since push","Financial domain: human review is required before use in a live investment workflow.","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["design-creative","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","trust_score":57,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":65,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":65,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":76,"weight":0.13,"status":"info","detail":"894 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":71,"weight":0.08,"status":"info","detail":"894 stars, 131 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"30d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"GPL-3.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":38,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"894 GitHub stars"},{"status":"info","label":"Stars/forks activity","detail":"894 stars, 131 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"30d since push"},{"status":"pass","label":"License clarity","detail":"GPL-3.0"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Meaningful GitHub adoption signal","Install command has no obvious high-risk pattern"],"warnings":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"894 GitHub stars","repoActivity":"894 stars, 131 forks","lastPushed":"30d since push","license":"GPL-3.0","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","install":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","30d since push","Financial domain: human review is required before use in a live investment workflow."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":33,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","summary":"This skill should not be selected by an agent without explicit human security review.","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","auto_install_policy":"block","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"auto_install_allowed":false,"human_review_required":true,"blocked":true,"audit_risk":"needs_review","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"},{"id":"database","label":"Database access","reason":"Skill may inspect schemas, query databases, or work with persistent stores.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","auto_install_policy":"block","auto_install_allowed":false,"blocked":true,"human_review_required":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":65,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Agent safety gate: This skill should not be selected by an agent without explicit human security review.","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Agent safety gate: This skill should not be selected by an agent without explicit human security review.","Permission surface: secrets or environment access, shell or command execution"],"warnings":["Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed.","The skill references external tools (pbir CLI, other skills) that are not part of this submission, which may cause confusion if those are not available.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":84,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate connect-pbid before installing it in an agent workflow","design-creative","GitHub automation workflows; Claude Code teams; teams that value GitHub adoption signals"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid"]},{"id":"trust_score","label":"Trust score","status":"warn","score":65,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","894 GitHub stars","GPL-3.0"]},{"id":"audit_score","label":"Audit score","status":"warn","score":77,"required_for_auto_install":true,"detail":"Needs review","evidence":["Dependency or permission surface needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"fail","score":33,"required_for_auto_install":true,"detail":"This skill should not be selected by an agent without explicit human security review.","evidence":["Do not auto-install. Inspect the source, dependencies, and permission surface first.","Metadata combines secrets access with shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"GPL-3.0","evidence":["GPL-3.0"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"30d since push","evidence":["30d since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":18,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Network access: medium","Filesystem access: medium"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/data-goblin-connect-pbid/evals","api":"/api/agent/evals?slug=data-goblin-connect-pbid","text":"/api/agent/evals?slug=data-goblin-connect-pbid&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"data-goblin-connect-pbid","name":"connect-pbid","description":"TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together.","category":"design-creative","url":"https://www.openagentskill.com/skills/data-goblin-connect-pbid","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","github_repo":"data-goblin/power-bi-agentic-development"},"suited_tasks":["GitHub automation workflows","Claude Code teams","teams that value GitHub adoption signals","Inspect repository metadata","Compare code changes","Write concise engineering summaries","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add data-goblin-connect-pbid"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"connect-pbid\" agent skill from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"connect-pbid\" as a Claude Code skill from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"connect-pbid\" from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/data-goblin-connect-pbid/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/data-goblin-connect-pbid"},"trust":{"score":65,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"894 GitHub stars","repoActivity":"894 stars, 131 forks","lastPushed":"30d since push","license":"GPL-3.0","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","install":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["design-creative","agent-skill"],"known_risks":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":77,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed.","The skill references external tools (pbir CLI, other skills) that are not part of this submission, which may cause confusion if those are not available.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":76,"label":"Strong"},"supply":{"track":"Coding and developer agents","scenario":"GitHub automation","maintenance":"30d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed."],"agent_contract":{"task_input":"Use connect-pbid in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 65/100 Manual review","Audit: 77/100 Needs review","Safety: 33/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"data-goblin-connect-pbid (connect-pbid)","install_command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"data-goblin-connect-pbid","task":"Use connect-pbid in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/data-goblin-connect-pbid","api":"https://www.openagentskill.com/api/agent/skills/data-goblin-connect-pbid","audit":"https://www.openagentskill.com/skills/data-goblin-connect-pbid/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=data-goblin-connect-pbid&task=Use%20connect-pbid%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20connect-pbid%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20connect-pbid%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/data-goblin-connect-pbid/install","manifest":"https://www.openagentskill.com/api/registry/manifest/data-goblin-connect-pbid"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"data-goblin-connect-pbid","name":"connect-pbid","description":"TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together.","category":"design-creative","url":"https://www.openagentskill.com/skills/data-goblin-connect-pbid","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","github_repo":"data-goblin/power-bi-agentic-development"},"suited_tasks":["GitHub automation workflows","Claude Code teams","teams that value GitHub adoption signals","Inspect repository metadata","Compare code changes","Write concise engineering summaries","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add data-goblin-connect-pbid"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"connect-pbid\" agent skill from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"connect-pbid\" as a Claude Code skill from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"connect-pbid\" from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/data-goblin-connect-pbid/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/data-goblin-connect-pbid"},"trust":{"score":65,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"894 GitHub stars","repoActivity":"894 stars, 131 forks","lastPushed":"30d since push","license":"GPL-3.0","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","install":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["design-creative","agent-skill"],"known_risks":["The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":77,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed.","The skill references external tools (pbir CLI, other skills) that are not part of this submission, which may cause confusion if those are not available.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":76,"label":"Strong"},"supply":{"track":"Coding and developer agents","scenario":"GitHub automation","maintenance":"30d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed."],"agent_contract":{"task_input":"Use connect-pbid in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 65/100 Manual review","Audit: 77/100 Needs review","Safety: 33/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"data-goblin-connect-pbid (connect-pbid)","install_command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"data-goblin-connect-pbid","task":"Use connect-pbid in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/data-goblin-connect-pbid","api":"https://www.openagentskill.com/api/agent/skills/data-goblin-connect-pbid","audit":"https://www.openagentskill.com/skills/data-goblin-connect-pbid/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=data-goblin-connect-pbid&task=Use%20connect-pbid%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20connect-pbid%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20connect-pbid%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/data-goblin-connect-pbid/install","manifest":"https://www.openagentskill.com/api/registry/manifest/data-goblin-connect-pbid"}},"supply_profile":{"track":{"slug":"coding","label":"Coding and developer agents","shortLabel":"Coding","description":"Code review, repo analysis, testing, CI, GitHub, DevOps, and developer workflow skills."},"scenario":{"label":"GitHub automation","description":"I need my agent to triage GitHub issues, review pull requests, and summarize repository changes.","useCases":[{"slug":"github-automation","title":"GitHub automation"},{"slug":"local-desktop","title":"Local desktop"},{"slug":"browser-automation","title":"Browser automation"}]},"applicableAgents":["Claude Code","Cursor","CLI","Codex"],"install":{"ready":true,"command":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":894,"starsLabel":"894","forks":131,"license":"GPL-3.0","qualityScore":76,"trustScore":65,"auditScore":77},"maintenance":{"status":"fresh","label":"30d since push","daysSincePush":30,"lastPushedAt":"2026-08-08T19:05:20+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed."]},"coverageTags":["Coding","GitHub automation","design-creative","agent-skill"]},"audit":{"audit_score":77,"risk_level":"needs_review","risk_label":"Needs review","quality_score":76,"trust_score":65,"maintenance_score":100,"security_score":70,"install_score":92,"warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","The skill relies on PowerShell and TOM/ADOMD.NET, which may not be pre-installed on all systems; setup requirements are not fully detailed in the excerpt.","The description is extremely long and includes many trigger phrases, which could cause the skill to activate in contexts where it is not needed.","The skill references external tools (pbir CLI, other skills) that are not part of this submission, which may cause confusion if those are not available.","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":20.66,"usage_score":0,"review_score":5.1,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code","Cursor"],"use_cases":[{"slug":"github-automation","title":"GitHub automation","url":"https://www.openagentskill.com/use-cases/github-automation"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"browser-automation","title":"Browser automation","url":"https://www.openagentskill.com/use-cases/browser-automation"},{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"}],"stacks":[{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"},{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"},{"slug":"frontend-product-ui","title":"Frontend and UI","url":"https://www.openagentskill.com/collections/frontend-product-ui"}],"install":"npx skills add data-goblin/power-bi-agentic-development --skill connect-pbid","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add data-goblin-connect-pbid","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"connect-pbid\" agent skill from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"connect-pbid\" as a Claude Code skill from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"connect-pbid\" from https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: TOM and ADOMD.NET guidance via PowerShell for connecting to Power BI Desktop's local Analysis Services instance. Covers model enumeration, DAX queries, metadata modification, annotations, calendar definitions, field parameters, query tracing, DAX library package management (daxlib.org), and the Desktop Bridge for reloading and screenshotting the report canvas. Automatically invoke when the user mentions \"Power BI Desktop\", \"Analysis Services port\", \"TOM\", \"ADOMD\", \"daxlib\", \"DAX library\", \"DAX UDF package\", or asks to \"connect to PBI Desktop\", \"query PBI Desktop with DAX\", \"modify PBI Desktop model\", \"add a measure to PBI\", \"capture visual queries\", \"create a field parameter\", \"validate DAX\", \"intercept DAX queries\", \"install daxlib\", \"add DAX SVG\", \"add IBCS\", \"reload the report canvas\", \"screenshot a report page\", \"Desktop Bridge\", or to work with the model and report in Power BI Desktop together. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"data-goblin-connect-pbid\",\"task\":\"Install connect-pbid\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","github_repo":"data-goblin/power-bi-agentic-development","version":"1.0.0","license":"GPL-3.0","urls":{"web":"https://www.openagentskill.com/skills/data-goblin-connect-pbid","repository":"https://github.com/data-goblin/power-bi-agentic-development/tree/main/plugins/pbi-desktop/skills/connect-pbid","api":"/api/agent/skills/data-goblin-connect-pbid","install_api":"/api/skills/data-goblin-connect-pbid/install"},"meta":{"created_at":"2026-09-05T01:41:46.726346+00:00","updated_at":"2026-09-05T01:41:46.799401+00:00","agent_friendly":true}}