🎯

azure-service-connections

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Configures and manages Azure DevOps service connections for seamless cloud service integrations and deployment credentials across Azure, GitHub, Docker, and Kubernetes.

📦

Part of

ntaksh42/agents(78 items)

azure-service-connections

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-service-connections
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Configure Azure DevOps service connections for deployments. Use when setting up cloud service integrations or deployment credentials.

Overview

# Azure Service Connections Skill

Azure DevOpsサービス接続を管理するスキルです。

主な機能

  • Azure接続: Azure Resource Manager
  • GitHub接続: リポジトリ連携
  • Docker Hub: コンテナレジストリ
  • Kubernetes: AKSクラスター

Azure Resource Manager接続

サービスプリンシパル作成

```bash

# サービスプリンシパル作成

az ad sp create-for-rbac \

--name "azure-devops-sp" \

--role contributor \

--scopes /subscriptions/{subscription-id}

# 出力

{

"appId": "xxx",

"displayName": "azure-devops-sp",

"password": "yyy",

"tenant": "zzz"

}

```

Pipeline設定

```yaml

resources:

- type: ServiceConnection

name: Azure-Production

serviceConnection: 'Azure-Prod-Connection'

steps:

- task: AzureCLI@2

inputs:

azureSubscription: 'Azure-Prod-Connection'

scriptType: 'bash'

scriptLocation: 'inlineScript'

inlineScript: |

az group list

```

GitHub接続

```yaml

resources:

repositories:

- repository: source-repo

type: github

endpoint: GitHub-Connection

name: myorg/myrepo

trigger:

- main

pool:

vmImage: 'ubuntu-latest'

steps:

- checkout: source-repo

- script: echo "Building from GitHub"

```

Docker Registry

```yaml

resources:

containers:

- container: build-container

image: myregistry.azurecr.io/build:latest

endpoint: Docker-Registry-Connection

steps:

- script: |

docker build -t myapp:$(Build.BuildId) .

docker push myapp:$(Build.BuildId)

```

バージョン情報

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