Analyze and compare GitHub Actions runtime metrics to detect performance regressions and optimize CI costs.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-actions-runtime-regression-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-runtime-regression-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 Runtime Regression Audit is a specialized tool designed to prevent CI/CD bloat by comparing current workflow performance against established baselines. By leveraging this entry in the Openclaw Skills collection, developers can automatically identify jobs that have slowed down, ensuring that CI costs and lead times remain within acceptable limits. This skill processes raw GitHub CLI data to provide actionable insights into your automation efficiency, helping teams maintain a lean and fast development cycle.
To use this skill, ensure you have bash and python3 installed. You will first need to collect run data from your repositories:
gh run view <run-id> --json databaseId,workflowName,headBranch,headSha,url,repository,jobs > artifacts/github-actions/run-<run-id>.json
Once data is collected, run the audit script:
BASELINE_GLOB='artifacts/github-actions/baseline/*.json' \
CURRENT_GLOB='artifacts/github-actions/current/*.json' \
bash skills/github-actions-runtime-regression-audit/scripts/runtime-regression-audit.sh
The skill organizes data by calculating deltas between two sets of JSON files. It identifies jobs using a composite key of Repository + Workflow + Job Name.
| Input Parameter | Description | Default |
|---|---|---|
| BASELINE_GLOB | Glob pattern for historical run JSON files | Required |
| CURRENT_GLOB | Glob pattern for current run JSON files | Required |
| WARN_DELTA_SECONDS | Seconds over baseline to trigger a warning | 30 |
| CRITICAL_DELTA_SECONDS | Seconds over baseline to trigger a failure | 90 |
| OUTPUT_FORMAT | The reporting format (text or json) | text |
| FAIL_ON_CRITICAL | Exit with error code if critical regression found | 0 |
Loading
A diagnostic tool to identify GitHub Actions workflows that have missed their expected execution cadence.

Analyze GitHub Actions run history to identify and quantify the cost of flaky fail-then-success retry patterns.

A technical auditing tool to quantify wasted GitHub Actions minutes by analyzing workflow reruns and flakiness data.

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

An automated auditing tool to identify and mitigate secret exposure risks within GitHub Actions workflow configurations.

A specialized security auditing tool for identifying high-risk configurations in GitHub Actions workflows utilizing self-hosted runners.








































