fabric-lakehouse
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: fabric-lakehouse description: 'Use this skill to get context about Fabric Lakehouse and its features for software systems and AI-powered functions. It offers descriptions of Lakehouse data components, organization with schemas and shortcuts, access control, and code examples.
Malicious tool definition detected
Tool: references/getdata.md Description: ### Data Factory Integration Microsoft Fabric includes Data Factory for ETL/ELT orchestration: - **180+ connectors** for data sources - **Copy activity** for data movement - **Dataflow Gen2** for transformations - **Notebook activity** for Spark processing - **Scheduling** and triggers ### Pipeline Activities | Activity | Description | |----------|-------------| | Copy Data | Move data between sources and Lakehouse | | Notebook | Execute Spark notebooks |
Malicious tool definition detected
Tool: references/pyspark.md Description: ### Spark Configuration (Best Practices) ```python # Enable Fabric optimizations spark.conf.set("spark.sql.parquet.vorder.enabled", "true") spark.conf.set("spark.microsoft.delta.optimizeWrite.enabled", "true") ``` ### Reading Data ```python # Read CSV file df = spark.read.format("csv") \ .option("header", "true") \ .option("inferSchema", "true") \ .load("Files/bronze/data.csv") # Read JSON file df = spark.read.format("json").load("Files/bronze/data.json")