一键导入
cicd
CI/CD pipeline builder — GitHub Actions, self-hosted runners, Docker build/push, multi-environment deployments, secrets, rollback strategies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
CI/CD pipeline builder — GitHub Actions, self-hosted runners, Docker build/push, multi-environment deployments, secrets, rollback strategies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactive project scaffolding wizard — detects environment, audits existing tools, then sets up any stack with explicit user approval at every step
Share project memory across devices AND across AI tools (Claude Code, Cursor, Codex, Roo, Cline, Aider, Windsurf) — git-native, no SaaS, no lock-in.
Detects your project stack, installs the right Claude Code skills, and surfaces built-in Claude Code capabilities you might not know exist
Page through the discovered-skills queue 25 at a time — keep the good ones into the verified registry, reject the rest so they never re-appear. Resumes where you left off.
Pull the latest version of claude-scaffold-skill (and other installed skills) — shows the changelog, asks before applying, validates after.
AWS infrastructure management — EKS, ECR, VPC, RDS, ElastiCache, S3, Route53, ACM, Secrets Manager, CloudWatch, IAM
| name | cicd |
| description | CI/CD pipeline builder — GitHub Actions, self-hosted runners, Docker build/push, multi-environment deployments, secrets, rollback strategies |
| version | 1.0.0 |
| author | veekunth217 |
| tags | ["cicd","github-actions","self-hosted-runner","docker","pipeline","deployment","rollback","secrets","multi-environment"] |
| platforms | ["claude-code","cursor","codex"] |
Build production-grade CI/CD pipelines — from GitHub Actions workflows to self-hosted runners and zero-downtime deployment strategies.
RULE: Show complete workflow YAML and explain each job before generating. Wait for GO.
🚧 Status: Stub — implementation pending
This reference skill has the structure but the snippet content is still being filled in (you'll see
<!-- TODO -->placeholders below). It activates and tells Claude the topic exists, but won't yield deep snippets yet.Want to help? Pick any TODO, write the snippet, open a PR. See CONTRIBUTING.md. Each contribution moves the skill closer to "Ready" status.
name: Deploy
on:
push:
branches: [main]
permissions:
id-token: write # OIDC
contents: read
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure AWS via OIDC
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::[account]:role/github-actions-role
aws-region: [region]
- name: Login to ECR
uses: aws-actions/amazon-ecr-login@v2
- name: Build & push
run: |
docker build -t $ECR_REGISTRY/$ECR_REPO:${{ github.sha }} .
docker push $ECR_REGISTRY/$ECR_REPO:${{ github.sha }}
env:
ECR_REGISTRY: [account].dkr.ecr.[region].amazonaws.com
ECR_REPO: [app-name]
- name: Deploy to EKS
run: |
aws eks update-kubeconfig --name [cluster] --region [region]
helm upgrade --install [app] helm/[app] \
--set image.tag=${{ github.sha }} \
--values helm/[app]/values-prod.yaml \
--namespace [ns] --wait
rollback:
runs-on: ubuntu-latest
needs: [build-and-deploy]
if: failure()
steps:
- name: Rollback Helm release
run: |
aws eks update-kubeconfig --name [cluster] --region [region]
helm rollback [app] 0 --namespace [ns] # 0 = previous revision