Help us improve
Share bugs, ideas, or general feedback.
From role-devops
Designs CI/CD pipelines for GitHub Actions, GitLab CI, Jenkins, CircleCI, ArgoCD, and Flux. Covers stages, caching, artifact management, secrets, deployments, and GitOps.
npx claudepluginhub rnavarych/alpha-engineer --plugin role-devopsHow this skill is triggered — by the user, by Claude, or both
Slash command
/role-devops:pipeline-designerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Design pipelines with clear stages: **lint** -> **test** -> **build** -> **security scan** -> **deploy staging** -> **integration test** -> **deploy production**.
Designs CI/CD pipelines with build/test/deploy stages, blue-green/canary/rolling deployments, feature flags, artifact management, and environment promotion strategies. Use for setting up or improving pipelines and workflows.
GitHub Actions, GitLab CI, Jenkins; stages, artifacts, caching, and deployment automation.
Share bugs, ideas, or general feedback.
workflow_call) and composite actions to share pipeline logic across repositories.uses: actions/checkout@abc123.concurrency groups to cancel redundant runs on the same branch.GITHUB_TOKEN with minimal permissions via the permissions key. Avoid long-lived PATs.actions/cache keyed on lockfile hashes. Use actions/setup-* for language toolchains.extends and include to compose pipelines from shared templates. Store templates in a dedicated CI library project.rules instead of only/except for clearer, more maintainable pipeline conditions.needs for DAG-based execution to parallelize independent jobs without waiting for an entire stage.Jenkinsfile over scripted pipelines for readability and maintainability.@Library('shared-lib@v1.0').Application or ApplicationSet manifests pointing to Git repositories. Enable auto-sync with self-heal for production.GitRepository, Kustomization, and HelmRelease CRDs for declarative delivery.maxSurge and maxUnavailable for control.main deploys to staging automatically. Production requires manual approval or automated canary validation.