Identify and visualize GitHub Actions queue wait hotspots from run metadata to resolve CI bottlenecks before they stall development merges.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-actions-queue-latency-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-queue-latency-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 Queue Latency Audit skill is a powerful diagnostic utility designed for DevOps engineers and developers who need to quantify CI/CD overhead. By analyzing exported workflow run data, it calculates the precise time jobs spend waiting in a queue versus their actual execution time. This visibility is crucial for identifying runner shortages, poorly scheduled jobs, or infrastructure scaling issues.
As part of the Openclaw Skills ecosystem, this tool enables teams to move beyond anecdotal evidence of CI slowness to data-driven performance tuning. It provides clear metrics on queue wait averages and peaks, allowing you to optimize your runner strategy and improve the developer experience by reducing the time developers wait for feedback on their pull requests.
To use this skill, ensure you have bash and python3 installed. First, collect your workflow run data:
gh run view <run-id> --json databaseId,workflowName,headBranch,headSha,url,repository,jobs > artifacts/github-actions/run-<run-id>.json
Then, execute the audit script with your desired configuration:
RUN_GLOB='artifacts/github-actions/*.json' \
TOP_N=20 \
QUEUE_WARN_SECONDS=120 \
bash skills/github-actions-queue-latency-audit/scripts/queue-latency-audit.sh
The skill processes GitHub Actions run metadata and produces organized analysis reports.
| Data Point | Description |
|---|---|
| Queue Wait | Calculated as startedAt - createdAt |
| Runtime | Calculated as completedAt - startedAt |
| Grouping | Aggregated by Repository + Workflow + Job Name |
| Thresholds | Configurable via environment variables (Warn/Critical) |
When outputting in JSON format, the skill provides a root summary object, a list of grouped hotspots, and a list of specific job instances that triggered critical warnings.
Loading
A diagnostic tool to score and flag unreliable GitHub Actions workflows used in pull request and merge queue gates.

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 measure how quickly GitHub Actions workflows recover from failures and identify persistent CI bottlenecks.

A performance auditing tool to measure the effectiveness of GitHub Actions reruns and identify wasted CI resources.








































