Files
leo-claude-mktplace/plugins/data-platform/commands/data-schema.md
lmiranda 4ba38eb620 refactor: update internal command references in all plugin files
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>
2026-02-03 21:16:00 -05:00

1.0 KiB

/data-schema - Schema Exploration

Skills to Load

  • skills/mcp-tools-reference.md
  • skills/visual-header.md

Visual Output

Display header: DATA-PLATFORM - Schema Explorer

Usage

/data-schema [table_name | data_ref]

Workflow

  1. Determine target:

    • DataFrame: show pandas schema via describe
    • Database table: query via pg_columns
    • No argument: list all tables and DataFrames
  2. For DataFrames: Show dtypes, null counts, sample values

  3. For database tables: Show columns, types, constraints, indexes

  4. For PostGIS: Include geometry type and SRID via st_tables

Examples

/data-schema                    # List all tables and DataFrames
/data-schema customers          # Show table schema
/data-schema sales_data         # Show DataFrame schema

Required MCP Tools

  • pg_tables - List database tables
  • pg_columns - Get column info
  • pg_schemas - List schemas
  • st_tables - List PostGIS tables
  • describe - Get DataFrame info
  • list_data - List DataFrames