一键导入
azure-devops
Build and manage CI/CD pipelines with Azure DevOps. Configure builds, releases, and automate software delivery workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and manage CI/CD pipelines with Azure DevOps. Configure builds, releases, and automate software delivery workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Interactive onboarding workflow that interviews users to understand their coding goals and generates PR-ready implementation plans. Use when starting a new development task to ensure clear requirements and structured execution.
Implement security best practices for Gamma integration. Use when securing API keys, implementing access controls, or auditing Gamma security configuration. Trigger with phrases like "gamma security", "gamma API key security", "gamma secure", "gamma credentials", "gamma access control".
Write effective technical documentation including READMEs, API docs, architecture decisions, and inline code documentation.
Develop, deploy, and manage Azure Functions for serverless computing. Supports HTTP triggers, timers, queues, and event-driven architectures.
Manage Azure resources effectively using CLI, Portal, Bicep, and ARM templates. Use for provisioning, organizing, and maintaining cloud infrastructure.
Work with Azure Blob, Table, Queue, and File storage. Implement data persistence, message queuing, and file management solutions.
基于 SOC 职业分类
| name | azure-devops |
| description | Build and manage CI/CD pipelines with Azure DevOps. Configure builds, releases, and automate software delivery workflows. |
| triggers | ["/azure devops","/ado pipelines"] |
This skill covers building, configuring, and optimizing CI/CD pipelines using Azure DevOps Services for automated software delivery.
Use this skill when you need to:
YAML Pipelines (Recommended) Store pipeline definitions in version control alongside code:
# azure-pipelines.yml
trigger:
branches:
include:
- main
- develop
variables:
buildConfiguration: 'Release'
dotnetSdkVersion: '8.x'
stages:
- stage: Build
jobs:
- job: BuildAndTest
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UseDotNet@2
inputs:
version: $(dotnetSdkVersion)
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'Build solution'
- task: DotNetCoreCLI@2
inputs:
command: 'test'
projects: '**/*Tests.csproj'
displayName: 'Run tests'
- stage: Deploy
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
jobs:
- deployment: DeployToProd
environment: 'Production'
strategy:
runOnce:
deploy:
steps:
- script: echo "Deploying to production..."
Folder Structure
azure-pipelines/
├── ci.yml # Continuous integration
├── pr-validation.yml # Pull request builds
├── deploy-dev.yml # Development deployment
├── deploy-staging.yml # Staging deployment
└── deploy-prod.yml # Production deployment
Template Reuse
templates/ folderVariable Groups
Service Connections
Pipeline Performance
Deployment Strategies
Testing Integration
See the examples/ directory for:
dotnet-webapp.yml - ASP.NET Core CI/CD pipelinenodejs-container.yml - Node.js Docker build and pushinfrastructure-deployment.yml - Terraform deploymentmulti-environment.yml - Dev/Staging/Prod workflow