From devops
Generate or review CI/CD pipeline configs — GitHub Actions, Railway, Vercel, or generic CI
How this skill is triggered — by the user, by Claude, or both
Slash command
/devops:ci-pipelineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Platform: **$0** (default: github-actions)
Platform: $0 (default: github-actions)
Type: $1 (default: full)
Analyze the project — Determine:
Generate pipeline config:
name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm test
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
# Deploy step depends on target platform
Add quality gates:
Optimize:
node_modules and build outputsconcurrency to cancel stale runsturbo for monorepo buildsProduce the CI config file(s):
.github/workflows/ci.yml for GitHub Actionsrailway.json for Railwayvercel.json for Vercel.gitlab-ci.yml for GitLabInclude comments explaining each section.
@mainconcurrency to prevent parallel deploysProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub silviaare95/xari-plugins --plugin devops