Orchestrates CI pipeline workflows, status monitoring, and debugging failed runs.
Install
mkdir -p .claude/skills/ci-kagenti && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17342" && unzip -o skill.zip -d .claude/skills/ci-kagenti && rm skill.zipInstalls to .claude/skills/ci-kagenti
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.
CI pipeline monitoring, status checks, and PR validation workflowsKey capabilities
- →Check the status of current PR checks
- →Monitor a running CI job until completion
- →Investigate failures in CI pipelines
- →Fix and re-run CI iteratively
- →Determine the appropriate sub-skill based on context
How it works
The skill acts as a central point for CI pipeline management, directing to sub-skills like `ci:status`, `ci:monitoring`, `rca:ci`, or `tdd:ci` based on the user's need.
Inputs & outputs
When to use ci
- →Check CI status
- →Monitor running pipelines
- →Investigate CI failure
About this skill
flowchart TD
PR([PR / Push]) --> CI{"/ci"}
CI -->|Check status| STATUS["ci:status"]:::ci
CI -->|Monitor running| MON["ci:monitoring"]:::ci
CI -->|Failed, investigate| RCACI["rca:ci"]:::rca
CI -->|Failed, fix + rerun| TDDCI["tdd:ci"]:::tdd
STATUS --> RESULT{Result?}
RESULT -->|All pass| DONE([Merge])
RESULT -->|Failed| RCACI
MON -->|Completed| STATUS
RCACI --> ROOT[Root Cause]
ROOT --> TDDCI
TDDCI -->|CI passes| DONE
classDef ci fill:#2196F3,stroke:#333,color:white
classDef rca fill:#FF5722,stroke:#333,color:white
classDef tdd fill:#4CAF50,stroke:#333,color:white
Follow this diagram as the workflow.
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:
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
| Skill | Purpose | When |
|---|---|---|
ci:status | Check PR checks, failures, test results | Before/after pushing |
ci:monitoring | Monitor running jobs, create tasks for results | After pushing, waiting |
Quick Status Check
gh pr checks
Related Skills
rca:ci- Investigate CI failurestdd:ci- Fix and re-run CI iterativelyci:status- Detailed check statusci:monitoring- Wait for running jobs
When not to use it
- →When CI is not using GitHub Actions workflows
Limitations
- →The skill is designed for GitHub Actions workflows.
- →It relies on sub-skills for specific functionalities.
How it compares
This skill provides a guided workflow for managing GitHub Actions CI, integrating status checks, monitoring, and failure resolution, which is more structured than manually interacting with CI tools.
Compared to similar skills
ci side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| ci (this skill) | 0 | 5mo | Review | Beginner |
| service-mesh-observability | 5 | 2mo | No flags | Advanced |
| mlops-engineer | 3 | 3mo | No flags | Advanced |
| senior-devops | 7 | 7mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by kagenti
View all by kagenti →You might also like
service-mesh-observability
wshobson
Implement comprehensive observability for service meshes including distributed tracing, metrics, and visualization. Use when setting up mesh monitoring, debugging latency issues, or implementing SLOs for service communication.
mlops-engineer
sickn33
Build comprehensive ML pipelines, experiment tracking, and model registries with MLflow, Kubeflow, and modern MLOps tools. Implements automated training, deployment, and monitoring across cloud platforms. Use PROACTIVELY for ML infrastructure, experiment management, or pipeline automation.
senior-devops
davila7
Comprehensive DevOps skill for CI/CD, infrastructure automation, containerization, and cloud platforms (AWS, GCP, Azure). Includes pipeline setup, infrastructure as code, deployment automation, and monitoring. Use when setting up pipelines, deploying applications, managing infrastructure, implementing monitoring, or optimizing deployment processes.
sentry-ci-integration
jeremylongshore
Manage integrate Sentry with CI/CD pipelines. Use when setting up GitHub Actions, GitLab CI, or other CI systems with Sentry releases and source maps. Trigger with phrases like "sentry github actions", "sentry CI", "sentry pipeline", "automate sentry releases".
cloud-functions
TencentCloudBase
Complete guide for CloudBase cloud functions development - runtime selection, deployment, logging, invocation, and HTTP access configuration.
debugging-workflows
githubnext
Guide for debugging GitHub Agentic Workflows - analyzing logs, auditing runs, and troubleshooting issues