Edit an output-port ODCS file under models/outputports/v /, run the contract test against the live data, and classify any failures as breaking or non-breaking changes — with suggested fixes. Only edits output-port contracts (the spec this data product commits to); input-port contracts under models/inputports/ are…
Run the Data Contract CLI (datacontract test) against ODCS contracts in the project to verify the live data still conforms — schema, quality rules, and freshness. Handles two kinds of contracts with different semantics: output-port contracts under models/outputports//.odcs.yaml (tested against this project's warehouse…
Bootstrap a brand-new dbt data product from scratch — create dbtproject.yml, the Entropy Data model layout (inputports, staging, intermediate, outputports/v1), README with uv install instructions, .gitignore, and a profiles.yml.example for the chosen warehouse. After scaffolding, hands off to the entropy-data-sync…
Build out the transformation layers (staging/, intermediate/) of a data product and run dbt against them, following project-wide conventions adapted from dbt's best practices (v1.12). Trigger when the user asks to "add a staging model", "build out the staging layer", "create an intermediate model", "refactor this…
Extract a small sample of rows from a dbt output port using a non-production profile, scrub anything classified as PII or sensitive in the data contract, and upload the scrubbed sample to Entropy Data via the entropy-data CLI. Trigger when the user asks to "upload example data", "publish sample rows for the data…
Given an Entropy Data data product URL or id, fetch its data contracts (output port ODCS files written next to the SQL under models/outputports/v /, input port ODCS files cached next to their dbt source under models/inputports/), translate the schema into dbt models, and ensure the project has the publishing layer…
Audit a dbt project against the Entropy Data reference layout and add anything missing — Open Data Product Specification (ODPS), Open Data Contract Standard (ODCS), OpenLineage transport config, output-port model layout, and the GitHub Actions publish workflow. Trigger when the user asks to integrate a dbt project…
List the teams configured in Entropy Data so the user can pick one as the owner (team.name in ODPS) of a data product. Useful when bootstrapping a new data product, integrating an existing dbt project, or just exploring who owns what. Trigger when the user asks "what teams are there", "who can own this data product"…