Analyze and fix GitHub Actions workflow failures. Use when workflows fail, CI/CD issues occur, or when debugging GitHub Actions runs. Triggers on requests like "fix workflow", "why did the build fail", "check CI status", "debug GitHub Actions", or "workflow failed".
Analyzes GitHub Actions workflow failures by fetching failed run logs and diagnosing root causes. Triggers on requests like "fix workflow" or "why did the build fail" to identify issues like dependency errors, test failures, or permission problems.
/plugin marketplace add yaakaito/env/plugin install base@yaakaito-envThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Analyze GitHub Actions workflow results and provide problem-solving guidance.
gh run list with --branch or --workflow flaggh run view <run_id> --log-failed to view error detailsFind and fix failed workflows on the current branch:
# Get current branch
BRANCH=$(git branch --show-current)
# List runs on this branch
gh run list --branch "$BRANCH"
# View failed run logs
gh run view <run_id> --log-failed
Find and fix failed workflows for a specific workflow file:
# List runs for a workflow file
gh run list --workflow=<workflow_file>
# View failed run logs
gh run view <run_id> --log-failed