Babysitter Great Expectations Generator
Generates Great Expectations suites from data profiles and business rules
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/data-engineering-analytics/skills/great-expectations-generator" ~/.claude/skills/a5c-ai-babysitter-great-expectations-generator && rm -rf "$T"
manifest:
library/specializations/data-engineering-analytics/skills/great-expectations-generator/SKILL.mdsource content
Great Expectations Generator
Overview
Generates Great Expectations suites from data profiles and business rules. This skill automates the creation of comprehensive expectation suites that enforce data quality constraints.
Capabilities
- Expectation suite generation from profiling
- Custom expectation creation
- Checkpoint configuration
- Data docs generation
- Validation result analysis
- Expectation parameterization
- Suite versioning recommendations
- Integration with dbt and Airflow
Input Schema
{ "dataProfile": "object", "businessRules": ["object"], "existingSuite": "object", "strictness": "strict|moderate|lenient" }
Output Schema
{ "expectationSuite": "object", "checkpointConfig": "object", "documentation": "string", "coverageReport": { "columnsWithExpectations": "number", "totalExpectations": "number" } }
Target Processes
- Data Quality Framework
- ETL/ELT Pipeline
- dbt Project Setup
Usage Guidelines
- Provide data profile results from profiling analysis
- Define business rules that should be enforced
- Specify strictness level based on use case requirements
- Include existing suite if extending an existing configuration
Best Practices
- Start with moderate strictness and adjust based on validation results
- Include both column-level and table-level expectations
- Document business rationale for each custom expectation
- Version expectation suites alongside data transformations
- Configure appropriate data docs for stakeholder visibility