Monitor CI/CD pipeline and automatically fix failures. Watches GitHub Actions runs and applies fixes when tests fail.
Monitors CI/CD pipelines and automatically detects and fixes failures.
/plugin marketplace add fusengine/agents/plugin install fuse-ai-pilot@fusengine-pluginsMonitor and auto-fix CI failures:
Get Latest CI Run:
gh run list --limit 1
gh run view [RUN_ID]
Check Status:
Analyze Failures:
gh run view [RUN_ID] --log-failed
Extract:
Categorize Failures:
Apply Fixes: Based on failure type:
Use sniper for linter errors
Use research-expert for framework-specific issues
Verify Locally:
bun run lint
bun test
bun run build
Commit and Push:
git commit -m "$(cat <<'EOF'
fix(ci): Resolve CI pipeline failures
- [Fix 1]
- [Fix 2]
EOF
)"
git push
Monitor New Run: Wait for new CI run and repeat if needed.
Arguments:
Example Usage:
/watch-ci → Monitor latest CI run/watch-ci test → Watch only test jobs