スキル一覧に戻る
lbussell

azure-pipelines-tasks

by lbussell

Agent skills

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: azure-pipelines-tasks description: Finds Azure Pipelines task implementation source code. Use when investigating task behavior, debugging pipeline issues, or understanding how built-in tasks work.

Azure Pipelines Tasks Source Code

The source code for Azure DevOps built-in pipeline tasks lives in microsoft/azure-pipelines-tasks.

Finding Task Source Code

Tasks are in Tasks/<TaskName>V<Version>/ directories. The naming convention is:

  • Tasks/AzureCLIV2/ → AzureCLI@2
  • Tasks/DotNetCoreCLIV2/ → DotNetCoreCLI@2
  • Tasks/PublishBuildArtifactsV1/ → PublishBuildArtifacts@1

Key Files in Each Task

FilePurpose
task.jsonTask definition: inputs, outputs, execution entry point
*.ts or *.ps1Main implementation (check task.json for entry point)
Strings/resources.resjson/en-US/resources.resjsonUser-facing strings and error messages
Tests/Unit tests showing expected behavior

Workflow

  1. Identify the task name and version from the pipeline YAML (e.g., AzureCLI@2)
  2. Search the repo for the task directory:
    gh api repos/microsoft/azure-pipelines-tasks/contents/Tasks/<TaskName>V<Version>
    
  3. Read task.json to find the execution entry point
  4. Read the implementation file to understand behavior

Example: Finding AzureCLI@2 Implementation

# Get task definition
gh api repos/microsoft/azure-pipelines-tasks/contents/Tasks/AzureCLIV2/task.json

# Get main implementation
gh api repos/microsoft/azure-pipelines-tasks/contents/Tasks/AzureCLIV2/azureclitask.ts

Searching for Specific Behavior

Use GitHub code search to find where specific logic is implemented:

repo:microsoft/azure-pipelines-tasks path:Tasks/<TaskName> <search_term>

スコア

総合スコア

55/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です