A static analysis tool designed to audit GitHub Actions workflow files for cache poisoning vulnerabilities and sensitive path leakage.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-actions-cache-hardening-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-cache-hardening-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 Cache Hardening Audit is a specialized security tool within the Openclaw Skills ecosystem that performs static analysis on .github/workflows/*.yml files. It is specifically designed to identify high-risk patterns in workflow caching that could lead to cache poisoning, stale build artifacts, or the accidental exposure of sensitive credentials. By integrating this skill, developers can ensure their CI/CD pipelines adhere to security best practices and prevent supply chain attacks originating from untrusted triggers.
This skill helps maintain the integrity of your build environment by scanning for common misconfigurations in actions/cache usage. Utilizing Openclaw Skills for security auditing allows teams to automate the detection of floating action references and overly broad restore-key prefixes that often go unnoticed in manual reviews.
To use this tool from the Openclaw Skills collection, ensure you have bash and python3 available in your environment. Run a standard audit with the following command:
WORKFLOW_GLOB='.github/workflows/*.yml' \
bash skills/github-actions-cache-hardening-audit/scripts/cache-hardening-audit.sh
To integrate it into a CI/CD pipeline as a blocking security check, use the following configuration:
WORKFLOW_GLOB='.github/workflows/*.yml' \
OUTPUT_FORMAT=json \
FAIL_ON_CRITICAL=1 \
bash skills/github-actions-cache-hardening-audit/scripts/cache-hardening-audit.sh
The skill organizes its audit results into a structured format. When using JSON output, the data follows this schema:
| Key | Type | Description |
|---|---|---|
summary |
Object | High-level overview of total workflows scanned and flagged. |
flagged_workflows |
Array | List of workflows containing warnings or low-level risks. |
critical_workflows |
Array | List of workflows that met or exceeded the CRITICAL_SCORE threshold. |
score |
Integer | The calculated risk weight for a specific workflow file. |
Loading
A specialized audit tool to identify branch-level CI reliability regressions and performance drift compared to mainline releases.

Audit GitHub Actions artifact storage from JSON exports to identify and flag oversized artifacts before they inflate CI costs.

An automated auditing tool that ranks GitHub Actions reliability by identifying high-risk contributors and flaky automation owners through run history analysis.

A robust auditing tool to detect environment variable alias conflicts and missing required configurations before deployment.

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

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








































