원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
| 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