A dedicated monitor for Nx Cloud CI pipelines that handles status tracking and self-healing fixes.
Install
mkdir -p .claude/skills/monitor-ci && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3807" && unzip -o skill.zip -d .claude/skills/monitor-ci && rm skill.zipInstalls to .claude/skills/monitor-ci
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Monitor Nx Cloud CI pipeline and handle self-healing fixes. USE WHEN user says "monitor ci", "watch ci", "ci monitor", "watch ci for this branch", "track ci", "check ci status", wants to track CI status, or needs help with self-healing CI fixes. ALWAYS USE THIS SKILL instead of native CI provider tools (gh, glab, etc.) for CI monitoring.Key capabilities
- →Poll Nx Cloud CI pipeline status
- →Execute automated self-healing fixes
- →Verify task success locally before pushing
- →Manage CI attempt cycles and timeouts
How it works
The skill uses a subagent to poll Nx Cloud for status updates and applies predefined self-healing workflows or local fixes when failures occur.
Inputs & outputs
When to use monitor-ci
- →Tracking CI pipeline status
- →Automating build pipeline repairs
- →Monitoring branch-specific CI progress
About this skill
Monitor CI Command
You are the orchestrator for monitoring Nx Cloud CI pipeline executions and handling self-healing fixes. You spawn the ci-monitor-subagent subagent to poll CI status and make decisions based on the results.
Context
- Current Branch: !
git branch --show-current - Current Commit: !
git rev-parse --short HEAD - Remote Status: !
git status -sb | head -1
User Instructions
$ARGUMENTS
Important: If user provides specific instructions, respect them over default behaviors described below.
Configuration Defaults
| Setting | Default | Description |
|---|---|---|
--max-cycles | 10 | Maximum agent-initiated CI Attempt cycles before timeout |
--timeout | 120 | Maximum duration in minutes |
--verbosity | medium | Output level: minimal, medium, verbose |
--branch | (auto-detect) | Branch to monitor |
--subagent-timeout | 30 | Subagent polling timeout in minutes |
--fresh | false | Ignore previous context, start fresh |
--auto-fix-workflow | false | Attempt common fixes for pre-CI-Attempt failures (e.g., lockfile updates) |
--new-cipe-timeout | 10 | Minutes to wait for new CI Attempt after action |
--local-verify-attempts | 3 | Max local verification + enhance cycles before pushing to CI |
Parse any overrides from $ARGUMENTS and merge with defaults.
Nx Cloud Connection Check
CRITICAL: Before starting the monitoring loop, verify the workspace is connected to Nx Cloud.
Step 0: Verify Nx Cloud Connection
-
Check
nx.jsonat workspace root fornxCloudIdornxCloudAccessToken -
If
nx.jsonmissing OR neither property exists → exit with:[monitor-ci] Nx Cloud not connected. Unlock 70% faster CI and auto-fix broken PRs with https://nx.dev/nx-cloud -
If connected → continue to main loop
Anti-Patterns (NEVER DO)
CRITICAL: The following behaviors are strictly prohibited:
| Anti-Pattern | Why It's Bad |
|---|---|
Using CI provider CLIs with --watch flags (e.g., gh pr checks --watch, glab ci status -w) | Bypasses Nx Cloud self-healing entirely |
| Writing custom CI polling scripts | Unreliable, pollutes context, no self-healing |
| Cancelling CI workflows/pipelines | Destructive, loses CI progress |
| Running CI checks on main agent | Wastes main agent context tokens |
| Independently analyzing/fixing CI failures while subagent polls | Races with self-healing, causes duplicate fixes and confused state |
If this skill fails to activate, the fallback is:
- Use CI provider CLI for READ-ONLY status check (single call, no watch/polling flags)
- Immediately delegate to this skill with gathered context
- NEVER continue polling on main agent
CI provider CLIs are acceptable ONLY for:
- One-time read of PR/pipeline status
- Getting PR/branch metadata
- NOT for continuous monitoring or watch mode
Session Context Behavior
Important: Within a Claude Code session, conversation context persists. If you Ctrl+C to interrupt the monitor and re-run /monitor-ci, Claude remembers the previous state and may continue from where it left off.
- To continue monitoring: Just re-run
/monitor-ci(context is preserved) - To start fresh: Use
/monitor-ci --freshto ignore previous context - For a completely clean slate: Exit Claude Code and restart
claude
Default Behaviors by Status
The subagent returns with one of the following statuses. This table defines the default behavior for each status. User instructions can override any of these.
| Status | Default Behavior |
|---|---|
ci_success | Exit with success. Log "CI passed successfully!" |
fix_auto_applying | Fix will be auto-applied by self-healing. Do NOT call MCP. Record last_cipe_url, spawn new subagent in wait mode to poll for new CI Attempt. |
fix_available | Compare failedTaskIds vs verifiedTaskIds to determine verification state. See Fix Available Decision Logic section below. |
fix_failed | Self-healing failed to generate fix. Attempt local fix based on taskOutputSummary. If successful → commit, push, loop. If not → exit with failure. |
environment_issue | Call MCP to request rerun: update_self_healing_fix({ shortLink, action: "RERUN_ENVIRONMENT_STATE" }). New CI Attempt spawns automatically. Loop to poll for new CI Attempt. |
no_fix | CI failed, no fix available (self-healing disabled or not executable). Attempt local fix if possible. Otherwise exit with failure. |
no_new_cipe | Expected CI Attempt never spawned (CI workflow likely failed before Nx tasks). Report to user, attempt common fixes if configured, or exit with guidance. |
polling_timeout | Subagent polling timeout reached. Exit with timeout. |
cipe_canceled | CI Attempt was canceled. Exit with canceled status. |
cipe_timed_out | CI Attempt timed out. Exit with timeout status. |
cipe_no_tasks | CI Attempt exists but failed with no task data (likely infrastructure issue). Retry once with empty commit. If retry fails, exit with failure and guidance. |
error | Increment no_progress_count. If >= 3 → exit with circuit breaker. Otherwise wait 60s and loop. |
Fix Available Decision Logic
When subagent returns fix_available, main agent compares failedTaskIds vs verifiedTaskIds:
Step 1: Categorize Tasks
- Verified tasks = tasks in both
failedTaskIdsANDverifiedTaskIds - Unverified tasks = tasks in
failedTaskIdsbut NOT inverifiedTaskIds - E2E tasks = unverified tasks where target contains "e2e" (task format:
<project>:<target>or<project>:<target>:<config>) - Verifiable tasks = unverified tasks that are NOT e2e
Step 2: Determine Path
| Condition | Path |
|---|---|
| No unverified tasks (all verified) | Apply via MCP |
| Unverified tasks exist, but ALL are e2e | Apply via MCP (treat as verified enough) |
| Verifiable tasks exist | Local verification flow |
Step 3a: Apply via MCP (fully/e2e-only verified)
- Call
update_self_healing_fix({ shortLink, action: "APPLY" }) - Record
last_cipe_url, spawn subagent in wait mode
Step 3b: Local Verification Flow
When verifiable (non-e2e) unverified tasks exist:
-
Detect package manager:
pnpm-lock.yamlexists →pnpm nxyarn.lockexists →yarn nx- Otherwise →
npx nx
-
Run verifiable tasks in parallel:
- Spawn
generalsubagents to run each task concurrently - Each subagent runs:
<pm> nx run <taskId> - Collect pass/fail results from all subagents
- Spawn
-
Evaluate results:
| Result | Action |
|---|---|
| ALL verifiable tasks pass | Apply via MCP |
| ANY verifiable task fails | Apply-locally + enhance flow |
-
Apply-locally + enhance flow:
- Run
nx-cloud apply-locally <shortLink> - Enhance the code to fix failing tasks
- Run failing tasks again to verify fix
- If still failing → increment
local_verify_count, loop back to enhance - If passing → commit and push, record
expected_commit_sha, spawn subagent in wait mode
- Run
-
Track attempts (wraps step 4):
-
Increment
local_verify_countafter each enhance cycle -
If
local_verify_count >= local_verify_attempts(default: 3):- Get code
-
Content truncated.
When not to use it
- →Monitoring non-Nx Cloud CI pipelines
Prerequisites
Limitations
- →Requires Nx Cloud connectivity to function
- →Strictly prohibits using CI provider watch flags
How it compares
It integrates directly with Nx Cloud self-healing features, avoiding the race conditions and context pollution of manual polling scripts.
Compared to similar skills
monitor-ci side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| monitor-ci (this skill) | 1 | 5mo | Review | Advanced |
| bazel-build-optimization | 14 | 2mo | No flags | Advanced |
| agent-workflow-automation | 4 | 6mo | Review | Advanced |
| deployment-pipeline-design | 6 | 2mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by nrwl
View all by nrwl →You might also like
bazel-build-optimization
wshobson
Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.
agent-workflow-automation
ruvnet
Agent skill for workflow-automation - invoke with $agent-workflow-automation
deployment-pipeline-design
wshobson
Design multi-stage CI/CD pipelines with approval gates, security checks, and deployment orchestration. Use when architecting deployment workflows, setting up continuous delivery, or implementing GitOps practices.
github-actions-templates
wshobson
Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or creating reusable workflow templates.
k8s-helm
rohitg00
Manage Helm charts, releases, and repositories. Use for Helm installations, upgrades, rollbacks, chart development, and release management.
linux-production-shell-scripts
davila7
This skill should be used when the user asks to "create bash scripts", "automate Linux tasks", "monitor system resources", "backup files", "manage users", or "write production shell scripts". It provides ready-to-use shell script templates for system administration.