🎯

azure-release-pipeline

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Automates Azure release pipelines with advanced deployment strategies, environment management, and rollback capabilities.

📦

Part of

ntaksh42/agents(78 items)

azure-release-pipeline

Installation

📋 No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add ntaksh42/agents --skill azure-release-pipeline
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Design Azure release pipelines with deployment strategies and rollback. Use when creating release automation or deployment strategies.

Overview

# Azure Release Pipeline Skill

Azure Releaseパイプラインを構築するスキルです。

主な機能

  • 環境管理: Dev、Staging、Production
  • 承認フロー: 手動承認ゲート
  • デプロイ戦略: Blue-Green、Rolling
  • ロールバック: 自動・手動ロールバック

Classic Release Pipeline (YAML代替)

```yaml

# 環境デプロイ with approvals

stages:

- stage: Deploy_Staging

jobs:

- deployment: DeployStaging

environment: Staging

strategy:

runOnce:

deploy:

steps:

- task: AzureWebApp@1

inputs:

azureSubscription: 'Azure-Connection'

appName: 'myapp-staging'

package: '$(Pipeline.Workspace)/drop'

- stage: Approval

dependsOn: Deploy_Staging

jobs:

- job: WaitForValidation

pool: server

steps:

- task: ManualValidation@0

timeoutInMinutes: 1440

inputs:

notifyUsers: 'approvers@example.com'

instructions: 'Please validate staging and approve'

- stage: Deploy_Production

dependsOn: Approval

jobs:

- deployment: DeployProduction

environment: Production

strategy:

runOnce:

deploy:

steps:

- task: AzureWebApp@1

inputs:

azureSubscription: 'Azure-Connection'

appName: 'myapp-prod'

package: '$(Pipeline.Workspace)/drop'

```

デプロイゲート

```yaml

# Time-based gate

gates:

- task: InvokeRESTAPI@1

inputs:

connectionType: 'connectedServiceName'

method: 'GET'

urlSuffix: '/health'

waitForCompletion: 'true'

successCriteria: 'eq(root.status, "healthy")'

```

バージョン情報

  • Version: 1.0.0

More from this repository10

🎯
document-summarizer🎯Skill

Generates concise summaries of documents by extracting key information and condensing text into a more digestible format.

🎯
algorithmic-art🎯Skill

Generates creative algorithmic art using p5.js, creating unique visual designs with patterns, fractals, and dynamic animations.

🎯
sql-query-helper🎯Skill

Generates, optimizes, and explains SQL queries with best practices, providing intelligent database query solutions across multiple database platforms.

🎯
plantuml-diagram🎯Skill

Generates PlantUML diagrams (class, sequence, component) to visually represent system architecture and UML models.

🎯
azure-pipelines-generator🎯Skill

Generates Azure Pipelines YAML configurations automatically for CI/CD workflows, supporting multi-stage builds and deployments across different environments.

🎯
kubernetes-helper🎯Skill

Assists Kubernetes users by generating, validating, and explaining Kubernetes manifests and configurations with AI-powered insights.

🎯
using-git-worktrees🎯Skill

Creates isolated Git worktrees with smart directory selection and safety verification for feature work and branch management.

🎯
dependency-analyzer🎯Skill

Analyzes project dependencies, identifies potential conflicts, and provides insights into library compatibility and version management.

🎯
brainstorming🎯Skill

Collaboratively refines rough ideas into fully-formed designs through systematic questioning, alternative exploration, and incremental validation.

🎯
azure-boards-helper🎯Skill

Manages Azure Boards work items by creating, querying, and automating work item workflows using WIQL and comprehensive templates.