From data
Profiles a table or uploaded file to understand its shape, quality, and patterns before analysis. Returns row/column metrics, per-column statistics, null/duplicate rates, and flagged data quality issues.
How this command is triggered — by the user, by Claude, or both
Slash command
/data:explore-data <table or file>The summary Claude sees in its command listing — used to decide when to auto-load this command
# /explore-data - Profile and Explore a Dataset > If you see unfamiliar placeholders or need to check which tools are connected, see [CONNECTORS.md](../CONNECTORS.md). Generate a comprehensive data profile for a table or uploaded file. Understand its shape, quality, and patterns before diving into analysis. ## Usage ## Workflow ### 1. Access the Data **If a data warehouse MCP server is connected:** 1. Resolve the table name (handle schema prefixes, suggest matches if ambiguous) 2. Query table metadata: column names, types, descriptions if available 3. Run profiling queries against ...
If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md.
Generate a comprehensive data profile for a table or uploaded file. Understand its shape, quality, and patterns before diving into analysis.
/explore-data <table_name or file>
If a data warehouse MCP server is connected:
If a file is provided (CSV, Excel, Parquet, JSON):
If neither:
Run the following profiling checks:
Table-level metrics:
Column-level metrics for each column:
Present the profile as a clean summary table, grouped by column type (dimensions, metrics, dates, IDs).
Flag potential problems:
Based on the column profile, recommend:
Suggest 3-5 specific analyses the user could run next:
## Data Profile: [table_name]
### Overview
- Rows: 2,340,891
- Columns: 23 (8 dimensions, 6 metrics, 4 dates, 5 IDs)
- Date range: 2021-03-15 to 2024-01-22
### Column Details
[summary table]
### Data Quality Issues
[flagged issues with severity]
### Recommended Explorations
[numbered list of suggested follow-up analyses]
npx claudepluginhub p/icurtis89-data-data/profileProfiles dataset from CSV/Parquet/JSON file or database table, generating Markdown report with summary stats, column profiles, detailed statistics, quality flags, and recommendations.
/analyze-datasetGenerates a data quality report from a dataset description, flagging outliers, biases, missing values, and class imbalance, and suggests preprocessing transforms.
/portaljs-check-data-qualityAudits a CSV or TSV file for common data quality issues — nulls, duplicates, numeric anomalies, date field quality, and mixed types. Outputs a structured JSON report with status, findings, and recommendations.
/analyticsAnalyzes data to extract insights, generate visualizations, or perform analytics based on a question and optional approach like SQL or visualization.