monitor-ci

Monitor Nx Cloud CI attempts and orchestrate self-healing fixes for failures.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/braxtondiggs/Chansey --skill monitor-ci-braxtondiggs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: monitor-ci
Source: https://github.com/braxtondiggs/Chansey/tree/main/.github/skills/monitor-ci
Command: npx skills add https://github.com/braxtondiggs/Chansey --skill monitor-ci-braxtondiggs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates continuous monitoring of Nx Cloud CI attempts and orchestrates safe, self-healing responses to failing CI runs so developers do not need to manually poll pipelines or perform repetitive troubleshooting steps.

Core Features & Use Cases

  • Automated Polling & Detection: Periodically fetches CI attempt status and detects new CI attempts, progress changes, and terminal states.
  • Self-Healing Orchestration: Coordinates deterministic decision logic and subagents to fetch fix suggestions, gate local verification, apply fixes via MCP, or perform safe local pushes and empty commits when appropriate.
  • Safety Gates & Policies: Enforces local verification gates, environment vs code failure classification, throttling handling, and cycle limits to avoid destructive or noisy actions.
  • Use Case: Monitor a feature branch's Nx Cloud CI, run suggested local verification tasks, and either apply a verified self-healing fix via MCP or push an enhanced local fix while tracking CI attempt changes.

Quick Start

Ask the skill to monitor the current branch's CI and attempt self-healing fixes while respecting local verification gates.

Frequently Asked Questions about monitor-ci

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Nx Cloud CI monitoring and auto-apply fixes for failed pipelines?

Automated Nx Cloud CI monitoring polls branch-specific pipeline attempts, detects terminal failures, and orchestrates self-healing fixes by running local verification tasks and coordinating MCP updates. It eliminates manual polling by fetching CI information, gating local verification, and applying verified fixes via MCP updates or local commits.

What is self-healing CI automation and how does it work with Nx workspaces?

Self-healing CI automation detects failed Nx Cloud CI attempts and orchestrates deterministic fixes without manual intervention. It works by polling CI status, classifying environment versus code failures, running local verification tasks, and applying fixes via MCP tools or safe local commits while respecting safety gates and cycle limits.

How do I set up CI polling for a feature branch using Nx Cloud?

To set up CI polling, you need a git repository context, an Nx workspace with Nx Cloud configuration in nx.json, and MCP tools for CI information and self-healing updates. The skill periodically fetches CI attempt status, detects progress changes, and coordinates fixes for the monitored branch.

What safety gates exist when applying self-healing fixes to CI pipelines?

Safety gates for self-healing fixes include local verification gates, environment versus code failure classification, throttling handling, and cycle limits. These policies ensure deterministic decision logic prevents destructive or noisy actions, gating fixes before applying them via MCP or performing safe local pushes and empty commits.

Why does my CI automation need local verification before pushing fixes?

Local verification is required before pushing fixes to classify environment versus code failures and ensure changes are safe. The automation runs suggested local verification tasks to gate fixes, preventing destructive actions and only applying verified self-healing fixes via MCP or pushing enhanced local fixes when appropriate.

Can I use CI monitoring automation without Nx Cloud configuration in nx.json?

No, CI monitoring automation requires Nx Cloud configuration in nx.json to poll branch-specific CI attempts and fetch CI information. It also requires a git repository context, MCP tools for CI information and update_self_healing_fix, and local Node scripts for deterministic decision and state management.