powerbi-report-management
Pass
Audited by Gen Agent Trust Hub on Jul 10, 2026
Risk Level: SAFE
Full Analysis
- Official API Interaction: The skill uses the
az restcommand to interact withapi.fabric.microsoft.com. This is the standard and recommended method for managing Microsoft Fabric resources via CLI, ensuring that operations are performed within the user's authenticated Azure session. - File System Operations: The skill includes patterns for reading, creating, and organizing local Power BI Report (PBIR) definition files (e.g., using
mkdir,find, andcat). These operations are necessary for the skill's primary function of transporting report definitions between the local environment and the Fabric service. - Data Encoding and Decoding: The skill employs the
base64utility to encode and decode PBIR file payloads. This is a technical requirement for the Fabric REST API, which expects file parts to be transmitted as Base64-encoded strings within JSON bodies. - Tooling Requirements: The skill relies on standard, well-known CLI tools such as
az(Azure CLI) andjq(JSON processor). These tools are common in developer environments and are used here for structured data manipulation and API communication. - Clear Boundaries and Delegation: The skill documentation clearly defines its scope (transport and management) and delegates content authoring to a specialized companion skill. This modular approach is a best practice that limits the complexity and potential risk profile of each individual skill.
Audit Metadata