ci-cd-configuration

Configure CI/CD pipelines with GitHub Actions workflows, branch protection, and CodeRabbit code review.

3|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/gabrielnsmnto/kord-aios --skill ci-cd-configuration-gabrielnsmnto
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ci-cd-configuration
Source: https://github.com/gabrielnsmnto/kord-aios/tree/main/src/features/builtin-skills/kord-aios/devops/ci-cd-configuration
Command: npx skills add https://github.com/gabrielnsmnto/kord-aios --skill ci-cd-configuration-gabrielnsmnto

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up a production-ready CI/CD pipeline from scratch involves many manual steps: writing workflow YAML files, configuring branch protection, storing secrets, and wiring up automated code review. This Skill automates that entire setup so a repository gets linting, testing, building, deployment, and PR review in one guided workflow. ## Core Features & Use Cases - Multi-Provider Pipeline Generation: Creates CI/CD configurations for GitHub Actions, GitLab CI, CircleCI, or Jenkins, tailored to Node.js, Python, fullstack, or monorepo projects. - CodeRabbit Free Integration: Installs and configures CodeRabbit for automated PR reviews on public repositories at no cost, including a generated .coderabbit.yaml file. - Branch Protection & Secrets: Applies branch protection rules (required reviews, status checks, no force pushes) and stores deployment secrets via the GitHub CLI. - Use Case: You just created a Node.js repository and want every pull request linted, tested, built, and automatically reviewed before merge. Run this Skill to generate the workflows, protect the main branch, and validate everything with a test PR. ## Quick Start Ask the agent to set up a GitHub Actions CI/CD pipeline for your Node.js repository with CodeRabbit review and Vercel deployment enabled.

Frequently Asked Questions about ci-cd-configuration

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a GitHub Actions CI/CD pipeline for a Node.js project?▼

Provide the repository path, select github-actions as the provider, and specify nodejs as the project type. The Skill generates ci.yml with lint, test, and build jobs, plus an optional deploy.yml for targets like Vercel.

How do I add automated code review to pull requests for free?▼

Install the CodeRabbit GitHub App, which is free for public repositories with no API keys required. The Skill generates a .coderabbit.yaml configuration enabling automatic reviews focused on security, performance, and best practices.

Which CI providers does this pipeline setup support?▼

GitHub Actions is the primary recommended provider with full feature support. GitLab CI/CD and CircleCI are also supported, while Jenkins has basic support for pipeline generation.

Can I configure branch protection rules on GitHub automatically?▼

Yes, the Skill uses the GitHub API to require pull request reviews, mandate passing status checks like lint, test, and build, block force pushes, and prevent direct pushes to the main branch.

What happens if CodeRabbit setup fails during pipeline configuration?▼

The workflow continues without CodeRabbit using a retry and fallback strategy with up to three attempts and exponential backoff. CodeRabbit can be added later without affecting the rest of the pipeline.