bauplan-debug-and-fix-pipeline

bauplan-debug-and-fix-pipeline is a skill for Claude Code from BauplanLabs/bauplan-skills. It costs 41 tokens per session (4,672 once invoked), scanned A, original, MIT.

A guided workflow for diagnosing and repairing a failed Bauplan data pipeline job, with evidence gathered before changes are made.

In plain words
What is it for?
It helps investigate failed jobs using a job ID, branch, time window, or project path, apply a minimal fix, and rerun the pipeline.
Why use it?
It prevents guessing at fixes by identifying the exact data state and root cause that produced the failure, then checking the repair against that state.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the bauplan plugin — 7 skills shipped together

Good fit It helps investigate failed jobs using a job ID, branch, time window, or project path, apply a minimal fix, and rerun the pipeline.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add BauplanLabs/bauplan-skills --skill bauplan-debug-and-fix-pipeline
Clone the repo
git clone --depth 1 https://github.com/BauplanLabs/bauplan-skills

Made for: Claude Code.

Or install bauplan, the plugin that ships this one along with the rest of its 7 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bauplan-debug-and-fix-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline/github.svg)](https://agentmods.dev/skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline)
Your own site
<a href="https://agentmods.dev/skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline"><img src="https://agentmods.dev/badge/skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bauplan-debug-and-fix-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline"><img src="https://agentmods.dev/badge/skills/bauplanlabs/bauplan-skills/bauplan-debug-and-fix-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,672 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Memory Poisoning · line 136
    Skill manipulates agent memory, state, or stored context. Memory corruption can alter personality, override safety rules, or cause unpredictable behavior.
    Fix: Protect agent memory and state from modification by untrusted content. Use read-only memory for critical instructions and validate all state changes.
  • medium Excessive Agency · line 181
    Skill allows unbounded resource consumption (API calls, storage, compute). Without rate limits or quotas, a compromised or misbehaving agent can cause denial-of-service or cost overruns.
    Fix: Set explicit rate limits, timeouts, and resource quotas for API calls, file operations, and compute. Implement circuit breakers for runaway loops.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.04672
Opus 5 $0.00020 $0.02336
Sonnet 5 $0.00008 $0.00934
Haiku 4.5 $0.00004 $0.00467

Measured today against content hash b9c556cf82cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

bauplan-debug-and-fix-pipeline scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/bauplan/skills/bauplan-debug-and-fix-pipeline/SKILL.md · 418 lines

How it starts

The opening of the file, as written. The whole thing — 418 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Debug and Fix Pipeline

What This Skill Does

A Bauplan pipeline job has failed. This skill walks through a structured diagnosis and repair: pin the exact state that caused the failure, collect evidence, find the root cause, apply a minimal fix, and confirm the fix works.

The core principle is evidence first, changes second — never guess at a fix before understanding what broke and why.

When to Use This Skill

Use this when:

  • A bauplan run has failed and you need to understand why
  • You have a failed job ID, a branch name with a broken run, or a time window to search for failures
  • You want to fix the pipeline and verify the fix against the exact data state that caused the failure

What You'll Need

At least one of:

  • A Bauplan job ID (preferred)
  • A Bauplan branch name where the failure happened
  • A time window to search for failed jobs
  • A local path to the pipeline project directory

If none are provided, the skill will try to infer from context. If ambiguous, it will ask.

Workflow at a Glance

Step 0  Setup
        Confirm Bauplan connectivity, check for Git, create output directories.

Step 1  Pin the failing state
        Extract the branch, commit hash, and error message from the failed job.
        → Write job report

Step 2  Create a debug branch
        Branch from the exact failing ref so you see the same data the job saw.

Step 3  Collect evidence and find root cause
        Inspect schemas, sample data, and trace upstream until you find
        the model whose inputs are clean but whose output is broken.
        → Write data snapshot reports as you go

Step 4  Apply a minimal fix
        Create a Git debug branch, make the smallest change that addresses
        the root cause. One logical change per commit.

Step 5  Rerun and verify
        Re-execute the pipeline on the debug branch and confirm the fix works.
        → Write summary report

The skill produces three types of reports in debug/: a job report, data snapshots, and a final summary. These are the deliverables — they document what happened, what was found, and what was changed.

Read the full file on GitHub · 418 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed b9c556cf82cc
  2. yesterday Changed · +20 lines f63ba977cd6a
  3. 11d ago First seen · 398 lines · 41 tokens per session scan A 80fe3bab4045

Subscribe to this mod's changes

bauplan-debug-and-fix-pipeline is a skill published in the GitHub repository BauplanLabs/bauplan-skills (16 stars, last pushed today), licensed MIT. It adds 41 tokens to every session and 4,672 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens