01-projects / data-quality-framework

portable skills bundle

Sun Apr 12 2026 20:00:00 GMT-0400 (Eastern Daylight Time) ·project ·status: active

Data Quality Framework — Portable Skills Bundle

Everything needed to deploy the Scope × Basis testing framework on a client project. Copy these files into any Claude Code project’s .claude/skills/ directory.

What’s in the bundle

1. Testing Matrix Template

Source: ~/rdco-vault/01-projects/data-quality-framework/testing-matrix-template.md

The framework document itself — 3×6 matrix (Column/Row/Aggregate × Absolute/Relative:Source/Relative:Production/Relative:Recon/Temporal/Human), two populated examples (Salesforce closed-won, ARR waterfall), blank template, SQL patterns reference, SoR identification, and severity tiers (Stop/Pause/Go).

2. /audit-model skill

Source: ~/.claude/skills/audit-model/SKILL.md

Interactive skill with two modes:

3. /generate-tests skill

Source: ~/.claude/skills/generate-tests/SKILL.md

Takes a filled matrix and outputs:

How to deploy on a client project

# From the client project root
mkdir -p .claude/skills/audit-model
mkdir -p .claude/skills/generate-tests

# Copy skills
cp ~/.claude/skills/audit-model/SKILL.md .claude/skills/audit-model/
cp ~/.claude/skills/generate-tests/SKILL.md .claude/skills/generate-tests/

# Copy the framework template to the project docs
cp ~/rdco-vault/01-projects/data-quality-framework/testing-matrix-template.md docs/data-quality-framework.md

Then in the project’s CLAUDE.md, add:

## Data Quality
When writing or reviewing tests, reference the framework at `docs/data-quality-framework.md`.
Use `/audit-model plan` to build test plans for new models.
Use `/audit-model audit` to check coverage gaps on existing models.

Usage on Progress (MG)

For the Progress project specifically:

  1. Start with /audit-model audit on the most critical model (probably the opportunity pipeline or ARR waterfall equivalent)
  2. The audit will map existing dbt tests to the matrix and show gaps
  3. Use /audit-model plan for any new models in the sprint
  4. The severity tiers (Stop/Pause/Go) map to dbt test severity: error for Stop, warn for Pause

Differences from cc-wrapped /ac and /review-build

Featurecc-wrapped /acRDCO /audit-model
StructureFree-form acceptance criteria3×6 matrix — systematic coverage
InteractionDocument generationInteractive interview — extracts tacit knowledge
OutputAcceptance criteria docFilled test matrix + generated test code
Coverage trackingManualAutomatic gap detection with severity
SeverityNot includedStop/Pause/Go with basis-aware defaults
SoR identificationNot includedPrerequisite step before Relative checks