Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

gitlab-ci-generatorGitLab CI 生成器

Agent Skill

用于围绕 GitLab 项目、Merge Request、Issue、分支、流水线和代码审查流程提供辅助能力。它适合让 Agent 查询项目状态、整理提交差异、辅助检查合并请求或汇总 CI 结果。使用时需要确认项目权限、访问 token 和目标分支范围;涉及合并、推送、改工单或触发流水线时,应先预览影响并核对团队流程。

总安装

3,337

周安装

135

GitHub Stars

197

下载量

1,048
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gitlab-ci-generator(GitLab CI 生成器)
来源仓库:https://github.com/akin-ozer/cc-devops-skills
仓库路径:skills/gitlab-ci-generator
安装命令:
npx skills add https://github.com/akin-ozer/cc-devops-skills --skill gitlab-ci-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akin-ozer/cc-devops-skills --skill gitlab-ci-generator

简介

自动生成符合最佳实践的 GitLab CI/CD 管道配置文件。

  • 支持轻量级、目标型和完整模式,适配不同复杂度需求。
  • 基于模板和安全标准生成可维护的 YAML,内置验证与修复机制。
  • 依赖 devops-skills:gitlab-ci-validator 进行语法与安全检查。
  • gitlab-ci-generator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitLab CI/CD Pipeline Generator

Overview

Generate production-ready GitLab CI/CD pipeline configurations following current best practices, security standards, and naming conventions. All generated resources are automatically validated using the devops-skills:gitlab-ci-validator skill to ensure syntax correctness and compliance with best practices.


Trigger Phrases

Use this skill when the user asks for GitLab CI/CD generation requests such as:

  • "Create a .gitlab-ci.yml for..."
  • "Build a GitLab pipeline for Node/Python/Java..."
  • "Add Docker build and deploy jobs in GitLab CI"
  • "Set up GitLab parent-child or multi-project pipelines"
  • "Include SAST/dependency scanning templates in GitLab CI"

Execution Model

Follow this deterministic flow in order:

  1. Classify request complexity (targeted, lightweight, or full).
  2. Load only the required reference tier for that complexity.
  3. Output the matching response profile for the selected mode.
  4. For complete pipeline generation, start from the closest template and customize.
  5. Validate complete pipelines with strict Critical/High gates.
  6. Present output with validation status and template/version notes.

If tooling is unavailable, use the documented fallback branch and report it explicitly.

Mode Routing (Quick Decision)

Request shapeModeRequired referencesOutput profile
Simple single-file pipeline with common jobs/stages and low riskLightweightTier 1 (+ Tier 2 only if needed)Lightweight confirmation + compact final sections
Multi-environment deploy, advanced rules, includes/templates, security/compliance-sensitive workflow, or unclear/risky requirementFullTier 1 + Tier 2 (Tier 3 only if needed)Full confirmation + full final sections
Review/Q&A/snippet/focused fix (not full file generation)TargetedOnly directly relevant filesConcise targeted response (no full boilerplate)

When uncertain on a complete-generation request, route to Full mode.

MANDATORY PRE-GENERATION STEPS

CRITICAL: Before generating any complete GitLab CI/CD pipeline, complete these steps.

Step 1: Classify Complexity (REQUIRED)

ModeUse WhenMinimum Confirmation
TargetedReview/Q&A/snippet/focused fix where full pipeline generation is not requestedConcise targeted response
LightweightSimple single-file pipeline, common stages/jobs, no advanced GitLab features, no sensitive deploy/security customizationLightweight confirmation
FullMulti-environment deploys, includes/templates, advanced rules logic, security scanning customization, compliance-sensitive workflows, or any unclear/risky requestFull confirmation

When uncertain on a complete-generation request, default to Full mode.

Step 2: Load References by Tier (REQUIRED)

Use an open/read action to load references based on the selected mode.

Targeted mode (review/Q&A/snippet/focused fix):

  • Load only directly relevant references/templates for the scoped request.
  • Do not enforce Full-generation Tier 1/Tier 2 checklist items.

Tier 1 (Required for complete pipeline generation in Lightweight and Full modes):

  1. references/best-practices.md - baseline security, performance, naming
  2. references/common-patterns.md - starting pattern selection
  3. Matching template from assets/templates/:

- Docker pipelines -> assets/templates/docker-build.yml - Kubernetes deployments -> assets/templates/kubernetes-deploy.yml - Multi-project pipelines -> assets/templates/multi-project.yml - Basic pipelines -> assets/templates/basic-pipeline.yml

Tier 2 (Required for Full mode; optional for Lightweight mode):

  1. references/gitlab-ci-reference.md - keyword/syntax edge cases
  2. references/security-guidelines.md - security-sensitive controls

Tier 3 (Conditional external docs lookup):

  • Use only when local references do not cover requested features or version-specific behavior.
  • Follow the lookup flow in "Handling GitLab CI/CD Documentation Lookup."

If a required local reference or template is unavailable:

  • Report the exact missing path.
  • Continue with available references and mark assumptions explicitly.
  • Do not claim production-ready confidence until missing critical inputs are resolved.

Step 3: Confirm Understanding (EXPLICIT OUTPUT REQUIRED)

Lightweight Confirmation Mode

Use for simple requests only.

Required format:

## Reference Analysis Complete (Lightweight)

**Pattern:** [Pattern name] from common-patterns.md
**Template:** [Template file]
**Key standards to enforce:**
- [2-3 concrete standards]

Example:

## Reference Analysis Complete (Lightweight)

**Pattern:** Basic Build-Test-Deploy from common-patterns.md
**Template:** assets/templates/basic-pipeline.yml
**Key standards to enforce:**
- Pin runtime image versions (no `:latest`)
- Add explicit job timeouts
- Use `rules` instead of deprecated `only`/`except`

Full Confirmation Mode

Use for complex or security-sensitive requests.

Required format:

## Reference Analysis Complete (Full)

**Pipeline Pattern Identified:** [Pattern name] from common-patterns.md
- [Brief description of why this pattern fits]

**Best Practices to Apply:**
- [List 3-5 key best practices relevant to this pipeline]

**Security Guidelines:**
- [List security measures to implement]

**Template Foundation:** [Template file name]
- [What will be customized from this template]

Example:

## Reference Analysis Complete (Full)

**Pipeline Pattern Identified:** Docker Build + Kubernetes Deployment from common-patterns.md
- User needs containerized deployment to K8s clusters with staging/production environments

**Best Practices to Apply:**
- Pin all Docker images to specific versions (not `:latest`)
- Use caching for pip dependencies
- Implement DAG optimization with `needs` keyword
- Set explicit timeout on all jobs (15-20 minutes)
- Use `resource_group` for deployment jobs

**Security Guidelines:**
- Use masked CI/CD variables for secrets (KUBE_CONTEXT, registry credentials)
- Include container scanning with Trivy
- Never expose secrets in logs

**Template Foundation:** assets/templates/docker-build.yml + assets/templates/kubernetes-deploy.yml
- Combine Docker build pattern with K8s kubectl deployment
- Add Python-specific test jobs

Skipping confirmation is not allowed for complete pipeline generation.


Core Capabilities

1. Generate Basic CI/CD Pipelines

Create complete, production-ready .gitlab-ci.yml files with proper structure, security best practices, and efficient CI/CD patterns.

When to use:

  • User requests: "Create a GitLab pipeline for...", "Build a CI/CD pipeline...", "Generate GitLab CI config..."
  • Scenarios: CI/CD pipelines, automated testing, build automation, deployment pipelines

Process:

  1. Understand the user's requirements (what needs to be automated)
  2. Identify stages, jobs, dependencies, and artifacts
  3. Use assets/templates/basic-pipeline.yml as structural foundation
  4. Reference references/best-practices.md for implementation patterns
  5. Reference references/common-patterns.md for standard pipeline patterns
  6. Generate the pipeline following these principles:

- Use semantic stage and job names - Pin Docker images to specific versions (not:latest) - Implement proper secrets management with masked variables - Use caching for dependencies to improve performance - Implement proper artifact handling with expiration - Use needs keyword for DAG optimization when appropriate - Add proper error handling with retry and allow_failure - Use rules instead of deprecated only/except - Set explicit timeout for all jobs (10-30 minutes typically) - Add meaningful job descriptions in comments

  1. ALWAYS validate the generated pipeline using the devops-skills:gitlab-ci-validator skill
  2. If validation fails, fix the issues and re-validate

Example structure:

# Basic CI/CD Pipeline
# Builds, tests, and deploys the application

stages:
  - build
  - test
  - deploy

# Global variables
variables:
  NODE_VERSION: "20"
  DOCKER_DRIVER: overlay2

# Default settings for all jobs
default:
  image: node:20-alpine
  timeout: 20 minutes  # Default timeout for all jobs
  cache:
    key: ${CI_COMMIT_REF_SLUG}
    paths:
      - node_modules/
  before_script:
    - echo "Starting job ${CI_JOB_NAME}"
  tags:
    - docker
  interruptible: true

# Build stage - Compiles the application
build-application:
  stage: build
  timeout: 15 minutes
  script:
    - npm ci
    - npm run build
  artifacts:
    paths:
      - dist/
    expire_in: 1 hour
  rules:
    - changes:
        - src/**/*
        - package*.json
      when: always
    - when: on_success

# Test stage
test-unit:
  stage: test
  needs: [build-application]
  script:
    - npm run test:unit
  coverage: '/Coverage: \d+\.\d+%/'
  artifacts:
    reports:
      junit: junit.xml
      coverage_report:
        coverage_format: cobertura
        path: coverage/cobertura-coverage.xml

test-lint:
  stage: test
  needs: []  # Can run immediately
  script:
    - npm run lint
  allow_failure: true

# Deploy stage
deploy-staging:
  stage: deploy
  needs: [build-application, test-unit]
  script:
    - npm run deploy:staging
  environment:
    name: staging
    url: https://staging.example.com
  rules:
    - if: $CI_COMMIT_BRANCH == "develop"
  when: manual

deploy-production:
  stage: deploy
  needs: [build-application, test-unit]
  script:
    - npm run deploy:production
  environment:
    name: production
    url: https://example.com
  rules:
    - if: $CI_COMMIT_BRANCH == "main"
  when: manual
  resource_group: production

2. Generate Docker Build Pipelines

Create pipelines for building, testing, and pushing Docker images to container registries.

When to use:

  • User requests: "Create a Docker build pipeline...", "Build and push Docker images..."
  • Scenarios: Container builds, multi-stage Docker builds, registry pushes

Process:

  1. Understand the Docker build requirements (base images, registries, tags)
  2. Use assets/templates/docker-build.yml as foundation
  3. Implement Docker-in-Docker or Kaniko for builds
  4. Configure registry authentication
  5. Implement image tagging strategy
  6. Add security scanning if needed
  7. ALWAYS validate using devops-skills:gitlab-ci-validator skill

Example:

stages:
  - build
  - scan
  - push

variables:
  DOCKER_DRIVER: overlay2
  IMAGE_NAME: $CI_REGISTRY_IMAGE
  IMAGE_TAG: $CI_COMMIT_SHORT_SHA

# Build Docker image
docker-build:
  stage: build
  image: docker:24-dind
  timeout: 20 minutes
  services:
    - docker:24-dind
  before_script:
    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
  script:
    - docker build
        --cache-from $IMAGE_NAME:latest
        --tag $IMAGE_NAME:$IMAGE_TAG
        --tag $IMAGE_NAME:latest
        .
    - docker push $IMAGE_NAME:$IMAGE_TAG
    - docker push $IMAGE_NAME:latest
  rules:
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  retry:
    max: 2
    when:
      - runner_system_failure

# Scan for vulnerabilities
container-scan:
  stage: scan
  image: aquasec/trivy:0.49.0
  timeout: 15 minutes
  script:
    - trivy image --exit-code 0 --severity HIGH,CRITICAL $IMAGE_NAME:$IMAGE_TAG
  needs: [docker-build]
  allow_failure: true
  rules:
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH

3. Generate Kubernetes Deployment Pipelines

Create pipelines that deploy applications to Kubernetes clusters.

When to use:

  • User requests: "Deploy to Kubernetes...", "Create K8s deployment pipeline..."
  • Scenarios: Kubernetes deployments, Helm deployments, kubectl operations

Process:

  1. Identify the Kubernetes deployment method (kubectl, Helm, Kustomize)
  2. Use assets/templates/kubernetes-deploy.yml as foundation
  3. Configure cluster authentication (service accounts, kubeconfig)
  4. Implement proper environment management
  5. Add rollback capabilities
  6. ALWAYS validate using devops-skills:gitlab-ci-validator skill

Example:

stages:
  - build
  - deploy

# Kubernetes deployment job
deploy-k8s:
  stage: deploy
  image: bitnami/kubectl:1.29
  timeout: 10 minutes
  before_script:
    - kubectl config use-context $KUBE_CONTEXT
  script:
    - kubectl set image deployment/myapp myapp=$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA -n $KUBE_NAMESPACE
    - kubectl rollout status deployment/myapp -n $KUBE_NAMESPACE --timeout=5m
  environment:
    name: production
    url: https://example.com
    kubernetes:
      namespace: production
  rules:
    - if: $CI_COMMIT_BRANCH == "main"
      when: manual
  resource_group: k8s-production
  retry:
    max: 2
    when:
      - runner_system_failure

4. Generate Multi-Project Pipelines

Create pipelines that trigger other projects or use parent-child pipeline patterns.

When to use:

  • User requests: "Create multi-project pipeline...", "Trigger other pipelines..."
  • Scenarios: Monorepos, microservices, orchestration pipelines

Process:

  1. Identify the pipeline orchestration needs
  2. Use assets/templates/multi-project.yml or parent-child templates
  3. Configure proper artifact passing
  4. Implement parallel execution where appropriate
  5. ALWAYS validate using devops-skills:gitlab-ci-validator skill

Example (Parent-Child):

# Parent pipeline
stages:
  - trigger

generate-child-pipeline:
  stage: trigger
  script:
    - echo "Generating child pipeline config"
    - |
      cat > child-pipeline.yml <<EOF
      stages:
        - build

      child-job:
        stage: build
        script:
          - echo "Running child job"
      EOF
  artifacts:
    paths:
      - child-pipeline.yml

trigger-child:
  stage: trigger
  trigger:
    include:
      - artifact: child-pipeline.yml
        job: generate-child-pipeline
    strategy: depend
  needs: [generate-child-pipeline]

5. Generate Template-Based Configurations

Create reusable templates using extends, YAML anchors, and includes.

When to use:

  • User requests: "Create reusable templates...", "Build modular pipeline config..."
  • Scenarios: Template libraries, DRY configurations, shared CI/CD logic

Process:

  1. Identify common patterns to extract
  2. Create hidden jobs (prefixed with.)
  3. Use extends keyword for inheritance
  4. Organize into separate files with include
  5. ALWAYS validate using devops-skills:gitlab-ci-validator skill

Example:

# Hidden template jobs (include timeout in templates)
.node-template:
  image: node:20-alpine
  timeout: 15 minutes  # Default timeout for jobs using this template
  cache:
    key: ${CI_COMMIT_REF_SLUG}
    paths:
      - node_modules/
  before_script:
    - npm ci
  interruptible: true

.deploy-template:
  timeout: 10 minutes  # Deploy jobs should have explicit timeout
  before_script:
    - echo "Deploying to ${ENVIRONMENT}"
  after_script:
    - echo "Deployment complete"
  retry:
    max: 2
    when:
      - runner_system_failure
      - stuck_or_timeout_failure
  interruptible: false  # Deploys should not be interrupted

# Actual jobs using templates
build:
  extends: .node-template
  stage: build
  script:
    - npm run build

deploy-staging:
  extends: .deploy-template
  stage: deploy
  variables:
    ENVIRONMENT: staging
  script:
    - ./deploy.sh staging
  resource_group: staging

6. Handling GitLab CI/CD Documentation Lookup

Use this flow only when local references do not cover requested features or version-sensitive behavior.

Detection:

  • User mentions specific GitLab features (e.g., "Auto DevOps", "SAST", "dependency scanning")
  • User requests integration with GitLab templates
  • Pipeline requires specific GitLab runner features

Process:

  1. Identify the feature:

- Extract the GitLab feature or template name - Determine if version-specific information is needed

  1. Check local references first (Tier 1/Tier 2):

- references/common-patterns.md - references/gitlab-ci-reference.md - references/security-guidelines.md

  1. Use Context7 first when external lookup is needed:

- Resolve library: mcp__context7__resolve-library-id - Query docs: mcp__context7__query-docs - Prefer GitLab official/library docs over secondary sources

  1. Fallback to web search when Context7 is unavailable or insufficient:

- Use web.search_query - Query pattern: "GitLab CI/CD [feature] documentation" - Prefer results from docs.gitlab.com

  1. Open and extract from specific docs pages when needed:

- Use web.open for selected documentation pages - Capture required syntax, variables, and version constraints

  1. Analyze discovered documentation for:

- Current recommended approach - Required variables and configuration - Template include syntax - Best practices and security recommendations - Example usage

  1. If network tools are unavailable (offline/constrained environment):

- Continue using local references only - State that external version verification could not be performed - Add a version-assumption note in the final output

  1. Generate pipeline using discovered information:

- Use correct template include syntax - Configure required variables - Add security best practices - Include comments about versions and choices

Example with GitLab templates:

# Include GitLab's security templates (use Jobs/ prefix for current templates)
include:
  - template: Jobs/SAST.gitlab-ci.yml
  - template: Jobs/Dependency-Scanning.gitlab-ci.yml

# Customize SAST behavior via global variables
# Note: Set variables globally rather than overriding template jobs
# to avoid validation issues with partial job definitions
variables:
  SAST_EXCLUDED_PATHS: "spec, test, tests, tmp, node_modules"
  DS_EXCLUDED_PATHS: "node_modules, vendor"
  SECURE_LOG_LEVEL: "info"
Important: When using include with GitLab templates, the included jobs are fully defined in the template. If you need to customize them, prefer setting variables globally rather than creating partial job overrides (which will fail local validation because the validator cannot resolve the included template). GitLab merges the configuration at runtime, but local validators only see your .gitlab-ci.yml file.

Validation Workflow

CRITICAL: Every generated GitLab CI/CD configuration MUST be validated before presenting to the user.

Validation Process

  1. Primary validation path: after generating a complete pipeline, invoke the devops-skills:gitlab-ci-validator skill: Skill: devops-skills:gitlab-ci-validator
  2. Script fallback path (if validator skill cannot be invoked): PIPELINE_FILE="<generated-output-path>" # From repository root bash devops-skills-plugin/skills/gitlab-ci-validator/scripts/validate_gitlab_ci.sh "$PIPELINE_FILE" # From skills/gitlab-ci-generator directory bash../gitlab-ci-validator/scripts/validate_gitlab_ci.sh "$PIPELINE_FILE"

- Set PIPELINE_FILE to the exact generated file path (for example, pipelines/review.yml or .gitlab-ci.yml). - Fail fast if that file does not exist: if [[! -f "$PIPELINE_FILE"]]; then echo "ERROR: CI file not found: $PIPELINE_FILE" >&2 exit 1 fi - If the script is not executable: chmod +x devops-skills-plugin/skills/gitlab-ci-validator/scripts/validate_gitlab_ci.sh - Optional API lint fallback when GitLab project context is available: jq --null-input --arg yaml "$(<"$PIPELINE_FILE")" '.content=$yaml' \ | curl --header "Content-Type: application/json" \ --url "https://gitlab.com/api/v4/projects/:id/ci/lint?include_merged_yaml=true" \ --data @-

  1. Manual fallback path (only if both primary and script paths are unavailable):

- Run manual checks for YAML validity, stage/job references, and obvious secret exposure. - Mark output as Validation status: Manual fallback (not fully verified). - Do not claim production-ready status if Critical/High risk cannot be confidently ruled out.

  1. The validator skill/script checks:

- Validate YAML syntax - Check GitLab CI/CD schema compliance - Verify job references and dependencies - Check for best practices violations - Perform security scanning - Report any errors, warnings, or issues

  1. Analyze validation results and take action based on severity: Severity Action Required CRITICAL MUST fix before presenting. Pipeline is broken or severely insecure. HIGH MUST fix before presenting. Significant security or functionality issues. MEDIUM SHOULD fix before presenting. Apply fixes or explain why not applicable. LOW MAY fix or acknowledge. Inform user of recommendations. SUGGESTIONS Review and apply if beneficial. No fix required.
  2. Fix-and-Revalidate Loop (MANDATORY for Critical/High issues): While validation has CRITICAL or HIGH issues: 1. Edit the generated file to fix the issue 2. Re-run validation 3. Repeat until no CRITICAL or HIGH issues remain
  3. Before presenting to user, ensure:

- Zero CRITICAL issues - Zero HIGH issues - MEDIUM issues either fixed OR explained why they're acceptable - LOW issues and suggestions acknowledged

  1. When presenting the validated configuration:

- State validation status clearly - State validation path used (skill, script fallback, or manual fallback) - List any remaining MEDIUM/LOW issues with explanations - Include template/version freshness notes - Provide usage instructions - Mention any trade-offs made

Critical/High gate is strict and never optional for production-ready claims.

Validation Pass Criteria

Pipeline is READY to present when:

  • ✅ Validation path executed (validator skill or script fallback)
  • ✅ Syntax validation: PASSED
  • ✅ Security scan: No CRITICAL or HIGH issues
  • ✅ Best practices: Reviewed (warnings acceptable with explanation)

Pipeline is NOT READY when:

  • ❌ Any syntax errors exist
  • ❌ Any CRITICAL security issues exist
  • ❌ Any HIGH security issues exist
  • ❌ Job references are broken
  • ❌ Only manual fallback was used and Critical/High risks cannot be ruled out

When to Skip Validation

Only skip validation when:

  • Generating partial code snippets (not complete files)
  • Creating examples for documentation purposes
  • User explicitly requests to skip validation

Handling MEDIUM Severity Issues (REQUIRED OUTPUT)

When the validator reports MEDIUM severity issues, you MUST either fix them OR explain why they're acceptable. This explanation is REQUIRED in your output.

Required format for MEDIUM issue handling:

## Validation Issues Addressed

### MEDIUM Severity Issues

| Issue | Status | Explanation |
|-------|--------|-------------|
| [Issue code] | Fixed/Acceptable | [Why it was fixed OR why it's acceptable] |

Example MEDIUM issue explanations:

## Validation Issues Addressed

### MEDIUM Severity Issues

| Issue | Status | Explanation |
|-------|--------|-------------|
| `image-variable-no-digest` | Acceptable | Using `python:${PYTHON_VERSION}-alpine` allows flexible version management via CI/CD variables. The PYTHON_VERSION variable is controlled internally and pinned to "3.12". SHA digest pinning would require updating the digest with every image update, adding maintenance burden without significant security benefit for this use case. |
| `pip-without-hashes` | Acceptable | This pipeline installs well-known packages (pytest, flake8) from PyPI. Using `--require-hashes` would require maintaining hash files for all transitive dependencies. For internal CI/CD, the security trade-off is acceptable. For higher security environments, consider using a private PyPI mirror with verified packages. |
| `git-strategy-none` | Acceptable | The `stop-staging` and `rollback-production` jobs use `GIT_STRATEGY: none` because they only run kubectl commands that don't require source code. The scripts are inline in the YAML (not from the repo), so there's no risk of executing untrusted code. |

When to FIX vs ACCEPT:

ScenarioAction
Production/high-security environmentFIX the issue
Issue has simple fix with no downsideFIX the issue
Fix adds significant complexityACCEPT with explanation
Fix requires external changes (e.g., CI/CD variables)ACCEPT with explanation
Issue is false positive for this contextACCEPT with explanation

Reviewing Suggestions (REQUIRED OUTPUT)

When the validator provides suggestions, you MUST briefly acknowledge them and explain whether they should be applied.

Required format:

## Validator Suggestions Review

| Suggestion | Recommendation | Reason |
|------------|----------------|--------|
| [suggestion] | Apply/Skip | [Why] |

Example suggestions review:

## Validator Suggestions Review

| Suggestion | Recommendation | Reason |
|------------|----------------|--------|
| `missing-retry` on test jobs | Skip | Test jobs are deterministic and don't interact with external services. Retry would mask flaky tests rather than fail fast. |
| `parallel-opportunity` for test-unit | Apply if beneficial | Could be added if pytest supports sharding. Add `parallel: 3` with `pytest --shard=${CI_NODE_INDEX}/${CI_NODE_TOTAL}` if test suite is large enough to benefit. |
| `dag-optimization` for stop-staging | Skip | This job is manual and only runs on environment cleanup. DAG optimization wouldn't provide meaningful speedup. |
| `no-dependency-proxy` | Apply for production | Consider using `$CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX` to avoid Docker Hub rate limits. Requires GitLab Premium. |
| `environment-no-url` for rollback | Skip | Rollback jobs don't deploy new versions, so a URL would be misleading. |
| `missing-coverage` for lint job | Skip | Linting doesn't produce coverage data. This is a false positive. |

Template and Version Notes (REQUIRED OUTPUT)

After validation results, include a concise freshness note for templates and documentation assumptions.

Required format:

## Template and Version Notes

- **Template base:** [assets/templates/<file>.yml]
- **Template customization scope:** [what changed from template]
- **Version/doc basis:** [Context7, docs.gitlab.com, or local references only]
- **Freshness note:** [exact date checked, or "external lookup unavailable"]
- **Version-sensitive assumptions:** [if any]

Example:

## Template and Version Notes

- **Template base:** assets/templates/docker-build.yml
- **Template customization scope:** Added unit-test stage and environment-specific deploy rules
- **Version/doc basis:** docs.gitlab.com include-template docs + local references
- **Freshness note:** Verified template syntax on 2026-02-28
- **Version-sensitive assumptions:** Uses `Jobs/SAST.gitlab-ci.yml` template path

Usage Instructions Template (REQUIRED OUTPUT)

After presenting the validated pipeline, you MUST provide usage instructions. This is NOT optional.

Required format:

## Usage Instructions

### Required CI/CD Variables

Configure these variables in **Settings → CI/CD → Variables**:

| Variable | Description | Masked | Protected |
|----------|-------------|--------|-----------|
| [VARIABLE_NAME] | [Description] | Yes/No | Yes/No |

### Setup Steps

1. [First setup step]
2. [Second setup step]
...

### Pipeline Behavior

- **On push to `develop`:** [What happens]
- **On push to `main`:** [What happens]
- **On tag `vX.Y.Z`:** [What happens]

### Customization

[Any customization notes]

Example usage instructions:

## Usage Instructions

### Required CI/CD Variables

Configure these variables in **Settings → CI/CD → Variables**:

| Variable | Description | Masked | Protected |
|----------|-------------|--------|-----------|
| `KUBE_CONTEXT` | Kubernetes cluster context name | No | Yes |
| `KUBE_NAMESPACE_STAGING` | Staging namespace (default: staging) | No | No |
| `KUBE_NAMESPACE_PRODUCTION` | Production namespace (default: production) | No | Yes |

**Note:** `CI_REGISTRY_USER`, `CI_REGISTRY_PASSWORD`, and `CI_REGISTRY` are automatically provided by GitLab.

### Kubernetes Integration Setup

1. **Enable Kubernetes integration** in **Settings → Infrastructure → Kubernetes clusters**
2. **Add your cluster** using the agent-based or certificate-based method
3. **Create namespaces** for staging and production if they don't exist:

kubectl create namespace staging kubectl create namespace production


1. **Ensure deployment exists** in the target namespaces before running the pipeline

### Pipeline Behavior

- **On push to `develop`:** Runs tests → builds Docker image → deploys to staging automatically
- **On push to `main`:** Runs tests → builds Docker image → manual deployment to production
- **On tag `vX.Y.Z`:** Runs tests → builds Docker image → manual deployment to production

### Customization

- Update `APP_NAME` variable to match your Kubernetes deployment name
- Modify environment URLs in `deploy-staging` and `deploy-production` jobs
- Add Helm deployment by uncommenting the Helm jobs in the template

Best Practices to Enforce

Reference references/best-practices.md for comprehensive guidelines. Key principles:

Mandatory Standards

  1. Security First:

- Pin Docker images to specific versions (not :latest) - Use masked variables for secrets ($CI_REGISTRY_PASSWORD should be masked) - Never expose secrets in logs - Validate inputs and sanitize variables - Use protected variables for sensitive environments

  1. Performance:

- Implement caching for dependencies (ALWAYS for npm, pip, maven, etc.) - Use needs keyword for DAG optimization (ALWAYS when jobs have dependencies) - Set artifact expiration to avoid storage bloat (ALWAYS set expire_in) - Use parallel execution *when applicable* (only if test framework supports sharding) - Minimize unnecessary artifact passing (use artifacts: false in needs when not needed)

  1. Reliability:

- Set explicit timeout for ALL jobs (prevents hanging jobs, typically 10-30 minutes) - Even when using default or extends for timeout inheritance, add explicit timeout to each job - This improves readability and avoids validator warnings about missing timeout - Example: A job using .deploy-template should still have timeout: 15 minutes explicitly set - Add retry logic for flaky operations (network calls, external API interactions) - Use allow_failure appropriately for non-critical jobs (linting, optional scans) - Use resource_group for deployment jobs (prevents concurrent deployments) - Add interruptible: true for test jobs (allows cancellation when new commits push)

  1. Naming:

- Job names: Descriptive, kebab-case (e.g., "build-application", "test-unit") - Stage names: Short, clear (e.g., "build", "test", "deploy") - Variable names: UPPER_SNAKE_CASE for environment variables - Environment names: lowercase (e.g., "production", "staging")

  1. Configuration Organization:

- Use extends for reusable configuration (PREFERRED over YAML anchors for GitLab CI) - Use include for modular pipeline files (organize large pipelines into multiple files) - Use rules instead of deprecated only/except (ALWAYS) - Define default settings for common configurations (image, timeout, cache, tags) - Use YAML anchors *only when necessary* for complex repeated structures within a single file - Note: extends is preferred because it provides better visualization in GitLab UI

  1. Error Handling:

- Set appropriate timeout values (ALWAYS - prevents hanging jobs) - Configure retry behavior for flaky operations (network calls, external APIs) - Use allow_failure: true for non-blocking jobs (linting, optional scans) - Add cleanup steps with after_script *when needed* (e.g., stopping test containers, cleanup) - Implement notification mechanisms *when required* (e.g., Slack integration for deployment failures)

Resources

References (Tiered Loading)

  • references/best-practices.md (Tier 1: required for all) - Comprehensive GitLab CI/CD best practices

- Security patterns, performance optimization - Pipeline design, configuration organization - Common patterns and anti-patterns - Use this: When implementing any GitLab CI/CD resource

  • references/common-patterns.md (Tier 1: required for all) - Frequently used pipeline patterns

- Basic CI pipeline patterns - Docker build and push patterns - Deployment patterns (K8s, cloud platforms) - Multi-project and parent-child patterns - Use this: When selecting which pattern to use

  • references/gitlab-ci-reference.md (Tier 2: required for Full mode) - GitLab CI/CD YAML syntax reference

- Complete keyword reference - Job configuration options - Rules and conditional execution - Variables and environments - Use this: For syntax and keyword details

  • references/security-guidelines.md (Tier 2: required for Full mode) - Security best practices

- Secrets management - Image security - Script security - Artifact security - Use this: For security-sensitive configurations

Assets (Templates to Customize)

  • assets/templates/basic-pipeline.yml - Complete basic pipeline template
  • assets/templates/docker-build.yml - Docker build pipeline template
  • assets/templates/kubernetes-deploy.yml - Kubernetes deployment template
  • assets/templates/multi-project.yml - Multi-project orchestration template

How to use templates:

  1. Copy the relevant template structure
  2. Replace all [PLACEHOLDERS] with actual values
  3. Customize logic based on user requirements
  4. Remove unnecessary sections
  5. Validate the result

Typical Workflow Example

User request: "Create a CI/CD pipeline for a Node.js app with testing and Docker deployment"

Process:

  1. ✅ Understand requirements:

- Node.js application - Run tests (unit, lint) - Build Docker image - Deploy to container registry - Trigger on push and merge requests

  1. ✅ Reference resources:

- Check references/best-practices.md for pipeline structure - Check references/common-patterns.md for Node.js + Docker pattern - Use assets/templates/docker-build.yml as base

  1. ✅ Generate pipeline:

- Define stages (build, test, dockerize, deploy) - Create build job with caching - Create test jobs (unit, lint) with needs optimization - Create Docker build job - Add proper artifact management - Pin Docker images to versions - Include proper secrets handling

  1. ✅ Validate:

- Invoke devops-skills:gitlab-ci-validator skill - Fix any reported issues - Re-validate if needed

  1. ✅ Present to user:

- Show validated pipeline - Explain key sections - Provide usage instructions - Mention successful validation

Common Pipeline Patterns

Basic Three-Stage Pipeline

stages:
  - build
  - test
  - deploy

build-job:
  stage: build
  script: make build

test-job:
  stage: test
  script: make test

deploy-job:
  stage: deploy
  script: make deploy
  when: manual

DAG Pipeline with Needs

stages:
  - build
  - test
  - deploy

build-frontend:
  stage: build
  script: npm run build:frontend

build-backend:
  stage: build
  script: npm run build:backend

test-frontend:
  stage: test
  needs: [build-frontend]
  script: npm test:frontend

test-backend:
  stage: test
  needs: [build-backend]
  script: npm test:backend

deploy:
  stage: deploy
  needs: [test-frontend, test-backend]
  script: make deploy

Conditional Execution with Rules

deploy-staging:
  script: deploy staging
  rules:
    - if: $CI_COMMIT_BRANCH == "develop"
      when: always
    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
      when: manual

deploy-production:
  script: deploy production
  rules:
    - if: $CI_COMMIT_BRANCH == "main"
      when: manual
    - when: never

Matrix Parallel Jobs

test:
  parallel:
    matrix:
      - NODE_VERSION: ['18', '20', '22']
        OS: ['ubuntu', 'alpine']
  image: node:${NODE_VERSION}-${OS}
  script:
    - npm test

Error Messages and Troubleshooting

If devops-skills:gitlab-ci-validator reports errors:

  1. Syntax errors: Fix YAML formatting, indentation, or structure
  2. Job reference errors: Ensure referenced jobs exist in needs/dependencies
  3. Stage errors: Verify all job stages are defined in stages list
  4. Rule errors: Check rules syntax and variable references
  5. Security warnings: Address hardcoded secrets and image pinning

If GitLab documentation is not found:

  1. Try Context7 first: mcp__context7__resolve-library-id -> mcp__context7__query-docs
  2. If needed, run web.search_query scoped to docs.gitlab.com
  3. Open specific pages with web.open and extract only required syntax/variables
  4. If offline, continue with local references and add version-assumption notes

PRE-DELIVERY CHECKLIST

MANDATORY: Before presenting ANY generated pipeline to the user, verify ALL items:

Mode and References

  • Complexity mode selected (Targeted, Lightweight, or Full)
  • For Targeted mode: only directly relevant files/references loaded
  • For Lightweight/Full modes: read references/best-practices.md before generating
  • For Lightweight/Full modes: read references/common-patterns.md before generating
  • For Lightweight/Full modes: read appropriate template from assets/templates/ for the pipeline type
  • For Full mode: read references/gitlab-ci-reference.md
  • For Full mode: read references/security-guidelines.md
  • Output explicit confirmation statement for Lightweight/Full modes

Generation Standards Applied

  • All Docker images pinned to specific versions (no :latest)
  • All jobs have explicit timeout (10-30 minutes typically)
  • default block includes timeout if defined
  • Hidden templates (.template-name) include timeout
  • Caching configured for dependency installation
  • needs keyword used for DAG optimization where appropriate
  • rules used (not deprecated only/except)
  • resource_group configured for deployment jobs
  • Artifacts have expire_in set
  • Secrets use masked CI/CD variables (not hardcoded)

Validation Completed

  • Validation executed via devops-skills:gitlab-ci-validator or script fallback
  • Zero CRITICAL issues
  • Zero HIGH issues
  • MEDIUM issues addressed (fixed OR explained in output using required format)
  • LOW issues acknowledged (listed in output)
  • Suggestions reviewed (using required format)
  • Re-validated after any fixes
  • If only manual fallback was available: output marked as not fully verified

Presentation Ready

  • Validation status stated clearly
  • Validation path stated clearly (skill, script fallback, or manual fallback)
  • MEDIUM/LOW issues explained (with table format)
  • Suggestions review provided (with table format)
  • Template and version notes provided (with required format)
  • Usage instructions provided (with required sections)
  • Key sections explained

If any checkbox is unchecked, DO NOT present the pipeline. Complete the missing steps first.

Required Output Sections

Use the smallest valid output profile for the selected mode.

Full mode (complete/complex pipeline):

  1. Reference Analysis Complete (from Step 3)
  2. Generated Pipeline (the .gitlab-ci.yml content)
  3. Validation Results Summary (pass/fail status)
  4. Validation Issues Addressed (MEDIUM issues table)
  5. Validator Suggestions Review (suggestions table)
  6. Template and Version Notes (template base + freshness/version assumptions)
  7. Usage Instructions (variables, setup, behavior)

Lightweight mode (complete/simple pipeline):

  1. Reference Analysis Complete (Lightweight)
  2. Generated Pipeline
  3. Validation Results Summary
  4. Template and Version Notes
  5. Usage Instructions
  • Add Validation Issues Addressed only when MEDIUM issues exist.
  • Add Validator Suggestions Review only when suggestions are present.

Targeted mode (review/Q&A/snippet/focused fix):

  • Provide only the directly requested artifact/answer and a concise rationale.
  • Include validation/fallback disclosure if validation was not run.
  • Do not force full pipeline-generation sections.

Done Criteria

This skill execution is done when:

  • Simple requests use Lightweight mode without unnecessary Tier 2 loading.
  • Complex requests use Full mode with Tier 2 references and complete confirmation.
  • Validation enforces strict Critical/High gates before production-ready claims.
  • Output includes template/version freshness notes plus usage instructions.
  • Any fallback path is explicit and does not hide verification gaps.

Summary

Always follow this sequence when generating GitLab CI/CD pipelines:

  1. Classify Complexity - choose Targeted, Lightweight, or Full mode.
  2. Load References - use tiered loading:

- For Targeted mode, load only directly relevant files. - For Lightweight/Full modes, load: - references/best-practices.md - references/common-patterns.md - Plus the appropriate template from assets/templates/ - For Full mode, also load: - references/gitlab-ci-reference.md - references/security-guidelines.md

  1. Confirm - Output targeted response or Lightweight/Full reference analysis as required by mode.
  2. Generate - Use templates and follow standards (security, caching, naming, explicit timeout on ALL jobs).
  3. Lookup Docs When Needed - Context7 first, then web.search_query/web.open, with offline fallback notes when constrained.
  4. Validate - Use devops-skills:gitlab-ci-validator, script fallback if needed.
  5. Fix - Resolve all Critical/High issues, address Medium issues.
  6. Verify Checklist - Confirm all pre-delivery checklist items.
  7. Present - Deliver output with validation summary, template/version notes, and usage instructions.

Generate GitLab CI/CD pipelines that are:

  • ✅ Secure with pinned images and proper secrets handling
  • ✅ Following current best practices and conventions
  • ✅ Using proper configuration organization (extends, includes)
  • ✅ Optimized for performance (caching, needs, DAG)
  • ✅ Properly documented with usage instructions
  • ✅ Validated with zero Critical/High issues
  • ✅ Production-ready and maintainable

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.84%
按下载量换算355

Claude

31.53%
按下载量换算330

Cursor

16.33%
按下载量换算171

Gemini CLI

8.45%
按下载量换算89

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills