| name | az-tool |
| description | LOAD THIS SKILL when: working with Azure DevOps pipelines, builds, repos, or checking build logs and failures. Contains all az-tool commands. |
az-tool (Azure DevOps)
Azure DevOps tool — pipelines, builds, repos (read-only). Part of @blogic-cz/agent-tools.
How to Run
Run via bun az-tool (requires @blogic-cz/agent-tools as a dev dependency).
NEVER run bare az — the credential guard will block it.
Auth: az login session.
Commands
bun az-tool cmd --cmd "pipelines list"
bun az-tool cmd --cmd "pipelines show --id 123"
bun az-tool cmd --cmd "pipelines runs list --top 5"
bun az-tool cmd --cmd "pipelines runs show --id 456"
bun az-tool build summary --build-id 456
bun az-tool build timeline --build-id 456
bun az-tool build failed-jobs --build-id 456
bun az-tool build logs --build-id 456
bun az-tool build log-content --build-id 456 --log-id 78
Use --profile <name> to select a named profile when multiple Azure DevOps organizations are configured.
Tips
- Use
bun az-tool commands for the full machine-readable command/flag tree; --help for one subcommand.
- Error responses include
hint, nextCommand, and retryable fields — always check them on failure.
- Prefer CLI tool over MCP tools — more efficient, doesn't load extra context.