원클릭으로
tiger-health
Access CI/CD health reports and state-of-the-build summaries produced by the Tiger health agent
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Access CI/CD health reports and state-of-the-build summaries produced by the Tiger health agent
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use the tiger cli tool to query live Azure DevOps and Helix CI/CD data
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
| name | tiger-health |
| description | Access CI/CD health reports and state-of-the-build summaries produced by the Tiger health agent |
You have access to health reports and state-of-the-build summaries generated by the Tiger health agent.
These are markdown files stored on disk at ~/.tiger/health/.
~/.tiger/health/
{repository}/ # e.g. dotnet_roslyn (/ replaced with _)
{definition}/ # e.g. roslyn-CI (spaces replaced with _)
state.md # Current "state of the build" summary (living document)
2026-05-18_14-30-00.md # Individual agent run logs (timestamped)
2026-05-18_14-15-00.md
... # Up to 10 most recent logs are retained
state.md)Each state.md file is a living document maintained by the health agent. It contains:
To read the current state for all monitored pipelines:
find ~/.tiger/health -name "state.md" -exec echo "=== {} ===" \; -exec cat {} \;
To read the state for a specific repo/pipeline:
cat ~/.tiger/health/dotnet_roslyn/roslyn-CI/state.md
Each timestamped .md file is a full agent run log containing:
To list recent runs for a pipeline:
ls -lt ~/.tiger/health/dotnet_roslyn/roslyn-CI/*.md | head -5
To read the most recent run:
ls -t ~/.tiger/health/dotnet_roslyn/roslyn-CI/????-??-??_??-??-??.md | head -1 | xargs cat
find ~/.tiger/health -name "state.md" | while read f; do
echo "=== $(dirname "$f" | sed 's|.*/health/||; s|_|/|; s|/| / |') ==="
cat "$f"
echo
done
# Get the most recent run log for a specific pipeline
ls -t ~/.tiger/health/dotnet_roslyn/roslyn-CI/????-??-??_??-??-??.md | head -1 | xargs cat
find ~/.tiger/health -name "state.md" -exec dirname {} \; | sed 's|.*/health/||'