From devops
Generate or review CI/CD pipeline configs — GitHub Actions, Railway, Vercel, or generic CI
npx claudepluginhub silviaare95/xari-plugins --plugin devopsThis skill uses the workspace's default tool permissions.
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.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides implementation of event-driven hooks in Claude Code plugins using prompt-based validation and bash commands for PreToolUse, Stop, and session events.
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 deploys