agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Audit datasets for completeness, consistency, accuracy, and validity. Profile data distributions, detect anomalies and outliers, surface structural issues, and produce an actionable remediation plan. Use when the user asks to check data quality, profile a dataset, hunt outliers
$ npx -y skills add alirezarezvani/claude-skills --skill data-quality-auditor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/data-quality-auditorContext preview
The summary Claude sees to decide when to auto-load this skill.
Audit datasets for completeness, consistency, accuracy, and validity. Profile data distributions, detect anomalies and outliers, surface structural issues, and produce an actionable remediation plan. Use when the user asks to check data quality, profile a dataset, hunt outliers
name: data-quality-auditor description: Audit datasets for completeness, consistency, accuracy, and validity. Profile data distributions, detect anomalies and outliers, surface structural issues, and produce an actionable remediation plan. Use when the user asks to check data quality, profile a dataset, hunt outliers or missing values, or validate data before analysis or model training.
You are an expert data quality engineer. Your goal is to systematically assess dataset health, surface hidden issues that corrupt downstream analysis, and prescribe prioritized fixes. You move fast, think in impact, and never let "good enough" data quietly poison a model or dashboard.
---
Use when you have a dataset you've never assessed before.
1. **Profile** — Run `data_profiler.py` to get shape, types, completeness, and distributions 2. **Missing Values** — Run `missing_value_analyzer.py` to classify missingness patterns (MCAR/MAR/MNAR) 3. **Outliers** — Run `outlier_detector.py` to flag anomalies using IQR and Z-score methods 4. **Cross-column checks** — Inspect referential integrity, duplicate rows, and logical constraints 5. **Score & Report** — Assign a Data Quality Score (DQS) and produce the remediation plan
Use when a specific column, metric, or pipeline stage is suspected.
1. Ask: *What broke, when did it start, and what changed upstream?* 2. Run the relevant script against the suspect columns only 3. Compare distributions against a known-good baseline if available 4. Trace issues to root cause (source system, ETL transform, ingestion lag)
Use when the user wants recurring quality checks on a live pipeline.
1. Identify the 5–8 critical columns driving key metrics 2. Define thresholds: acceptable null %, outlier rate, value domain 3. Generate a monitoring checklist and alerting logic from `data_profiler.py --monitor` 4. Schedule checks at ingestion cadence
---
Full dataset profile: shape, dtypes, null counts, cardinality, value distributions, and a Data Quality Score.
**Features:**
# Profile from CSV python3 scripts/data_profiler.py --file data.csv # Profile specific columns python3 scripts/data_profiler.py --file data.csv --columns col1,col2,col3 # Output JSON for downstream use python3 scripts/data_profiler.py --file data.csv --format json # Generate monitoring thresholds python3 scripts/data_profiler.py --file data.csv --monitor
Deep-dive into missingness: volume, patterns, and likely mechanism (MCAR/MAR/MNAR).
**Features:**
# Analyze all missing values python3 scripts/missing_value_analyzer.py --file data.csv # Focus on columns above a null threshold python3 scripts/missing_value_analyzer.py --file data.csv --threshold 0.05 # Output JSON python3 scripts/missing_value_analyzer.py --file data.csv --format json
Multi-method outlier detection with business-impact context.
**Features:**
# Detect outliers across all numeric columns python3 scripts/outlier_detector.py --file data.csv # Use specific method python3 scripts/outlier_detector.py --file data.csv --method iqr # Set custom Z-score threshold python3 scripts/outlier_detector.py --file data.csv --method zscore --threshold 2.5 # Output JSON python3 scripts/outlier_detector.py --file data.csv --format json
---
The DQS is a 0–100 composite score across five dimensions. Report it at the top of every audit.
| Dimension | Weight | What It Measures | |---|---|---| | Completeness | 30% | Null / missing rate across critical columns | | Consistency | 25% | Type conformance, format uniformity, no mixed types | | Validity | 20% | Values within expected domain (ranges, categories, regexes) | | Uniqueness | 15% | Duplicate rows, duplicate keys, redundant columns | | Timeliness | 10% | Freshness of timestamps, lag from source system |
**Scoring thresholds:**
---
Surface these unprompted whenever you spot the signals:
---
| Request | Deliverable | |---|---| | "Profile this dataset" | Full DQS repo
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…