A diagnostic tool to score and flag unreliable GitHub Actions workflows used in pull request and merge queue gates.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-actions-pr-gate-health-audit
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install github-actions-pr-gate-health-audit using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The GitHub Actions PR Gate Health Audit is a powerful analysis tool designed for DevOps teams using Openclaw Skills to maintain high CI/CD standards. It identifies flaky tests, sluggish queues, and unreliable merge gates by processing GitHub Actions run data. By scoring workflows based on failure patterns and latency, it ensures that developer productivity isn't hindered by unstable automation pipelines.
This skill provides a systematic way to look beyond individual build failures and see the broader health of your automation. By analyzing trends in queue wait times and consecutive failures, teams can proactively address infrastructure bottlenecks before they result in developer frustration or production risks.
To utilize this within Openclaw Skills, ensure your environment has bash and python3 available.
First, collect the necessary run data from GitHub:
gh run view <run-id> --json databaseId,workflowName,event,conclusion,headBranch,headSha,createdAt,runStartedAt,updatedAt,url,repository > artifacts/github-actions/run-<run-id>.json
Then, execute the audit script with your desired configuration:
RUN_GLOB='artifacts/github-actions/*.json' \
EVENT_MATCH='^(pull_request|merge_group)$' \
MIN_RUNS=3 \
bash skills/github-actions-pr-gate-health-audit/scripts/pr-gate-health-audit.sh
The skill processes JSON files exported from the GitHub API and organizes the analysis into a scored hierarchy. The data taxonomy includes:
| Attribute | Description |
|---|---|
| repository | The source GitHub repository containing the workflow. |
| workflowName | The specific name of the GitHub Action being audited. |
| event | The trigger event type (e.g., pull_request, merge_group). |
| health_score | A composite risk metric where higher numbers indicate lower reliability. |
| failure_rate | The percentage of failed runs within the analyzed sample. |
| queue_wait | The average time elapsed between run creation and the actual start time. |
Loading
A security-focused tool to detect and audit over-privileged GitHub Actions workflow tokens to enforce least-privilege access.

A security auditing tool for GitHub Actions that identifies OIDC misconfigurations and risky cloud authentication patterns.

A diagnostic tool for auditing GitHub merge queue workflows using failure rates, queue latency, and stale-success risk scoring.

A diagnostic tool to detect and audit manual trigger reliance in GitHub Actions workflows to improve automation and pipeline reliability.

Identify and visualize GitHub Actions queue wait hotspots from run metadata to resolve CI bottlenecks before they stall development merges.

A diagnostic tool to measure how quickly GitHub Actions workflows recover from failures and identify persistent CI bottlenecks.








































