What problem does it solve?
Engineering teams struggle to see where their CI and pull-request pipeline slows down: which GitHub Actions workflow is the flaky long pole, whether CI is getting slower over time, and where a specific PR is stuck. This Skill answers those questions by querying engineering analytics MCP tools instead of writing SQL.
Core Features & Use Cases
- Workflow health trends: Compare workflow-health metrics (success rate, p50/p95 durations) across adjacent windows to detect CI slowdowns and identify the slow or flaky long-pole workflow.
- PR pipeline triage: List open PRs with failing or pending CI, find PRs stuck open longest, and compute median and p95 time-to-merge per author cohort from pull-requests data.
- Single-PR lifecycle analysis: Walk a PR's event timeline (opened, ready-for-review, per-workflow CI runs, merged) with pr-lifecycle to pinpoint the largest bottleneck gap.
- Flaky test cost analysis: Use the flaky-tests queue to find confirmed flakes, quarantine candidates, and blast radius ranked by master failures and distinct PRs hit.
- Use Case: Ask "is CI getting slower on our repo?" and get a verdict like "e2e-playwright p95 doubled this fortnight and is the long pole on PR #1234, which sat 47 minutes in CI before merging."
Quick Start
Ask the assistant to check whether CI on your GitHub repo is getting slower and which workflow is the bottleneck.