Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Ci:Monitoring

ASecurity

Monitor running CI jobs, wait for completion, create tasks for results

302 stars
0 votes
0 copies
0 views
Added 9/20/2026
devopsgobashtestinggitsecurity

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add rossoctl/rossoctl --skill ci:monitoring --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Ci:Monitoring?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Ci:Monitoring
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rossoctl-ci-monitoring/badge)](https://www.skillsdirectory.com/skills/rossoctl-ci-monitoring)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: ci:monitoring
description: Monitor running CI jobs, wait for completion, create tasks for results
---

# CI Monitoring

Monitor running CI pipelines and report results. Creates task items for each CI check being monitored.

## Context-Safe Execution (MANDATORY)

**CI log downloads MUST go to files.** Status checks (`gh pr checks`) are small and OK inline.

```bash
export LOG_DIR="${LOG_DIR:-${WORKSPACE_DIR:-/tmp}/rossoctl-ci}"
mkdir -p "$LOG_DIR"

# When downloading logs after completion:
gh run view <run-id> --log-failed > $LOG_DIR/ci-run-<run-id>.log 2>&1; echo "EXIT:$?"
# Analyze in subagent: Task(subagent_type='Explore') with Grep
```

## When to Use

- After pushing to a PR, to track CI completion
- When user says "monitor CI" or "check CI"
- When waiting for HyperShift E2E (long-running, needs manual trigger)
- To track multiple CI checks in parallel

## Workflow

### 1. Create Monitoring Tasks

For each pending CI check, create a task:

```
TaskCreate: "<worktree> | <PR> | CI | Monitor | <check-name>"
  metadata: plan="ad-hoc", runner="main-session"
```

Example:
```
#33 [in_progress] mlflow-ci | PR#569 | CI | Monitor | Kind Deploy & Test
#34 [pending]     mlflow-ci | PR#569 | CI | Monitor | HyperShift E2E
```

### 2. Check Status Periodically

```bash
gh pr checks <PR-number>
```

### 3. On Completion

For each check that completes:
- Mark monitoring task as `completed`
- If **passed**: note in task description
- If **failed**: create RCA task and invoke `rca:ci`

```
TaskUpdate: #33 status=completed
TaskCreate: "<worktree> | <PR> | Kind CI | RCA | <failure summary>"
```

### 4. Report Summary

Present final status table:

| # | Check | Status | Action |
|---|-------|--------|--------|
| #33 | Kind Deploy & Test | passed | - |
| #34 | HyperShift E2E | failed | → #35 RCA created |
| #35 | Kind CI | RCA | Agent empty response |

## CI Check Types

| Check | Trigger | Duration | Manual? |
|-------|---------|----------|---------|
| CodeQL | Auto on push | ~2 min | No |
| Deploy & Test (Kind) | Auto on push | ~12 min | No |
| E2E HyperShift | `/test` comment | ~45 min | Yes |
| Build, Lint, Security | Auto on push | ~1 min | No |

## HyperShift E2E

HyperShift requires manual trigger:
```bash
# Trigger via PR comment (done by user in GitHub UI)
# The workflow responds to issue_comment with "/test"
```

Monitor:
```bash
gh run view <run-id> --json status --jq '.status'
gh run view <run-id> | head -25
```

## Task Tracking

On invocation:
1. TaskList - find existing CI monitoring tasks for this PR
2. Update completed checks
3. Create new monitoring tasks for pending checks
4. For failures, create RCA tasks linked to `rca:ci` or `rca:hypershift`

Naming: `<worktree> | <PR> | CI | Monitor | <check-name>`

## Troubleshooting

### HyperShift not starting
- Needs `/test` comment on PR
- Check if previous run is still cleaning up
- Check slot availability: CI has limited concurrent HyperShift clusters

### CI running on old commit
- Push triggers new run on latest commit
- Old runs may still be in progress
- Check `headSha` matches expected commit

## Related Skills

- `ci:status` - One-time status check
- `rca:ci` - RCA when CI fails
- `tdd:ci` - TDD iteration using CI
- `tdd:kind` - Local Kind testing (faster feedback)

Attribution

rossoctlrossoctl
View sourceMore from rossoctl →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Terraform Module Library

Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

393431 votes

sematext-otel

Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.

01 votes

Deployment Patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

2459130 votes

Babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

929660 votes

V7 Roster

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805540 votes
View all in devops →