| name | tiger-health |
| description | Access CI/CD health reports and state-of-the-build summaries produced by the Tiger health agent |
Tiger Health Reports Skill
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/.
Directory Structure
~/.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 of the Build (state.md)
Each state.md file is a living document maintained by the health agent. It contains:
- Overall health: GREEN / YELLOW / RED
- Active problems and when they started
- Recently resolved issues
- Trends (getting better/worse)
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
Agent Run Logs
Each timestamped .md file is a full agent run log containing:
- Prompt (input to LLM) — the data that was gathered and sent to the model
- Reasoning (LLM internal chain-of-thought) — the model's reasoning process
- Response (LLM output message) — the findings and updated state
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
Common Queries
What is the current health of all pipelines?
find ~/.tiger/health -name "state.md" | while read f; do
echo "=== $(dirname "$f" | sed 's|.*/health/||; s|_|/|; s|/| / |') ==="
cat "$f"
echo
done
What were the findings from the last health check?
ls -t ~/.tiger/health/dotnet_roslyn/roslyn-CI/????-??-??_??-??-??.md | head -1 | xargs cat
Which pipelines are being monitored?
find ~/.tiger/health -name "state.md" -exec dirname {} \; | sed 's|.*/health/||'
Notes
- The health agent runs every 15 minutes while the Tiger dashboard is active
- Reports cover the last 3 days of build data
- The agent evaluates: flaky tests, infrastructure issues, new persistent failures, known issue correlations
- Only the 10 most recent run logs per pipeline are retained; older ones are pruned automatically