一键导入
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/||'