AgentSkillsCN

ci

CI 管道监控、状态检查与 PR 验证工作流。

SKILL.md
--- frontmatter
name: ci
description: CI pipeline monitoring, status checks, and PR validation workflows

📊 View workflow diagram

CI Skills

CI pipeline skills for monitoring and managing GitHub Actions workflows.

Auto-Select Sub-Skill

When this skill is invoked, determine the right sub-skill based on context:

code
What do you need?
    │
    ├─ Check current PR status (what passed/failed?)
    │   → Use `ci:status`
    │
    ├─ Monitor a running CI job (wait for it to finish)
    │   → Use `ci:monitoring`
    │
    ├─ CI failed and need to investigate
    │   → Use `rca:ci` (root cause analysis from logs)
    │
    └─ CI failed and need to fix + re-run
        → Use `tdd:ci` (commit, push, iterate)

Available Skills

SkillPurposeWhen
ci:statusCheck PR checks, failures, test resultsBefore/after pushing
ci:monitoringMonitor running jobs, create tasks for resultsAfter pushing, waiting

Quick Status Check

bash
gh pr checks

Related Skills

  • rca:ci - Investigate CI failures
  • tdd:ci - Fix and re-run CI iteratively
  • ci:status - Detailed check status
  • ci:monitoring - Wait for running jobs