A DevOps tool that analyzes GitHub Actions history to identify and score risky deployment workflows before production releases.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-actions-deploy-risk-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-deploy-risk-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 Deploy Risk Audit is a specialized utility designed to enhance CI/CD reliability by quantifying the health of deployment pipelines. By processing JSON exports of action runs, this tool identifies patterns of failure, unresolved streaks, and stale deployment windows, providing a clear risk score for every release workflow. As part of the Openclaw Skills ecosystem, it bridges the gap between raw build logs and actionable engineering intelligence.
This skill enables teams to move beyond binary pass/fail results, offering a nuanced view of repository stability. It helps DevOps engineers and SREs establish automated release gates based on historical reliability rather than just the latest commit status, ensuring that production environments are protected from unstable deployment patterns.
Ensure you have bash and python3 installed on your system. First, use the GitHub CLI to collect your workflow run data into the expected directory:
gh run view <run-id> --json databaseId,workflowName,event,conclusion,headBranch,headSha,createdAt,updatedAt,startedAt,url,repository > artifacts/github-actions/run-<run-id>.json
Then, execute the audit using the Openclaw Skills script structure:
RUN_GLOB='artifacts/github-actions/*.json' \
DEPLOY_WORKFLOW_MATCH='(?i)(deploy|release)' \
MIN_RUNS=3 \
bash skills/github-actions-deploy-risk-audit/scripts/deploy-risk-audit.sh
This skill consumes standard GitHub run JSON objects and produces a structured risk assessment. The scoring logic evaluates the following data points:
| Metric | Description |
|---|---|
| failure_rate | The percentage of failed runs within the analyzed sample |
| failure_streak | The number of consecutive failures leading up to the most recent run |
| staleness | Total days elapsed since the last successful deployment run |
| total_runs | The volume of data points analyzed for the specific workflow group |
The tool can output a JSON schema containing a summary of critical findings and a detailed scored_groups list for integration with external monitoring tools.
Loading
Detect and analyze unstable GitHub Actions workflows that frequently flip between success and failure to improve pipeline reliability.

A specialized audit tool that identifies specific commits causing repeated GitHub Actions workflow failures to help teams prioritize fixes or rollbacks.

Audit and quantify wasted GitHub Actions runtime from cancelled or timed-out runs to eliminate flaky workflow churn and save CI budget.

A static analysis tool designed to audit GitHub Actions workflow files for cache poisoning vulnerabilities and sensitive path leakage.

A specialized utility for identifying redundant GitHub Actions executions and quantifying wasted CI/CD resources.

A diagnostic tool that analyzes GitHub Actions run history to identify specific days and hours when workflow failures cluster.








































