ci-babysit

ci-babysit is a skill for Claude Code from AndrewDongminYoo/cc-agents-kit. It costs 64 tokens per session (2,775 once invoked), scanned A, original, Apache-2.0.

A workflow for monitoring continuous integration, or CI: automated checks that run after code is pushed or a pull request is opened. It can also handle approved mechanical repairs when checks fail.

In plain words
What is it for?
Use it after pushing a branch or opening a pull request to watch job results, inspect failure logs, and make authorized reruns or local repairs.
Why use it?
It keeps you informed until all CI jobs finish and avoids changing code during watch-only monitoring. It stops when the failure needs a human decision or a logic change.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the repo-gate plugin — 6 skills shipped together

Good fit Use it after pushing a branch or opening a pull request to watch job results, inspect failure logs, and make authorized reruns or local repairs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andrewdongminyoo/cc-agents-kit/ci-babysit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AndrewDongminYoo/cc-agents-kit --skill ci-babysit
Clone the repo
git clone --depth 1 https://github.com/AndrewDongminYoo/cc-agents-kit

Made for: Claude Code.

Or install repo-gate, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ci-babysit

README.md
[![agentmods](https://agentmods.dev/badge/skills/andrewdongminyoo/cc-agents-kit/ci-babysit/github.svg)](https://agentmods.dev/skills/andrewdongminyoo/cc-agents-kit/ci-babysit)
Your own site
<a href="https://agentmods.dev/skills/andrewdongminyoo/cc-agents-kit/ci-babysit"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/cc-agents-kit/ci-babysit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ci-babysit

Your own site · 80×15
<a href="https://agentmods.dev/skills/andrewdongminyoo/cc-agents-kit/ci-babysit"><img src="https://agentmods.dev/badge/skills/andrewdongminyoo/cc-agents-kit/ci-babysit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,775 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00064 $0.02775
Opus 5 $0.00032 $0.01388
Sonnet 5 $0.00013 $0.00555
Haiku 4.5 $0.00006 $0.00278

Measured 5d ago against content hash 92b92f10e37a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

ci-babysit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/repo-gate/skills/ci-babysit/SKILL.md · 219 lines

How it starts

The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CI Babysit

Watch CI after a push until every job reaches a terminal state. Keep watch-only work read-only. Repair mechanical failures only when the current request or an approved plan gives explicit authority for local repair.

When to use

  • Right after git push, /ship, or /commit-push-pr on a branch whose CI result gates the next step, such as merge, release, or a review request.
  • When the user asks to watch or monitor CI.
  • When the user explicitly asks to make CI green or approves a plan that includes local repair.

Do NOT use for: local test runs (just run them), or repos without CI configured.

Authority modes

Watch-only

A request to watch, monitor, or report CI is watch-only unless the same request or an approved plan explicitly authorizes changes. A watch-only request must not rerun jobs, install dependencies, format files, regenerate files, commit, or push. Read check state and logs, then report terminal failures without changing local or remote state.

Make-green

A make-green request must explicitly authorize state-changing reruns or local repair in the current request or an approved plan. Authority to rerun does not authorize local repair. Authority to repair does not authorize a commit or push. Require separate explicit authority for each commit and each push.

Workflow

1. Identify what to watch

branch_name=$(git branch --show-current)
head_sha=$(git rev-parse HEAD)
if ! pr_json=$(gh pr list --head "$branch_name" --state open --limit 2 --json number); then
  echo "Active pull-request lookup failed." >&2
  exit 1
fi
if ! jq -e 'type == "array" and all(.[]; type == "object" and (.number | type == "number"))' <<<"$pr_json" >/dev/null; then
  echo "Active pull-request lookup returned malformed JSON." >&2
  exit 1
fi
if [ "$(jq 'length' <<<"$pr_json")" -gt 1 ]; then
  echo "Active pull-request lookup returned more than one pull request." >&2
  exit 1
fi
pr_number=$(jq -r '.[0].number // empty' <<<"$pr_json")
if [ -n "$pr_number" ]; then
  gh pr checks "$pr_number"
else
  gh run list --branch "$branch_name" --commit "$head_sha" --limit 100
fi

Read the full file on GitHub · 219 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed · +5 lines 92b92f10e37a
  2. 9d ago First seen · 214 lines · 64 tokens per session scan A 0e917ff71cd1

Subscribe to this mod's changes

ci-babysit is a skill published in the GitHub repository AndrewDongminYoo/cc-agents-kit (2 stars, last pushed today), licensed Apache-2.0. It adds 64 tokens to every session and 2,775 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

cloudflare-workers-testing

Comprehensive testing guide for Cloudflare Workers using Vitest and @cloudflare/vitest-pool-workers. Use for test setup, binding mocks (D1/KV/R2/DO), integration tests, or encountering test failures, mock errors, coverage issues.

secondsky/claude-skills · 57 tokens

cloudflare-workers-ci-cd

Complete CI/CD guide for Cloudflare Workers using GitHub Actions and GitLab CI. Use for automated testing, deployment pipelines, preview environments, secrets management, or encountering deployment failures, workflow errors, environment configuration issues.

secondsky/claude-skills · 50 tokens

bun-sveltekit

Use when building or running SvelteKit apps on Bun, including SSR, adapters, and Bun-specific APIs.

secondsky/claude-skills · 26 tokens

app-store-deployment

Publishes mobile applications to iOS App Store and Google Play with code signing, versioning, and CI/CD automation. Use when preparing app releases, configuring signing certificates, or setting up automated deployment pipelines.

secondsky/claude-skills · 46 tokens

watch-patterns

Correct construction of watchers for long-running operations. TRIGGER when: arming observation of a long-running operation (CI run, deploy, transfer, GC/prune, log stream), writing poll/until loops, or using the Monitor tool. SKIP: defining production alerts/metrics (use monitoring-observability); log formatting (use…

komluk/scaffolding · 76 tokens

scheduler

Manage scheduled jobs — create, update, list, run remote agents on cron. Use when setting up recurring tasks, checking job status, or managing automation.

martineserios/thebrana · 33 tokens