Github Workflow Debugger

Fetch and inspect GitHub Actions workflow logs using the gh CLI.

Updated Nov 24, 2025
One-click install
npx skills add https://github.com/kaihendry/skills --skill github-workflow-debugger
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Github Workflow Debugger
Source: https://github.com/kaihendry/skills/tree/main/gh-worklow
Command: npx skills add https://github.com/kaihendry/skills --skill github-workflow-debugger

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

GitHub Actions logs can be hard to access, especially for private repos. This Skill guides you to fetch and inspect logs using the gh CLI, making CI/CD debugging faster and more reliable.

Core Features & Use Cases

  • Live log access: List, view, and watch workflow runs from the command line with gh.
  • Commit verification: Check that the latest commit matches the latest run, helping you catch pushed vs unpushed changes.
  • Debugging workflows: Zoom into failed runs and extract logs for faster issue resolution.
  • Plan and fix: Use questions to decide whether to push changes to rerun workflows.

Quick Start

Use the gh cli to list runs: gh run ls -R $REPO Then inspect a run's logs: gh run view $RUN_ID --log-failed Resolve issues by reviewing the log and re-running tests with gh run watch $RUN_ID --exit-status