Updated: - projman: 4 commands + 4 skills + integration snippet - git-flow: 4 commands + 3 skills + integration snippet - pr-review: 1 command cross-reference - cmdb-assistant: 1 command + 1 skill - data-platform: 8 commands + integration snippet - viz-platform: 11 commands + integration snippet - contract-validator: 1 command + 1 skill + 1 agent Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
794 B
Markdown
37 lines
794 B
Markdown
# /data-lineage - Data Lineage Visualization
|
|
|
|
## Skills to Load
|
|
- skills/lineage-analysis.md
|
|
- skills/mcp-tools-reference.md
|
|
- skills/visual-header.md
|
|
|
|
## Visual Output
|
|
|
|
Display header: `DATA-PLATFORM - Lineage`
|
|
|
|
## Usage
|
|
|
|
```
|
|
/data-lineage <model_name> [--depth N]
|
|
```
|
|
|
|
## Workflow
|
|
|
|
1. **Get lineage data**: Use `dbt_lineage` for dbt models
|
|
2. **Build lineage graph**: Identify upstream sources and downstream consumers
|
|
3. **Visualize**: ASCII tree with depth levels (see `skills/lineage-analysis.md`)
|
|
4. **Report**: Full dependency chain and refresh implications
|
|
|
|
## Examples
|
|
|
|
```
|
|
/data-lineage dim_customers
|
|
/data-lineage fct_orders --depth 3
|
|
```
|
|
|
|
## Required MCP Tools
|
|
|
|
- `dbt_lineage` - Get model dependencies
|
|
- `dbt_ls` - List dbt resources
|
|
- `dbt_docs_generate` - Generate full manifest
|