🎯

azure-test-plans

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Enables creating, managing, and executing Azure Test Plans with comprehensive test case, suite, and result tracking capabilities.

📦

Part of

ntaksh42/agents(78 items)

azure-test-plans

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-test-plans
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Create and manage Azure Test Plans including test cases, suites, and execution. Use when setting up test plans or managing QA processes.

Overview

# Azure Test Plans Skill

Azure Test Plansでテスト管理を行うスキルです。

主な機能

  • テストケース作成: 手動・自動テスト
  • テストスイート: グループ化
  • テスト実行: 結果記録
  • バグ報告: テスト失敗からバグ作成

テストケース作成

REST API (Python)

```python

import requests

import json

organization = "myorg"

project = "MyProject"

pat = "your-pat"

url = f"https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/$Test Case?api-version=7.0"

headers = {

"Content-Type": "application/json-patch+json",

"Authorization": f"Basic {pat}"

}

test_case = [

{

"op": "add",

"path": "/fields/System.Title",

"value": "ログイン機能のテスト"

},

{

"op": "add",

"path": "/fields/Microsoft.VSTS.TCM.Steps",

"value": "1. ログインページを開くログインフォームが表示される2. メールアドレスとパスワードを入力3. ログインボタンをクリックダッシュボードにリダイレクトされる"

},

{

"op": "add",

"path": "/fields/Microsoft.VSTS.TCM.AutomatedTestName",

"value": "LoginTests.TestSuccessfulLogin"

}

]

response = requests.post(url, headers=headers, data=json.dumps(test_case))

print(response.json())

```

テストスイート作成

```bash

# テストプラン作成

az boards test-plan create \

--name "Sprint 1 Tests" \

--area-path "MyProject" \

--iteration "MyProject\\Sprint 1"

# テストスイート作成

az boards test-suite create \

--plan-id 1 \

--name "Login Tests" \

--suite-type "StaticTestSuite"

```

自動テスト統合

```yaml

# Azure Pipeline with Test Results

steps:

- task: VSTest@2

inputs:

testSelector: 'testAssemblies'

testAssemblyVer2: |

*\test*.dll

!*\TestAdapter.dll

!\obj\

searchFolder: '$(System.DefaultWorkingDirectory)'

codeCoverageEnabled: true

testRunTitle: 'Automated Tests'

publishRunAttachments: true

```

バージョン情報

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