🎯

azure-repos-helper

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Manages Azure Repos operations like creating pull requests, reviewing code, and enforcing branch policies with Azure CLI commands.

📦

Part of

ntaksh42/agents(78 items)

azure-repos-helper

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-repos-helper
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Manage Azure Repos including branches, pull requests, and code reviews. Use when working with Azure Repos or managing repository operations.

Overview

# Azure Repos Helper Skill

Azure Reposでのリポジトリ管理を支援するスキルです。

主な機能

  • リポジトリ操作: クローン、プッシュ、プル
  • ブランチポリシー: PR必須、レビュー必須
  • コードレビュー: PR作成、レビュー
  • ブランチ管理: ブランチ戦略
  • Git操作: Azure DevOps特有の操作

ブランチポリシー設定

main ブランチ保護

```json

{

"isEnabled": true,

"isBlocking": true,

"type": {

"id": "fa4e907d-c16b-4a4c-9dfa-4906e5d171dd"

},

"settings": {

"minimumApproverCount": 2,

"creatorVoteCounts": false,

"allowDownvotes": false,

"resetOnSourcePush": true,

"requireVoteOnLastIteration": true,

"blockLastPusherVote": true

}

}

```

ビルド検証

```json

{

"isEnabled": true,

"isBlocking": true,

"type": {

"id": "0609b952-1397-4640-95ec-e00a01b2c241"

},

"settings": {

"buildDefinitionId": 123,

"displayName": "PR Build Validation",

"validDuration": 720,

"queueOnSourceUpdateOnly": true

}

}

```

PR作成(Azure CLI)

```bash

# PR作成

az repos pr create \

--repository MyRepo \

--source-branch feature/new-feature \

--target-branch main \

--title "新機能: ユーザー認証" \

--description "JWT認証を実装しました" \

--reviewers user1@example.com user2@example.com \

--work-items 123 456

# PRリスト取得

az repos pr list \

--repository MyRepo \

--status active

# PR承認

az repos pr update \

--id 123 \

--status approved

# PRマージ

az repos pr update \

--id 123 \

--status completed \

--merge-commit-message "Merged PR 123: Add user authentication"

```

.gitattributes

```

# Auto detect text files and perform LF normalization

  • text=auto

# Source code

*.cs text diff=csharp

*.java text diff=java

*.py text diff=python

*.js text

*.ts text

# Binary files

*.png binary

*.jpg binary

*.dll binary

*.exe binary

```

バージョン情報

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