Use when working with Buildkite CI - checking status, investigating failures, and reproducing issues locally. Provides workflows for monitoring builds, progressive failure investigation, and local reproduction strategies. Use when tempted to use GitHub tools instead of Buildkite-native tools, or when a Buildkite tool fails and you want to fall back to familiar alternatives.
/plugin marketplace add technicalpickles/pickled-claude-plugins/plugin install ci-cd-tools@technicalpickles-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/annotation-patterns.mdreferences/buildkite-environment-variables.mdreferences/buildkite-states.mdreferences/tool-capabilities.mdreferences/troubleshooting.mdreferences/url-parsing.mdscripts/find-commit-builds.jsscripts/get-build-logs.jsscripts/parse-buildkite-url.jsscripts/wait-for-build.jstool-routes.yamlThis skill provides workflows and tools for working with Buildkite CI builds. It covers checking status, investigating failures, and reproducing issues locally rather than creating or configuring pipelines. Use this skill when working with Buildkite builds, especially for PR workflows, post-push monitoring, failure investigation, and local reproduction.
Use this skill when:
CRITICAL: Always use Buildkite-native tools. Never fall back to GitHub tools (gh pr view, GitHub API, etc.) - they only show summaries and lose critical information (annotations, logs, real-time updates, state distinctions).
Use tools in this priority order:
Reliability: Direct Buildkite API access, always available Capabilities: All operations (list, get, wait, unblock) When: Default choice for ALL workflows
Available MCP tools:
buildkite:get_build - Get detailed build informationbuildkite:list_builds - List builds for a pipelinebuildkite:list_annotations - Get annotations for a buildbuildkite:get_pipeline - Get pipeline configurationbuildkite:list_pipelines - List all pipelines in an orgbuildkite:wait_for_build - Wait for a build to complete (PREFERRED for monitoring)buildkite:get_logs - Retrieve job logs (CRITICAL for debugging failures)buildkite:get_logs_info - Get log metadatabuildkite:list_artifacts - List build artifactsPurpose: Human-readable terminal output Limitation: External dependency, requires npm/npx When: Interactive terminal work when MCP output is too verbose
Critical Limitation: bktide CANNOT retrieve job logs. It only displays build summaries and job lists. For log retrieval, always use MCP tools.
Common commands:
npx bktide pipelines <org> # List pipelines
npx bktide builds <org>/<pipeline> # List builds
npx bktide build <org>/<pipeline>#<build> # Get build details
npx bktide annotations <org>/<pipeline>#<build> # Show annotations
Purpose: Pre-built workflows combining multiple tool calls Limitation: External dependencies (bktide, specific versions) When: Convenience wrappers only - use MCP tools if scripts fail
This skill includes scripts for common workflows:
scripts/wait-for-build.js - Background monitoring script that polls until build completionscripts/find-commit-builds.js - Find builds matching a specific commit SHADifferent tools have different capabilities. Understanding these limitations prevents wasted effort.
Key Capabilities:
| Capability | MCP Tools | bktide | Scripts |
|---|---|---|---|
| List builds | ✅ | ✅ | ✅ |
| Get build details | ✅ | ✅ | ✅ |
| Get annotations | ✅ | ✅ | ❌ |
| Retrieve logs | ✅ | ❌ | ✅ |
| Wait for build | ✅ | ❌ | ✅ |
| Unblock jobs | ✅ | ❌ | ❌ |
Most Important: Only MCP tools and scripts can retrieve job logs. bktide cannot.
For complete capability details and examples, see references/tool-capabilities.md.
If wait-for-build.js script fails:
buildkite:wait_for_build MCP tool instead (preferred)buildkite:get_build MCP tool in a polling loopgh pr view or GitHub toolsIf bktide fails:
If MCP tools fail:
Critical: One tool failing does NOT mean the entire skill is invalid. Move up the hierarchy, don't abandon Buildkite tools.
When a user provides a Buildkite URL for a failing build, follow this workflow to investigate.
Example URL formats:
https://buildkite.com/org/pipeline/builds/12345https://buildkite.com/org/pipeline/builds/12345/steps/canvas?sid=019a5f...Step 1: Extract build identifiers from URL
Parse the URL to extract:
Ignore the sid query parameter - it's a step ID, not needed for initial investigation.
Step 2: Get build overview
mcp__MCPProxy__call_tool('buildkite:get_build', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
detail_level: 'summary',
});
Check the overall build state: passed, failed, running, blocked, canceled.
Step 3: Identify failed jobs
If build state is failed, get detailed job information:
mcp__MCPProxy__call_tool('buildkite:get_build', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
detail_level: 'detailed',
job_state: 'failed',
});
This returns only jobs with state: "failed" (not "broken" - see state reference).
Step 4: Retrieve logs for failed jobs
For each failed job, extract its uuid field and retrieve logs. See "Retrieving Job Logs" workflow below for detailed instructions.
Step 5: Analyze error output
Look for:
Step 6: Reproduce locally
Follow the "Reproducing Build Failures Locally" workflow below to:
See the dedicated workflow section for detailed steps.
CRITICAL: This is the most important capability. Without logs, you cannot debug failures.
Once you've identified a failed job, retrieve its logs to see the actual error.
Prerequisites:
Important: Job UUIDs ≠ Step IDs. URLs contain step IDs (sid=019a5f...), but MCP tools need job UUIDs from the build details response.
Step 1: Get the job UUID
If you have a job label (e.g., "ste rspec"), use get_build with detail_level: "detailed":
mcp__MCPProxy__call_tool('buildkite:get_build', {
org_slug: 'gusto',
pipeline_slug: 'payroll-building-blocks',
build_number: '29627',
detail_level: 'detailed',
job_state: 'failed',
});
In the response, find the job by matching the label field. Extract its uuid field (format: 019a5f20-2d30-4c67-9edd-...).
Step 2: Retrieve logs using the job UUID
Use the MCP tool to get logs:
mcp__MCPProxy__call_tool('buildkite:get_logs', {
org_slug: 'gusto',
pipeline_slug: 'payroll-building-blocks',
build_number: '29627',
job_id: '<job-uuid>',
});
The response contains the log output from the job execution.
Common Issues:
"job not found" error: You likely provided a step ID instead of a job UUID. Step IDs come from URLs (sid=019a5f...). Job UUIDs come from get_build API responses. Solution: Call get_build with detail_level: "detailed" to find the correct job UUID.
Empty logs: The job may not have started yet, or logs may not be available yet. Check the job's state field first - it should be in a terminal state (passed, failed, canceled).
Multiple jobs with same label: Some pipelines parallelize jobs with the same label (e.g., "rspec (1/10)", "rspec (2/10)"). Filter by the full label string to find the specific failed job.
Fallback Strategy:
If MCP tools fail (e.g., connection issues, permissions), you can:
Construct the log URL manually and view in browser:
https://buildkite.com/{org}/{pipeline}/builds/{build}/jobs/{job-uuid}
Use the bundled script (if available):
~/.claude/skills/buildkite-status/scripts/get-build-logs.js <org> <pipeline> <build> <job-uuid>
Why bktide Cannot Help:
The bktide CLI does NOT have a logs command. It can show build summaries and job lists, but cannot retrieve log content. Always use MCP tools for log retrieval.
See references/tool-capabilities.md for complete tool capability matrix.
This is the most common workflow when working on a branch:
Step 1: Identify the pipeline and branch
Determine which pipeline(s) run on PRs for this repository. Common patterns:
Step 2: Find builds for the current branch
Use MCP tools to list recent builds:
mcp__MCPProxy__call_tool('buildkite:list_builds', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
branch: '<branch-name>',
detail_level: 'summary',
});
Or use bktide:
npx bktide builds --format json <org>/<pipeline>
Step 3: Progressive disclosure of status
Follow this pattern when examining builds:
passed, failed, running, blocked, or canceled?After pushing code, follow this workflow to monitor the CI build:
Step 1: Find builds for the pushed commit
Use the find-commit-builds script:
~/.claude/skills/buildkite-status/scripts/find-commit-builds.js <org> <commit-sha>
Or manually search using MCP tools with commit filter.
Step 2: Monitor the build
Option A (Preferred): Use MCP wait_for_build tool
mcp__MCPProxy__call_tool('buildkite:wait_for_build', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
timeout: 1800,
poll_interval: 30,
});
This will:
poll_interval)timeout)Option B (Fallback): Use wait-for-build.js script
If you prefer background execution:
~/.claude/skills/buildkite-status/scripts/wait-for-build.js <org> <pipeline> <build-number> --timeout 1800 --interval 30
If the script fails (e.g., bktide dependency error), use Option A - the MCP tool is more reliable.
Step 3: Check on progress
Periodically check the background job or wait for it to complete. When it finishes, check the exit code:
Step 4: Investigate failures
If the build failed, follow the "### 1. Investigating a Build from URL" workflow above.
Note: This workflow is deprecated. Use "### 1. Investigating a Build from URL" and "### 2. Retrieving Job Logs" instead for a more complete investigation process.
When a build has failed, use this systematic approach:
Step 1: Get build overview
mcp__MCPProxy__call_tool('buildkite:get_build', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
detail_level: 'detailed',
job_state: 'failed', // Only show failed jobs
});
This gives you:
Step 2: Check annotations
Some projects put test failures in annotations:
mcp__MCPProxy__call_tool('buildkite:list_annotations', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
});
Look for annotations with style: "error" or style: "warning".
Important: Not all projects use annotations. See references/annotation-patterns.md for project-specific patterns.
Step 3: Examine failed jobs
For each failed job (not "broken" - see state reference below):
Step 4: Understand "broken" vs "failed"
Critical: A job showing as "broken" is often NOT a failure. It typically means:
See references/buildkite-states.md for complete state explanations.
Example: In large monorepos, many jobs show "broken" because they were skipped due to file changes not affecting them. This is normal and expected.
When a build is in blocked state, it's waiting for manual approval:
Step 1: Identify the block step
Get the build with detail_level: "detailed" and look for jobs with state: "blocked".
Step 2: Review what's being blocked
Block steps typically have a label describing what approval is needed (e.g., "Deploy to Production").
Step 3: Unblock if appropriate
Use the MCP tool to unblock:
mcp__MCPProxy__call_tool('buildkite:unblock_job', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
job_id: '<job-id>',
fields: {}, // Optional form fields if the block step has inputs
});
After investigating a failed build (workflows 1-2), use this workflow to reproduce the failure locally for debugging.
Goal: Discover exactly what CI ran - the command, environment, and context.
Step 1: Get the job logs
Use workflow "### 2. Retrieving Job Logs" to get logs for the failed job.
Step 2: Find the actual command
Look early in the log output for the command execution line. Common patterns:
:docker: Running /bin/sh -e -c '<command>' in service <service>+ when shell trace is enabledExample log snippet:
Running plugin docker-compose command hook
:docker: Found a pre-built image for app
:docker: Creating docker-compose override file for prebuilt services
:docker: Pulling services app
:docker: Starting dependencies
:docker: Running /bin/sh -e -c 'bin/rspec spec/models/user_spec.rb' in service app
The actual command here is bin/rspec spec/models/user_spec.rb.
Step 3: Identify environment variables
Check multiple sources in order:
.buildkite/pipeline.yml or buildkite-builder DSL for env: blocksCI=true, BUILDKITE_BRANCH, etc.Step 4: Note the execution context
Record:
Goal: Convert the CI command to something runnable locally.
Step 1: Try the direct command first
Run the extracted command as-is in your local environment:
bin/rspec spec/models/user_spec.rb
This often works for:
rspec, jest, pytest, etc.)Step 2: If direct fails, try with docker-compose
When the command ran in a Docker context in CI, replicate that locally:
docker-compose run <service> <command>
Example - if CI showed:
:docker: Running /bin/sh -e -c 'bin/rspec spec/models/user_spec.rb' in service app
Try locally:
docker-compose run app bin/rspec spec/models/user_spec.rb
Step 3: Set relevant environment variables
If the command behaves differently, add env vars discovered in Phase 1:
CI=true RAILS_ENV=test bin/rspec spec/models/user_spec.rb
Or with docker-compose:
docker-compose run -e CI=true -e RAILS_ENV=test app bin/rspec spec/models/user_spec.rb
Step 4: Handle common translation patterns
| CI Pattern | Local Translation |
|---|---|
--parallel 4 | --parallel 1 or remove flag |
--format buildkite | --format progress or remove flag |
| CI-specific artifact paths | Use local paths |
buildkite-agent artifact download | Download manually or skip |
Goal: When local reproduction isn't feasible, determine the best alternative.
Decision: Can this be reproduced locally?
Local reproduction is likely NOT feasible when:
Note: Many Buildkite plugins don't block local reproduction - plugins for artifacts, notifications, or caching are CI orchestration concerns, not execution blockers.
Alternative 1: Trigger a test build with debugging changes
Push a branch with modifications to aid debugging:
--verbose, -vvv)echo statements or print debuggingenv | sort or printenvAlternative 2: Inspect artifacts
Download artifacts from the failed build:
mcp__MCPProxy__call_tool('buildkite:list_artifacts', {
org_slug: '<org>',
pipeline_slug: '<pipeline>',
build_number: '<build-number>',
});
Look for:
Alternative 3: Analyze the failure in place
Sometimes reproduction isn't needed - the logs plus artifacts contain enough information to understand and fix the issue without running it locally.
Buildkite has several states that can be confusing. Here's a quick reference:
passed - All jobs completed successfully ✅failed - One or more jobs failed ❌running - Build is currently executing 🔄blocked - Waiting for manual approval 🚫canceled - Build was canceled ⛔passed - Job succeeded ✅failed - Job failed with non-zero exit ❌broken - MISLEADING: Usually means skipped due to pipeline logic, NOT a failure ⚠️soft_failed - Failed but marked as non-blocking 〰️skipped - Job was skipped ⏭️For complete state reference and project-specific patterns, read references/buildkite-states.md.
Always follow this pattern when checking build status:
Don't immediately jump to logs - the build state and annotations often tell you what you need to know.
Don't: Use gh pr view, gh pr checks, or GitHub API to check Buildkite status
Why: GitHub shows Buildkite check summary only. You lose:
Reality: Always use Buildkite tools. GitHub summarizes; Buildkite is the source of truth.
Don't: "The script failed, so I'll use GitHub tools instead"
Why: The skill documents MULTIPLE tool tiers:
Reality: One tool failing doesn't invalidate the skill. Follow the fallback hierarchy - move to MCP tools, don't abandon Buildkite entirely.
Don't: "This is urgent, I don't have time to follow the skill"
Why: Skills exist ESPECIALLY for high-pressure situations. Disciplined workflows prevent mistakes when you're rushed. Making wrong tool choices under pressure wastes MORE time debugging.
Reality: Following the skill is FASTER than recovering from wrong decisions. Taking 2 minutes to use the right tool saves 20 minutes of confusion.
Don't: "I already know gh pr view works, why learn Buildkite tools?"
Why: Familiarity ≠ effectiveness. You'll spend more time working around GitHub's limitations than learning the proper tools.
Reality: Invest 2 minutes learning Buildkite MCP tools once. Save hours across all future builds.
If you catch yourself thinking ANY of these thoughts, you're about to violate this skill:
These are rationalizations. Stop. Follow the tool hierarchy. Use Buildkite MCP tools.
job_state: "failed" to focus on actual failureswait_for_build tool or background scriptsdetail_level: "summary" to reduce dataRun scripts with --help for usage information.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.