con un clic
ci-cd
Design and maintain automated continuous integration and delivery pipelines.
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ú
Design and maintain automated continuous integration and delivery pipelines.
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
Plan, reason, and verify across multiple levels using multi-step reasoning, tree-of-thought, and structured agent workflows.
Detect and repair security vulnerabilities or operational errors in the agent's own code and environment without manual intervention.
Generate and apply complete design systems from text descriptions or visual examples using AI and modern tooling.
Adapt user interfaces automatically based on device, viewport, user preferences, and contextual signals.
Build and query knowledge graphs automatically to capture relationships between entities, concepts, and project artifacts.
Run agent tasks in isolated, sandboxed environments to prevent malicious or untrusted code from affecting the host system.
| name | ci-cd |
| description | Design and maintain automated continuous integration and delivery pipelines. |
Category: DevOps Priority: High
Design and maintain automated continuous integration and delivery pipelines.
Automate testing, building, and deployment to reduce human error and increase velocity.
Use this skill when:
stages:
- lint
- test
- security-scan
- build
- deploy-staging
- e2e-staging
- deploy-prod
rules:
- deploy-prod only if: main branch AND e2e-staging passed
# One giant stage that does everything sequentially
stage: all
script:
- npm install
- npm test
- npm build
- docker build
- docker push
- ssh deploy