daemon-blockint-tech/agentic-enteprises-skill

data-scrubbing

Guides cleaning and standardizing tabular datasets before analysis, modeling, or reporting—profiling, quality rules, missing values, duplicates, outliers, type coercion, encoding fixes, record linkage, deduplication, high-level PII handling (not legal advice), actuarial/insurance field scrubbing, reproducible scrub pipelines, validation checks, and sign-off. Distinct from warehouse ETL or statistical modeling. Use when the user asks for "data scrubbing", "clean this dataset", "scrub the data", …

First seen May 20, 2026

Installation

$ npx skills add daemon-blockint-tech/agentic-enteprises-skill --skill data-scrubbing

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from daemon-blockint-tech/agentic-enteprises-skill · top by installs.

npx skills add daemon-blockint-tech/agentic-enteprises-skill

Browse all from daemon-blockint-tech/agentic-enteprises-skill

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 8
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,676 B
  • docs SUMMARY.md 909 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 32 installs

SKILL.md

Data Scrubbing

When to Use

  • Profile a table or file and define data-quality rules before analysis or modeling
  • Clean, standardize, dedupe, or link records in CSV, Parquet, SQL extracts, or notebook pipelines
  • Treat missing values, duplicates, outliers, types, encodings, and column naming consistently
  • Document a reproducible scrub pipeline with validation checks and sign-off criteria
  • Scrub actuarial/insurance fields (policy keys, claims triangles, exposure bases) for downstream reserving or pricing prep
  • Flag or redact PII at a technical level before sharing extracts (coordinate with compliance for legal requirements)

When NOT to Use

  • Star/snowflake modeling, warehouse ETL/ELT, CDC, or platform ingestion design → data-warehouse-engineer
  • Predictive modeling, A/B tests, causal inference, feature engineering for ML, or MLOps → data-scientist
  • Loss development, IBNR, pricing models, or appointed-actuary sign-off → actuary
  • Assumption sets, governance memos, or model assumption workshops → assumption-setting
  • SOC 2 / ISO control mapping, audit evidence automation, or privacy legal program → compliance-engineer
  • Cloud cost allocation, FinOps dashboards, or unit economics only → finops-analyst
  • Spreadsheet formula integrity or cell-level model audit without a scrub pipeline → audit-xls (if available)

Related skills

Need Skill
Dimensional modeling, ETL/ELT, warehouse SQL performance data-warehouse-engineer
ML modeling, experiments, production model monitoring data-scientist
Reserving, triangles, IBNR, pricing actuarial methods actuary
Assumption documentation and governance assumption-setting
Technical compliance controls and audit evidence compliance-engineer
Cloud spend attribution and cost optimization finops-analyst
Enterprise data governance and catalog design data-architect
Analytics engineering (dbt layers, mart tests) analytics-data-engineer

Core Workflows

1. Intake and scope

  1. Identify source(s), grain, primary keys, and downstream consumer (report, model, regulatory filing)
  2. Record business definitions for critical fields and acceptable quality thresholds
  3. Choose deliverables: scrubbed dataset, rule catalog, pipeline code, validation report, sign-off checklist
  4. Confirm what must not change (audit trail, raw landing zone immutability)

See references/datascrubbingscopeandworkflow.md.

2. Profile and define quality rules

  1. Run structural profile: row/column counts, types, null rates, cardinality, min/max, patterns
  2. Classify columns: identifier, measure, dimension, date, free text, PII-sensitive
  3. Draft rules: uniqueness, referential checks, range/domain, regex, cross-field logic, volume gates
  4. Prioritize rules by severity (blocker vs warning) and tie each to a remediation action

See references/profilingandquality_rules.md.

3. Remediate missing values, duplicates, outliers

  1. Apply documented strategies per column (impute, flag, drop, split, business rule)
  2. Deduplicate at correct grain; preserve lineage for merged records
  3. Treat outliers with explicit policy (cap, winsorize, exclude, investigate)—never silent deletion
  4. Re-run profile deltas after each major remediation pass

See references/missingduplicatesand_outliers.md.

4. Standardize and coerce types

  1. Normalize names, units, currencies, time zones, and categorical vocabularies
  2. Coerce types with explicit parse rules and quarantine rows that fail
  3. Fix encoding (UTF-8), delimiters, locale-specific decimals, and boolean sentinels
  4. Version mapping tables (code → label) alongside the pipeline

See references/standardizationandtype_coercion.md.

5. PII and governance (technical, not legal advice)

  1. Inventory sensitive columns; classify using organizational taxonomy when provided
  2. Apply minimization: drop, hash/tokenize, mask, or aggregate per approved pattern
  3. Log scrub actions; restrict outputs; never commit secrets or production PII to public repos
  4. Escalate legal basis, retention, and cross-border rules to compliance-engineer / counsel

See references/piiredactionand_governance.md.

6. Actuarial / insurance scrubbing

  1. Validate policy/claim keys, effective/accident dates, and triangle orientation
  2. Align exposure bases and earned premium logic with documented definitions
  3. Scrub large losses, sublimits, and reinsurance fields without distorting triangle structure
  4. Hand off reserving/pricing math to actuary after data is signed off for modeling

See references/actuarialinsurancedata_scrubbing.md.

7. Validate, document, sign off

  1. Execute rule suite on scrubbed output; compare to thresholds and prior period if applicable
  2. Produce validation report: pass/fail counts, quarantine volume, top failure reasons
  3. Package reproducible pipeline (script/SQL/notebook), config, and rule catalog with version hash
  4. Obtain owner sign-off before promoting to modeling or reporting consumers

See references/datascrubbingscopeandworkflow.md (sign-off section).

When to load references

Topic Reference
Scope, workflow, sign-off references/datascrubbingscopeandworkflow.md
Profiling and quality rules references/profilingandquality_rules.md
Missing, duplicates, outliers references/missingduplicatesand_outliers.md
Standardization and types references/standardizationandtype_coercion.md
PII and governance references/piiredactionand_governance.md
Actuarial / insurance data references/actuarialinsurancedata_scrubbing.md