Trace downstream data lineage and impact analysis. Use when the user asks what depends on this data, what breaks if something changes, downstream dependencies, or needs to assess change risk before modifying a table or DAG.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Trace downstream data lineage and impact analysis. Use when the user asks what depends on this data, what breaks if something changes, downstream dependencies, or needs to assess change risk before modifying a table or DAG.
Downstream Lineage: Impacts
Answer the critical question: "What breaks if I change this?"
Use this BEFORE making changes to understand the blast radius.
Impact Analysis
Step 1: Identify Direct Consumers
Find everything that reads from this target:
For Tables:
Search DAG source code: Look for DAGs that SELECT from this table
Use af dags list to get all DAGs
Use af dags source <dag_id> to search for table references
Look for: FROM target_table, JOIN target_table
Check for dependent views:
-- SnowflakeSELECT*FROM information_schema.view_table_usage
WHERE table_name ='<target_table>'-- Or check SHOW VIEWS and search definitions
Look for BI tool connections:
Dashboards often query tables directly
Check for common BI patterns in table naming (rpt_, dashboard_)
For DAGs:
Check what the DAG produces: Use af dags source <dag_id> to find output tables