Use when a Bruin quality check fails or starts warning unexpectedly.
Scanned 8/31/2026
Install to Claude Code
npx -y skills add bruin-data/bruin --skill quality-check-investigate --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quality Check Investigate?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/bruin-data-quality-check-investigate)More formats (shields.io, HTML) on the badges page.
---
name: quality-check-investigate
description: Use when a Bruin quality check fails or starts warning unexpectedly.
connections:
- bruin
- github
---
# Quality Check Investigate
## When to Use
Use this skill when a Bruin quality check fails or starts warning unexpectedly.
## Inputs
- Affected asset and check name.
- Check SQL or check definition.
- Failure output and sample rows, if available.
## Operating Context
- These starter skills can be used by Bruin Cloud agents, local agents, and external assistants connected to Bruin Cloud.
- In Bruin Cloud, use Cloud CLI access when the agent has it enabled. Use the `bruin cloud` CLI when the assistant has shell access and a configured API key or `.bruin.yml`; use Bruin Cloud MCP only when the assistant is configured for MCP tool calls or does not have direct CLI access. If using the CLI, inspect failures with `bruin cloud runs diagnose --project-id <project-id> --pipeline <pipeline-name> --latest`, fetch an asset instance with `bruin cloud instances get --project-id <project-id> --run-id <run-id> --asset <asset-name>`, and fetch logs with `bruin cloud instances logs --project-id <project-id> --run-id <run-id> --asset <asset-name>`.
- In local development, inspect terminal output and the local `logs/` folder, especially `logs/runs`, query logs, and export logs when they exist. Use `bruin run --only checks <path>` or a limited `bruin query` where appropriate.
- If investigation or fix verification requires running an asset or pipeline, prefer a dev or shadow environment. If none exists, ask whether to run in production or create temporary copies of the affected tables to reproduce and test the issue.
- For other agent runtimes or orchestrators, customize this skill with the correct check-result source, log source, and action mechanism before using it.
## Context to Gather
- Inspect the asset definition and check configuration.
- Determine whether the check tests completeness, uniqueness, freshness, accepted values, ranges, or custom SQL.
- Compare recent upstream changes with the first failing run.
- Sample failing rows only when it is safe and allowed by repository policy.
- Use Bruin MCP docs tools or `bruin <command> --help` to confirm the current command syntax before running Cloud or local CLI commands.
## Lineage Investigation
- Find one specific failing example first, then keep every upstream query filtered to that row, key, partition, or time window. Use the full failing set only after the specific example is understood.
- If the data has bronze, silver, gold, or other tiers, start at the asset where the quality check fails and trace upstream through lineage one asset at a time.
- Query the filtered example in each upstream asset until you find the first asset where the invalid value, missing row, duplicate, stale timestamp, or unexpected aggregate appears.
- Once the first bad asset is identified, read its SQL query or Python script and isolate the specific calculation, join, filter, cast, window function, incremental condition, or Python function that likely caused the failure.
- If the user has allowed fixes, change only that specific logic, then run the smallest asset-level or check-level validation in dev or shadow first. Recheck the same failing example after the fix; only after that passes, run the full quality check.
## Decision Tree
- If the check definition is wrong, identify the intended rule and affected files.
- If the data violates a valid rule, locate the upstream source or transformation that introduced it.
- If the threshold is outdated, document why the threshold changed and who should approve it.
- If the check is flaky, inspect nondeterministic ordering, time windows, and incremental logic.
## Actions
Define repository-specific actions here. Until customized, this skill must report findings and stop before changing thresholds, deleting rows, or modifying data.
## Verification
- Re-run the failed quality check or the smallest equivalent query.
- Re-run `bruin validate <path>` if files were changed.
- Confirm whether failing row counts and examples match the diagnosis.
## Output
Return:
- Failed rule.
- Evidence and sample pattern.
- Root cause or strongest hypothesis.
- Recommended fix.
- Verification commands and results.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!