Check
Monitor CI pipeline, fix failures, repeat until green
Claude CodeGeneric
---
description: Monitor CI pipeline, fix failures, repeat until green
---
## CI Pipeline Check
Monitoring the CI pipeline and fixing any issues.
### Current Pipeline Status
!`just ci-status 2>/dev/null || glab ci status 2>/dev/null || gh run list --limit 1 2>/dev/null || echo "No CI status available"`
### Action Loop
Based on the pipeline status:
**If running:**
- Wait for completion, then re-check status
**If failed:**
1. Analyze failed job logs:
```bash
just ci-logs <job-name> # or: glab ci view
- Identify the root cause
- Implement the fix
- Commit with message referencing the issue
- Push changes
- Monitor the new pipeline
- Repeat until green
If success:
- Pipeline is green, ready to proceed
Quick Commands
# View pipeline status
just ci-status
# View job logs (GitLab)
glab ci view
# View job logs (GitHub)
gh run view
# Wait for pipeline
just ci-wait
Let me check the current pipeline status and take appropriate action. ```
Maintain Check?
Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.
[Check on getagentictools](https://getagentictools.com/loops/thetom42-view-pipeline-status?ref=badge)