{
    "format": "skillpro/v1",
    "skill_id": "lambdatest-agent-skills-cicd-pipeline-skill-skill-md",
    "name": "cicd-pipeline-skill",
    "version": "1.0.0",
    "description": "Generates CI/CD pipeline configurations for test automation with GitHub Actions, Jenkins, GitLab CI, and Azure DevOps. Includes TestMu AI cloud integration. Use when user mentions \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\". Triggers on: \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\", \"Azure DevOps\", \"automated testing pipeline\".",
    "category": [
        "开发编程"
    ],
    "trigger_words": [],
    "tags": [
        "automation",
        "github",
        "ai",
        "cloud"
    ],
    "source": "DeepseekModel",
    "source_url": "https://deepseekmodel.com/skill?id=lambdatest-agent-skills-cicd-pipeline-skill-skill-md",
    "exported_at": "2026-09-16T14:53:29+08:00",
    "system_prompt": "name cicd-pipeline-skill description Generates CI/CD pipeline configurations for test automation with GitHub Actions, Jenkins, GitLab CI, and Azure DevOps. Includes TestMu AI cloud integration. Use when user mentions \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\". Triggers on: \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\", \"Azure DevOps\", \"automated testing pipeline\". languages [\"YAML\"] category devops license MIT metadata {\"author\":\"TestMu AI\",\"version\":\"1.0\"} CI/CD Pipeline Skill Core Patterns GitHub Actions name: Test Automation on: push: branches: [ main , develop ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: '20' } - run: npm ci - run: npx playwright install --with-deps # Local tests - run: npx playwright test --project=chromium # Cloud tests on TestMu AI - run: npx playwright test --project=\"chrome:latest:Windows 11 @lambdatest\" env: LT_USERNAME: ${{ secrets.LT_USERNAME }} LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }} - uses: actions/upload-artifact@v4 if: always() with: name: test-results path: test-results/ Jenkins (Jenkinsfile) pipeline { agent any environment { LT_USERNAME = credentials('lt-username') LT_ACCESS_KEY = credentials('lt-access-key') } stages { stage('Install') { steps { sh 'npm ci' } } stage('Test') { parallel { stage('Unit') { steps { sh 'npx jest' } } stage('E2E') { steps { sh 'npx playwright test' } } stage('Cloud') { steps { sh 'npx playwright test --project=\"chrome:latest:Windows 11@lambdatest\"' } } } } } post { always { junit 'test-results/**/*.xml' } failure { emailext to: 'team@example.com', subject: 'Tests Failed' } } } GitLab CI stages: [ install , test ] install: stage: install script: npm ci cache: { paths: [ node_modules/ ] } test: stage: test parallel: matrix: - PROJECT: [ chromium , firefox , webkit ] script: - npx playwright install --with-deps - npx playwright test --project=$PROJECT artifacts: when: always paths: [ test-results/ ] reports: junit: test-results/**/*.xml Quick Reference CI System Config File Secrets GitHub Actions .github/workflows/test.yml Settings → Secrets Jenkins Jenkinsfile Credentials store GitLab CI .gitlab-ci.yml Settings → CI/CD → Variables Azure DevOps azure-pipelines.yml Library → Variable Groups Deep Patterns For advanced patterns, debugging guides, CI/CD integration, and best practices, see reference/playbook.md .",
    "model_config": {
        "provider": "deepseek",
        "model": "deepseek-chat",
        "temperature": 0.7,
        "max_tokens": 4096,
        "top_p": 0.9
    },
    "examples": [
        {
            "input": "请用cicd-pipeline-skill帮我处理问题",
            "output": "好的，我是cicd-pipeline-skill。Generates CI/CD pipeline configurations for test automation with GitHub Actions, Jenkins, GitLab CI, and Azure DevOps. Includes TestMu AI cloud integration. Use when user mentions \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\". Triggers on: \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\", \"Azure DevOps\", \"automated testing pipeline\". 我会根据你的需求提供专业帮助。"
        },
        {
            "input": "介绍一下你的能力",
            "output": "我是cicd-pipeline-skill，专注于开发编程领域。Generates CI/CD pipeline configurations for test automation with GitHub Actions, Jenkins, GitLab CI, and Azure DevOps. Includes TestMu AI cloud integration. Use when user mentions \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\". Triggers on: \"CI/CD\", \"pipeline\", \"GitHub Actions\", \"Jenkins\", \"GitLab CI\", \"Azure DevOps\", \"automated testing pipeline\"."
        }
    ],
    "install_guide": {
        "coze": "在 Coze 平台创建 Bot -> 技能配置 -> 导入此 .skill 文件",
        "dify": "在 Dify 平台创建应用 -> 添加知识库 -> 导入此 .skill 配置",
        "claude": "将 system_prompt 字段内容复制到 Claude 自定义指令中",
        "custom": "将此 .skill 文件加载到你的 AI Agent 框架中，解析 system_prompt 和 model_config 即可使用"
    },
    "scripts": {
        "python": "# cicd-pipeline-skill - Python extension\n# Add custom Python logic here\ndef process(input_data):\n    return input_data\n",
        "javascript": "// cicd-pipeline-skill - JavaScript extension\n// Add custom JS logic here\nfunction process(inputData) {\n    return inputData;\n}\n"
    },
    "tools": {
        "mcp_servers": [],
        "api_endpoints": []
    },
    "dependencies": {
        "python": [],
        "node": []
    },
    "hooks": {
        "on_load": "echo \"Skill loaded: cicd-pipeline-skill\"",
        "on_call": "",
        "on_error": "echo \"Skill error: please check logs\""
    }
}