بنقرة واحدة
tiger-cli
Use the tiger cli tool to query live Azure DevOps and Helix CI/CD data
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use the tiger cli tool to query live Azure DevOps and Helix CI/CD data
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Used for querying CI/CD build and test data from Azure DevOps
Identify and access crash dumps from CI test failures in Azure DevOps, for both normal test runs and Helix-based tests.
File a "Known Build Error" GitHub issue to track a recurring build or test failure in the dotnet infrastructure
Access CI/CD health reports and state-of-the-build summaries produced by the Tiger health agent
| name | tiger-cli |
| description | Use the tiger cli tool to query live Azure DevOps and Helix CI/CD data |
The Tiger CLI tool can query live Azure DevOps and Helix data. Use it when you need real-time CI/CD information that may not yet be in the local database.
The Tiger executable is located at ../../tiger relative to this skill file. Run it as:
dotnet run --project src/Tiger/Tiger.csproj --
All output is structured JSON suitable for programmatic consumption.
tiger azdo — Azure DevOps queries| Command | Description |
|---|---|
azdo builds | Get recent builds, optionally filtered by definition ID |
azdo tests <build-id> | Get test failures for a build |
azdo test-summary <build-id> | Get test counts per job for a build |
azdo timeline <build-id> | Get the timeline for a build |
azdo artifacts <build-id> | Get artifacts for a build |
azdo jobs <build-id> | Get job records from a build timeline |
azdo download <build-id> | Download an artifact from a build |
azdo download-dumps <build-id> | Download crash dump files from build artifacts |
azdo pr-builds | Get builds for a pull request |
azdo repo-builds | Get builds for a repository; use --repository-type TfsGit for Azure Repos |
tiger helix — Helix queries| Command | Description |
|---|---|
helix workitems | List work items for a Helix job |
helix console | Get console output for a Helix work item |
helix files | List or download files from a Helix work item |
Each command supports --help for full argument and option details. Always run
--help on a command before using it to discover required arguments and available
options. For example:
dotnet run --project src/Tiger/Tiger.csproj -- azdo tests --help
dotnet run --project src/Tiger/Tiger.csproj -- helix workitems --help