🎯

azure-devops-migration

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Migrates CI/CD configurations from GitHub Actions, Jenkins, and GitLab CI to Azure Pipelines with automated YAML conversion.

📦

Part of

ntaksh42/agents(78 items)

azure-devops-migration

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-devops-migration
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Plan and execute Azure DevOps migrations between organizations or projects. Use when migrating Azure DevOps resources or consolidating projects.

Overview

# Azure DevOps Migration Skill

他のCI/CDツールからAzure DevOpsへの移行を支援するスキルです。

主な機能

  • GitHub Actions → Azure Pipelines: YAML変換
  • Jenkins → Azure Pipelines: Jenkinsfile変換
  • GitLab CI → Azure Pipelines: .gitlab-ci.yml変換

GitHub Actions → Azure Pipelines

GitHub Actions

```yaml

name: CI

on: [push]

jobs:

build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3

- uses: actions/setup-node@v3

with:

node-version: '18'

- run: npm install

- run: npm test

```

Azure Pipelines

```yaml

trigger:

- '*'

pool:

vmImage: 'ubuntu-latest'

steps:

- checkout: self

- task: NodeTool@0

inputs:

versionSpec: '18'

- script: npm install

- script: npm test

```

Jenkins → Azure Pipelines

Jenkinsfile

```groovy

pipeline {

agent any

stages {

stage('Build') {

steps {

sh 'npm install'

sh 'npm run build'

}

}

stage('Test') {

steps {

sh 'npm test'

}

}

}

}

```

Azure Pipelines

```yaml

stages:

- stage: Build

jobs:

- job: BuildJob

steps:

- script: npm install

- script: npm run build

- stage: Test

jobs:

- job: TestJob

steps:

- script: npm test

```

バージョン情報

  • 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.