From superpowers-devops
Use when designing, debugging, or fixing CI/CD pipelines — GitHub Actions, GitLab CI, Jenkins
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-devops:ci-cd-pipelineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- **Repo mode** — templates in `tooling/ci/`. Scaffold or modify pipeline configs.
tooling/ci/. Scaffold or modify pipeline configs.lint → test → build → push image → deploy staging → smoke test → deploy production
# Enable debug logging by setting repository secret:
ACTIONS_STEP_DEBUG = true
ACTIONS_RUNNER_DEBUG = true
Common issues:
| Issue | Fix |
|---|---|
Context access might be invalid | Check secret/var name spelling |
Resource not accessible by integration | Add permissions: block to workflow |
Process completed with exit code 1 | Read that step's full log output |
| Workflow not triggering | Check on: trigger matches branch/event |
# Run only on main branch
on:
push:
branches: [main]
# Matrix builds
strategy:
matrix:
node-version: [18, 20, 22]
# Reuse secrets
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
Common issues:
| Issue | Fix |
|---|---|
| Job stuck in pending | Check runner availability and tags |
artifacts not found in later stage | Define artifacts: in the producing job |
| Cache not working | Check cache: key is consistent |
Common issues:
| Issue | Fix |
|---|---|
| Build never starts | Check agent availability and labels |
| Credentials not found | Verify credential ID in Jenkins credentials store |
| Workspace dirty | Add cleanWs() at start of pipeline |
tooling/ci/github-actions/ — reusable workflow templatestooling/ci/gitlab-ci/ — .gitlab-ci.yml templatestooling/ci/jenkins/ — Jenkinsfile templatestooling/ci/starters/ — full CI/CD setups by stacknpx claudepluginhub tspry/superpowers-devops --plugin superpowers-devopsProvides 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.