con un clic
ci-fix
CI/CD pipeline fix workflow from environment analysis to deployment
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
CI/CD pipeline fix workflow from environment analysis to deployment
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Execute security scanning commands on remote worker agents. Use when you need to run CLI tools like nmap, subfinder, httpx, nuclei, or any shell command on worker nodes.
Perform deep analysis of CVEs and security vulnerabilities including CVSS scoring, affected versions, exploit maturity, and remediation steps. Use when the user needs detailed vulnerability intelligence.
Perform web research using CVE databases, security advisories, and threat intelligence sources. Use when the user asks about CVEs, security news, vulnerabilities, patch releases, or any external security information not available in the workspace.
Workflow for committing code with comprehensive validation from linting to deployment
Workflow for API development and modification with strict checks from design to deployment
Workflow for creating and submitting bug reports to GitHub
| name | ci-fix |
| description | CI/CD pipeline fix workflow from environment analysis to deployment |
Use this when fixing CI/CD pipeline issues, Docker configurations, or deployment scripts. Works for GitHub Actions, Docker builds, and any pipeline-related problems.
# Dockerfile linting
docker run --rm -i hadolint/hadolint < Dockerfile
# YAML linting for GitHub Actions
yamllint .github/workflows/*.yml
# Shell script linting
shellcheck scripts/*.sh
Zero errors, zero warnings.
# Test Docker builds locally
docker build -t test-image .
# Test scripts locally
bash scripts/build.sh
If possible, test in a feature branch to verify against actual CI environment.
English comments only for complex CI/CD configurations or non-obvious workarounds.