From antigravity-awesome-skills
Diagnoses and fixes failing GitHub Actions workflows by parsing run logs and pipeline definitions. Use when CI fails with obscure errors, dependency mismatches, or deprecated actions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:github-actions-debuggerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill is designed to act as an expert CI/CD diagnostician. It focuses specifically on reading raw logs from failed GitHub Actions, identifying the root cause of the crash or failure, and outputting the precise YAML or code changes required to fix the pipeline.
This skill is designed to act as an expert CI/CD diagnostician. It focuses specifically on reading raw logs from failed GitHub Actions, identifying the root cause of the crash or failure, and outputting the precise YAML or code changes required to fix the pipeline.
.github/workflows/*.yml definition.${{ secrets.API_KEY }}).run: block.diff of the .yml file or the underlying script that needs to be modified..yml file) and the failure log simultaneously to ensure accurate diagnosis.actions/checkout@v2). Always recommend upgrading to the latest major versions (e.g., v4).permissions: block if it's attempting to write to the repository, packages, or deploy environments.Failing Log:
Warning: The Go/Node.js/Python version used by this action is deprecated.
Error: Node.js 16 actions are deprecated. Please update to use Node.js 20.
Proposed Fix Diff:
- name: Checkout Code
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
Failing Log:
Run npm run deploy
npm run deploy
shell: /usr/bin/bash -e {0}
Error: API Key is required for deployment. Process exited with code 1.
Proposed Fix Diff:
- name: Deploy App
run: npm run deploy
+ env:
+ DEPLOY_API_KEY: ${{ secrets.DEPLOY_API_KEY }}
--dry-run or staging execution where possible to prevent unintended side effects in downstream environments during debugging.${{ secrets.SECRET_NAME }}).@devops-troubleshooter - General DevOps and infrastructure issue resolution.@cicd-automation-workflow-automate - For creating new CI/CD pipelines from scratch.npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-aas-localization-international-growthWrite and optimize GitHub Actions workflows. Use when creating CI/CD pipelines, configuring workflow triggers, managing artifacts, or debugging workflow runs.
Writes and optimizes GitHub Actions workflows for CI/CD pipelines, triggers, jobs, steps, secrets, artifacts, and debugging runs.
Inspects GitHub Actions workflow runs using gh CLI: lists runs, checks status, analyzes logs, debugs failures, reruns jobs. Use for CI/CD troubleshooting.